/* Ximpler Website Styles - Dark Theme */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	line-height: 1.6;
	color: #333;
	overflow-x: hidden;
	padding-top: 80px;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header */
header {
	background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
	padding: 1rem 0;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	backdrop-filter: blur(10px);
	height: 80px;
	display: flex;
	align-items: center;
}

/* Section anchor offset fix */
section {
	position: relative;
}

section::before {
	content: '';
	display: block;
	height: 120px;
	margin-top: -120px;
	visibility: hidden;
	pointer-events: none;
}

/* Special case for hero section */
.hero::before {
	height: 0;
	margin-top: 0;
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 3rem;
}

/* Header Controls */
.header-controls {
	display: flex;
	align-items: center;
	gap: 2rem;
}

/* Language Toggle */
.language-toggle {
	position: relative;
}

.lang-btn {
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.3);
	color: #fff;
	padding: 6px 14px;
	border-radius: 25px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 600;
	font-size: 0.9rem;
	min-width: 50px;
	backdrop-filter: blur(10px);
}

.lang-btn:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: #4ecdc4;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(78, 205, 196, 0.3);
}

.lang-btn:active {
	transform: translateY(0);
}

.lang-text {
	display: inline-block;
	transition: transform 0.3s ease;
}

.logo {
	display: flex;
	align-items: center;
	gap: 15px;
	color: #fff;
	font-size: 1.8rem;
	font-weight: bold;
	text-decoration: none;
	transition: opacity 0.3s ease;
	cursor: pointer;
}

.logo:hover {
	opacity: 0.8;
}

.logo-icon {
	width: 50px;
	height: 50px;
	border-radius: 12px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
	overflow: hidden;
}

.logo-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px;
	display: block;
}

/* ลบ pseudo-elements เดิม */
.logo-icon::before,
.logo-icon::after {
	display: none;
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.nav-links a {
	color: #fff;
	text-decoration: none;
	transition: color 0.3s ease;
	font-weight: 500;
}

.nav-links a:hover {
	color: #4ecdc4;
}

/* Dropdown Navigation */
.nav-links li {
	position: relative;
}

.nav-links .dropdown {
	position: relative;
}

.nav-links .dropdown > a {
	display: flex;
	align-items: center;
	gap: 0.3rem;
}

.nav-links .dropdown > a::after {
	content: '▼';
	font-size: 0.7rem;
	transition: transform 0.3s ease;
}

.nav-links .dropdown:hover > a::after {
	transform: rotate(180deg);
}

.nav-links .dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 200px;
	background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
	border-radius: 8px;
	padding: 0.5rem 0;
	margin-top: 0.5rem;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
	border: 1px solid rgba(78, 205, 196, 0.2);
	z-index: 1001;
}

.nav-links .dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.nav-links .dropdown-menu li {
	list-style: none;
}

.nav-links .dropdown-menu a {
	display: block;
	padding: 0.75rem 1.5rem;
	color: #fff;
	text-decoration: none;
	transition: all 0.3s ease;
	font-weight: 500;
}

.nav-links .dropdown-menu a:hover {
	background: rgba(78, 205, 196, 0.15);
	color: #4ecdc4;
	padding-left: 2rem;
}

.signin-link {
	color: #fff;
	padding: 8px 18px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.05);
	display: inline-flex;
	align-items: center;
	font-size: 0.95rem;
	white-space: nowrap;
}

.signin-link:hover {
	color: #4ecdc4;
	border-color: #4ecdc4;
	background: rgba(78, 205, 196, 0.1);
	box-shadow: 0 4px 12px rgba(78, 205, 196, 0.3);
}

.cta-button {
	background: linear-gradient(135deg, #4ecdc4, #44a08d);
	color: #000;
	padding: 8px 18px;
	border: none;
	border-radius: 8px;
	text-decoration: none;
	font-weight: bold;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
	display: inline-flex;
	align-items: center;
	font-size: 0.95rem;
	white-space: nowrap;
}

.cta-button:hover {
	box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
}

/* Hero Section - Changed from purple to dark theme */
.hero {
	background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #000000 100%);
	min-height: calc(100vh - 80px);
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	margin-top: 0;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(78,205,196,0.1)"/></svg>')
		repeat;
	animation: float 20s infinite linear;
}

@keyframes float {
	0% {
		transform: translateY(0px) translateX(0px);
	}
	100% {
		transform: translateY(-100px) translateX(-100px);
	}
}

.hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	z-index: 2;
	position: relative;
}

.hero-text h1 {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #fff;
	line-height: 1.1;
}

.hero-text .tagline {
	font-size: 1.6rem;
	margin-bottom: 2rem;
	color: #4ecdc4;
	font-weight: 300;
}

.hero-text p {
	font-size: 1.15rem;
	margin-bottom: 3rem;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.8;
}

.hero-buttons {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.btn-primary {
	background: linear-gradient(135deg, #4ecdc4, #44a08d);
	color: #000;
	padding: 18px 36px;
	border: none;
	border-radius: 12px;
	text-decoration: none;
	font-weight: bold;
	font-size: 1.2rem;
	transition: all 0.3s ease;
	box-shadow: 0 8px 20px rgba(78, 205, 196, 0.3);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(78, 205, 196, 0.4);
}

.btn-secondary {
	background: transparent;
	color: #fff;
	padding: 18px 36px;
	border: 2px solid #fff;
	border-radius: 12px;
	text-decoration: none;
	font-weight: bold;
	font-size: 1.2rem;
	transition: all 0.3s ease;
}

.btn-secondary:hover {
	background: #fff;
	color: #1a1a1a;
	transform: translateY(-3px);
}

.hero-visual {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.device-showcase img {
	width: 120%;
	height: 120%;
	object-fit: cover;
	border-radius: 17px;
	display: block;
}

@keyframes deviceFloat {
	0%,
	100% {
		transform: translateY(0px) rotateY(-5deg);
	}
	50% {
		transform: translateY(-20px) rotateY(5deg);
	}
}

/* Hero Stats */
.hero-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	margin-top: 4rem;
	padding-top: 3rem;
	border-top: 1px solid rgba(78, 205, 196, 0.2);
	z-index: 2;
	position: relative;
}

.hero-stat-item {
	text-align: center;
	padding: 1.5rem;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
}

.hero-stat-item:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-5px);
	border-color: rgba(78, 205, 196, 0.3);
	box-shadow: 0 10px 30px rgba(78, 205, 196, 0.2);
}

.hero-stat-number {
	font-size: 2.5rem;
	font-weight: bold;
	color: #4ecdc4;
	margin-bottom: 0.5rem;
	line-height: 1;
}

.hero-stat-label {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.4;
	font-weight: 500;
}

/* Customer References Section */
.customer-references {
	padding: 80px 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	border-top: 1px solid rgba(78, 205, 196, 0.1);
}

.customer-references .section-title h2 {
	font-size: 2rem;
	margin-bottom: 3rem;
	color: #2d2d2d;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.customer-logos {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 3rem;
	flex-wrap: wrap;
	max-width: 900px;
	margin: 0 auto;
}

.customer-logo-item {
	background: #fff;
	padding: 2.5rem 4rem;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 150px;
}

.customer-logo-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(78, 205, 196, 0.15);
}

.customer-logo-item img {
	max-width: 280px;
	max-height: 120px;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: grayscale(0%);
	transition: all 0.3s ease;
}

.customer-logo-item:hover img {
	filter: grayscale(0%);
	transform: scale(1.05);
}

/* Pain Points Section */
.pain-points {
	padding: 120px 0;
	background: #f8f9fa;
}

.section-title {
	text-align: center;
	margin-bottom: 5rem;
}

.section-title h2 {
	font-size: 3rem;
	margin-bottom: 1.5rem;
	color: #4ecdc4;
	font-weight: 700;
}

.section-title p {
	font-size: 1.25rem;
	color: #666;
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.8;
}

.pain-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	margin-top: 5rem;
	align-items: stretch;
}

.pain-item {
	background: #fff;
	padding: 2rem 1.5rem;
	border-radius: 20px;
	text-align: center;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 400px;
}

.pain-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.pain-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.pain-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 160px;
	width: 160px;
	margin: 0 auto 1.5rem auto;
}

.pain-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px;
}

.pain-item h3 {
	font-size: 1.15rem;
	margin-bottom: 1rem;
	color: #333;
	font-weight: 600;
	line-height: 1.4;
	text-align: center;
	min-height: 7rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pain-item p {
	color: #666;
	line-height: 1.7;
	font-size: 1rem;
}

/* Solution Section - Changed from teal to dark theme */
.solution {
	padding: 120px 0;
	background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
	color: #fff;
}

.solution-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
}

.solution-text h2 {
	font-size: 3rem;
	margin-bottom: 2rem;
	font-weight: 700;
	line-height: 1.2;
}

.solution-text p {
	font-size: 1.15rem;
	margin-bottom: 2rem;
	line-height: 1.8;
	opacity: 0.95;
}

.solution-features {
	list-style: none;
	margin-top: 2rem;
}

.solution-features li {
	font-size: 1.1rem;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.solution-features li::before {
	content: '✓';
	background: #4ecdc4;
	color: #000;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	flex-shrink: 0;
}

.solution-visual {
	position: relative;
}

.solution-icons-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	padding: 2rem;
}

.solution-icon-item {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
	padding: 2rem 1.5rem;
	text-align: center;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.solution-icon-item:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-5px);
	border-color: rgba(78, 205, 196, 0.3);
	box-shadow: 0 10px 30px rgba(78, 205, 196, 0.2);
}

.icon-wrapper {
	width: 80px;
	height: 80px;
	margin: 0 auto 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(78, 205, 196, 0.1);
	border-radius: 20px;
	border: 2px solid rgba(78, 205, 196, 0.3);
	transition: all 0.3s ease;
}

.solution-icon-item:hover .icon-wrapper {
	background: rgba(78, 205, 196, 0.2);
	border-color: rgba(78, 205, 196, 0.5);
	transform: scale(1.1);
}

.icon-wrapper svg {
	color: #4ecdc4;
	width: 48px;
	height: 48px;
}

.solution-icon-item h4 {
	font-size: 1.1rem;
	color: #fff;
	margin: 0;
	font-weight: 600;
	line-height: 1.4;
}

.feature-mockup {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 2rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Features Showcase */
.features-showcase {
	padding: 120px 0;
	background: #fff;
}

.features-interactive {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 3rem;
	margin-top: 5rem;
	min-height: 700px;
}

/* Feature Tabs */
.feature-tabs {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	background: #f8f9fa;
	border-radius: 15px;
	padding: 1.5rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	height: fit-content;
}

.feature-tab {
	padding: 1rem 1.5rem;
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.3s ease;
	background: #fff;
	border: 2px solid transparent;
	text-align: left;
	position: relative;
	overflow: hidden;
}

.feature-tab:hover {
	transform: translateX(5px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	border-color: rgba(78, 205, 196, 0.3);
}

.feature-tab.active {
	background: linear-gradient(135deg, #4ecdc4, #44a08d);
	color: #fff;
	transform: translateX(8px);
	box-shadow: 0 8px 20px rgba(78, 205, 196, 0.3);
}

.feature-tab h3 {
	font-size: 1.1rem;
	font-weight: 600;
	margin: 0;
	line-height: 1.3;
	color: #333;
	transition: color 0.3s ease;
}

.feature-tab.active h3 {
	color: #fff;
}

/* Feature Display */
.feature-display {
	position: relative;
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
	border: 1px solid #e0e0e0;
}

.feature-showcase {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
}

.feature-showcase.active {
	opacity: 1;
	transform: translateY(0);
	position: relative;
}

.feature-showcase img {
	width: 100%;
	height: 500px;
	object-fit: contain;
	background: #f8f9fa;
	padding: 1.5rem;
	border-radius: 20px 20px 0 0;
}

.feature-description {
	padding: 2rem;
	background: #fff;
	border-radius: 0 0 20px 20px;
}

.feature-description h3 {
	font-size: 1.6rem;
	color: #333;
	margin-bottom: 1rem;
	font-weight: 600;
}

.feature-description p {
	font-size: 1rem;
	color: #666;
	line-height: 1.7;
	margin: 0;
}

/* Stats Section */
.stats {
	padding: 100px 0;
	background: #0a0a0a;
	color: #fff;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 3rem;
	text-align: center;
}

.stat-item {
	padding: 2rem;
	position: relative;
	overflow: hidden;
}

.stat-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(78, 205, 196, 0.1),
		transparent
	);
	animation: shimmer 3s infinite;
	animation-delay: var(--delay, 0s);
}

@keyframes shimmer {
	0% {
		left: -100%;
	}
	50% {
		left: 100%;
	}
	100% {
		left: 100%;
	}
}

.stat-item:nth-child(1)::before {
	animation-delay: 0s;
}
.stat-item:nth-child(2)::before {
	animation-delay: 0.5s;
}
.stat-item:nth-child(3)::before {
	animation-delay: 1s;
}
.stat-item:nth-child(4)::before {
	animation-delay: 1.5s;
}

.stat-number {
	font-size: 4rem;
	font-weight: bold;
	color: #4ecdc4;
	margin-bottom: 1rem;
}

.stat-label {
	font-size: 1.2rem;
	color: #ccc;
	line-height: 1.5;
}

/* Why Choose Section - Changed from purple to dark theme */
.why-choose {
	padding: 120px 0;
	background: linear-gradient(135deg, #1a1a1a 0%, #333333 50%, #000000 100%);
	color: #fff;
}

.advantages-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2.5rem;
	margin-top: 5rem;
}

.advantage-item {
	background: rgba(255, 255, 255, 0.1);
	padding: 2.5rem;
	border-radius: 20px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
	text-align: center;
}

.advantage-item:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateY(-5px);
	border: 1px solid rgba(78, 205, 196, 0.3);
}

.advantage-icon {
	font-size: 3rem;
	margin-bottom: 1.5rem;
	color: #4ecdc4;
}

.advantage-item h3 {
	font-size: 1.4rem;
	margin-bottom: 1rem;
	font-weight: 600;
}

.advantage-item p {
	line-height: 1.7;
	opacity: 0.9;
}

/* CTA Section */
.cta-section {
	padding: 120px 0;
	background: linear-gradient(135deg, #4ecdc4, #44a08d);
	text-align: center;
	color: #000;
}

.cta-section h2 {
	font-size: 3rem;
	margin-bottom: 2rem;
	font-weight: bold;
}

.cta-section p {
	font-size: 1.25rem;
	margin-bottom: 3rem;
	opacity: 0.8;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.8;
}

/* Footer */
footer {
	background: #0a0a0a;
	color: #fff;
	padding: 80px 0 40px;
}

.footer-content {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 4rem;
	margin-bottom: 3rem;
}

/* Contact Section */
.contact-section {
	grid-column: 1;
}

/* Map Section */
.map-section {
	grid-column: 2;
}

.footer-section h3 {
	margin-bottom: 1.5rem;
	color: #4ecdc4;
	font-size: 1.3rem;
}

.footer-section p,
.footer-section a {
	color: #ccc;
	text-decoration: none;
	line-height: 2;
	font-size: 1.1rem;
}

.footer-section a:hover {
	color: #4ecdc4;
}

/* Contact Items with Icons */
.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	margin-bottom: 1rem;
}

.contact-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	background: rgba(78, 205, 196, 0.15);
	border-radius: 8px;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.contact-icon:hover {
	background: rgba(78, 205, 196, 0.25);
	transform: translateY(-2px);
}

.contact-item p {
	margin: 0;
	padding-top: 8px;
}

.contact-phones {
	padding-top: 8px;
}

.contact-phones p {
	margin: 0;
	padding: 0;
	line-height: 1.8;
}

/* Social Media Icons */
.social-media {
	display: flex;
	gap: 1rem;
	margin-top: 2rem;
}

.social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: #fff;
	border-radius: 50%;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-icon:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.social-icon svg {
	width: 24px;
	height: 24px;
}

/* Map Container */
.map-container {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
	margin-top: 0;
}

.map-container iframe {
	width: 100%;
	height: 400px;
	border: none;
}

.footer-bottom {
	text-align: center;
	padding-top: 3rem;
	border-top: 1px solid #333;
	color: #666;
	font-size: 1.1rem;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	color: #fff;
	font-size: 1.5rem;
	cursor: pointer;
	padding: 0.5rem;
	z-index: 1001;
}

.mobile-menu {
	display: none;
	position: fixed;
	top: 70px;
	left: 0;
	right: 0;
	background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	z-index: 999;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.mobile-menu.active {
	max-height: 500px;
}

.mobile-menu ul {
	list-style: none;
	padding: 1rem 0;
}

.mobile-menu li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu a {
	display: block;
	padding: 1rem 1.5rem;
	color: #fff;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
}

.mobile-menu a:hover {
	background: rgba(78, 205, 196, 0.15);
	color: #4ecdc4;
	padding-left: 2rem;
}

/* Mobile dropdown */
.mobile-menu .dropdown-menu {
	position: static;
	opacity: 1;
	visibility: visible;
	transform: none;
	box-shadow: none;
	border: none;
	background: rgba(0, 0, 0, 0.3);
	margin: 0;
	padding: 0;
	border-radius: 0;
	display: none;
}

.mobile-menu .dropdown.active .dropdown-menu {
	display: block;
}

.mobile-menu .dropdown > a::after {
	content: '+';
	float: right;
	font-size: 1.2rem;
	transition: transform 0.3s ease;
}

.mobile-menu .dropdown.active > a::after {
	content: '−';
}

/* Responsive */
@media (max-width: 768px) {
	body {
		padding-top: 70px;
	}

	header {
		height: 70px;
		padding: 0.8rem 0;
	}

	section::before {
		height: 90px;
		margin-top: -90px;
	}

	.hero {
		min-height: calc(100vh - 70px);
		padding: 2rem 0;
	}

	.hero-content,
	.solution-content {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 2rem;
	}

	.hero-text h1 {
		font-size: 2rem;
		line-height: 1.2;
	}

	.hero-text .tagline {
		font-size: 1.1rem;
		line-height: 1.4;
		margin-bottom: 1.5rem;
	}

	.hero-text p {
		font-size: 1rem;
		margin-bottom: 2rem;
	}

	.hero-buttons {
		flex-direction: column;
		gap: 1rem;
	}

	.btn-primary,
	.btn-secondary {
		padding: 14px 28px;
		font-size: 1rem;
		width: 100%;
		text-align: center;
	}

	.solution-text h2,
	.section-title h2 {
		font-size: 2rem;
	}

	.section-title p {
		font-size: 1rem;
	}

	.nav-links {
		display: none;
	}

	.mobile-menu-toggle {
		display: block;
	}

	.mobile-menu {
		display: block;
	}

	.logo {
		font-size: 1.3rem;
		gap: 10px;
	}

	.logo-icon {
		width: 40px;
		height: 40px;
	}

	.header-controls {
		gap: 0.5rem;
	}

	.lang-btn {
		padding: 8px 12px;
		font-size: 0.75rem;
		min-width: 40px;
	}

	.cta-button {
		padding: 10px 16px;
		font-size: 0.85rem;
		white-space: nowrap;
	}

	/* Hero Stats Mobile Layout */
	.hero-stats {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
		margin-top: 2rem;
		padding-top: 2rem;
	}

	.hero-stat-item {
		padding: 1rem;
	}

	.hero-stat-number {
		font-size: 1.8rem;
	}

	.hero-stat-label {
		font-size: 0.85rem;
		line-height: 1.3;
	}

	.features-interactive {
		grid-template-columns: 1fr;
		gap: 2rem;
		min-height: auto;
	}

	.feature-tabs {
		order: 2;
		flex-direction: row;
		overflow-x: auto;
		padding: 1rem;
		gap: 0.5rem;
	}

	.feature-tab {
		min-width: 180px;
		padding: 0.8rem 1rem;
		flex-shrink: 0;
		text-align: center;
	}

	.feature-tab h3 {
		font-size: 0.9rem;
		white-space: nowrap;
	}

	.feature-display {
		order: 1;
	}

	.feature-showcase img {
		height: 250px;
		padding: 1rem;
	}

	.feature-description {
		padding: 1.5rem;
	}

	.feature-description h3 {
		font-size: 1.5rem;
	}

	.customer-references {
		padding: 60px 0;
	}

	.customer-references .section-title h2 {
		font-size: 1.5rem;
		margin-bottom: 2rem;
	}

	.customer-logos {
		gap: 2rem;
	}

	.customer-logo-item {
		padding: 1.5rem 2rem;
		min-height: 100px;
	}

	.customer-logo-item img {
		max-width: 150px;
		max-height: 60px;
	}

	.pain-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.pain-item {
		min-height: 350px;
		padding: 1.5rem 1rem;
	}
	
	.pain-item h3 {
		font-size: 1.2rem;
		min-height: auto;
	}
	
	.pain-icon {
		height: 140px;
		width: 140px;
		margin-bottom: 1rem;
	}

	.device-showcase {
		width: 300px;
		height: 400px;
	}

	.solution-icons-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		padding: 1rem;
	}

	.solution-icon-item {
		padding: 1.5rem 1rem;
	}

	.icon-wrapper {
		width: 60px;
		height: 60px;
		margin-bottom: 1rem;
	}

	.icon-wrapper svg {
		width: 36px;
		height: 36px;
	}

	.solution-icon-item h4 {
		font-size: 1rem;
	}

	/* Footer responsive adjustments */
	.footer-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.contact-section,
	.map-section {
		grid-column: 1;
	}
	
	.map-container iframe {
		height: 250px;
	}
	
	.social-media {
		justify-content: center;
		margin-top: 1.5rem;
	}
}

/* Animations */
.fade-in {
	animation: fadeIn 1s ease-in-out;
}

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

.slide-in-left {
	animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.slide-in-right {
	animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Dashboard Carousel Container */
.dashboard-carousel {
	position: relative;
	width: 100%;
	height: 500px;
	overflow: hidden;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.1),
		rgba(255, 255, 255, 0.05)
	);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 20px;
}

/* Dashboard Images */
.dashboard-image {
	position: absolute;
	top: 20px;
	left: 20px;
	width: calc(100% - 40px);
	height: calc(100% - 40px);
	object-fit: contain;
	opacity: 0;
	transform: scale(1.1) translateX(100%);
	transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
	border-radius: 15px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* Active Image */
.dashboard-image.active {
	opacity: 1;
	transform: scale(1) translateX(0);
	z-index: 2;
}

/* Next Image (準備進場) */
.dashboard-image.next {
	opacity: 0;
	transform: scale(1.05) translateX(50%);
	z-index: 1;
}

/* Previous Image (正在離場) */
.dashboard-image.prev {
	opacity: 0;
	transform: scale(0.95) translateX(-100%);
	z-index: 0;
}

/* Automatic Animation for 5 images */
.dashboard-carousel .dashboard-image:nth-child(1) {
	animation: slideShow5 20s infinite;
	animation-delay: 0s;
}

.dashboard-carousel .dashboard-image:nth-child(2) {
	animation: slideShow5 20s infinite;
	animation-delay: 4s;
}

.dashboard-carousel .dashboard-image:nth-child(3) {
	animation: slideShow5 20s infinite;
	animation-delay: 8s;
}

.dashboard-carousel .dashboard-image:nth-child(4) {
	animation: slideShow5 20s infinite;
	animation-delay: 12s;
}

.dashboard-carousel .dashboard-image:nth-child(5) {
	animation: slideShow5 20s infinite;
	animation-delay: 16s;
}

@keyframes slideShow5 {
	0%,
	15% {
		opacity: 1;
		transform: scale(1) translateX(0);
		z-index: 2;
	}
	20% {
		opacity: 0;
		transform: scale(0.95) translateX(-100%);
		z-index: 0;
	}
	95%,
	100% {
		opacity: 0;
		transform: scale(1.1) translateX(100%);
		z-index: 0;
	}
}

/* Hover Effects */
.dashboard-carousel:hover .dashboard-image {
	animation-play-state: paused;
}

.dashboard-carousel::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		45deg,
		transparent 30%,
		rgba(255, 255, 255, 0.1) 50%,
		transparent 70%
	);
	transform: translateX(-100%);
	animation: shine 3s infinite;
	z-index: 3;
	pointer-events: none;
}

@keyframes shine {
	0% {
		transform: translateX(-100%) skewX(-25deg);
	}
	50% {
		transform: translateX(100%) skewX(-25deg);
	}
	100% {
		transform: translateX(100%) skewX(-25deg);
	}
}

/* Indicators */
.dashboard-carousel::after {
	content: '';
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 12px;
	z-index: 4;
}

/* Individual Indicators */
.carousel-indicators {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 12px;
	z-index: 4;
}

.indicator {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	cursor: pointer;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.indicator.active {
	background: rgba(255, 255, 255, 0.9);
	transform: scale(1.2);
}

.indicator.active::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(78, 205, 196, 0.8),
		transparent
	);
	animation: indicatorProgress 4s linear infinite;
}

@keyframes indicatorProgress {
	0% {
		left: -100%;
	}
	100% {
		left: 100%;
	}
}

/* Progress Bar */
.carousel-progress {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 4px;
	background: rgba(78, 205, 196, 0.8);
	transform-origin: left;
	animation: progressBar 20s linear infinite;
	z-index: 4;
}

@keyframes progressBar {
	0%,
	15% {
		width: 20%;
	}
	20%,
	35% {
		width: 40%;
	}
	40%,
	55% {
		width: 60%;
	}
	60%,
	75% {
		width: 80%;
	}
	80%,
	95% {
		width: 100%;
	}
	96%,
	100% {
		width: 0%;
	}
}

/* Registration Modal */
.modal {
	display: none;
	position: fixed;
	z-index: 10000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(5px);
	animation: fadeIn 0.3s ease;
}

.modal-content {
	background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
	margin: 2% auto;
	padding: 0;
	border-radius: 20px;
	width: 90%;
	max-width: 600px;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
	border: 1px solid rgba(78, 205, 196, 0.2);
	animation: slideUp 0.4s ease;
}

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

.modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 2rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	background: linear-gradient(135deg, rgba(78, 205, 196, 0.1), rgba(68, 160, 141, 0.1));
}

.modal-header h2 {
	color: #4ecdc4;
	font-size: 2rem;
	font-weight: 600;
	margin: 0;
}

.close {
	color: #ccc;
	font-size: 2.5rem;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	line-height: 1;
	padding: 0.5rem;
	border-radius: 50%;
}

.close:hover {
	color: #4ecdc4;
	background: rgba(78, 205, 196, 0.1);
	transform: rotate(90deg);
}

.modal-body {
	padding: 2rem;
}

/* Registration Form */
.register-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.form-group label {
	color: #fff;
	font-weight: 500;
	font-size: 1rem;
}

.form-group input,
.form-group select {
	padding: 1rem;
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.05);
	color: #fff;
	font-size: 1rem;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus {
	outline: none;
	border-color: #4ecdc4;
	background: rgba(255, 255, 255, 0.1);
	box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
}

.form-group input::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.form-group select {
	cursor: pointer;
}

.form-group select option {
	background: #1a1a1a;
	color: #fff;
}

/* Checkbox Group */
.checkbox-group {
	flex-direction: row;
	align-items: flex-start;
	gap: 0;
}

.checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	cursor: pointer;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.5;
	font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
	display: none;
}

.checkmark {
	width: 20px;
	height: 20px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 4px;
	position: relative;
	transition: all 0.3s ease;
	flex-shrink: 0;
	margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
	background: #4ecdc4;
	border-color: #4ecdc4;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
	content: '✓';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #000;
	font-weight: bold;
	font-size: 12px;
}

.checkbox-label a {
	color: #4ecdc4;
	text-decoration: none;
	transition: color 0.3s ease;
}

.checkbox-label a:hover {
	color: #44a08d;
	text-decoration: underline;
}

/* Error Messages */
.error-message {
	color: #ff6b6b;
	font-size: 0.85rem;
	margin-top: 0.25rem;
	display: none;
}

.error-message.show {
	display: block;
	animation: fadeIn 0.3s ease;
}

.form-group.error input,
.form-group.error select {
	border-color: #ff6b6b;
	background: rgba(255, 107, 107, 0.1);
}

/* Submit Button */
.btn-register {
	background: linear-gradient(135deg, #4ecdc4, #44a08d);
	color: #000;
	padding: 1.2rem 2rem;
	border: none;
	border-radius: 12px;
	font-weight: bold;
	font-size: 1.1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	margin-top: 1rem;
}

.btn-register:hover:not(:disabled) {
	transform: translateY(-2px);
	box-shadow: 0 15px 35px rgba(78, 205, 196, 0.4);
}

.btn-register:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

.btn-text {
	transition: opacity 0.3s ease;
}

.btn-loader {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.btn-register.loading .btn-text {
	opacity: 0;
}

.btn-register.loading .btn-loader {
	opacity: 1;
}

/* Spinner */
.spinner {
	width: 20px;
	height: 20px;
	border: 2px solid rgba(0, 0, 0, 0.3);
	border-top: 2px solid #000;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

/* Mobile Responsive for Modal */
@media (max-width: 768px) {
	.modal-content {
		width: 95%;
		margin: 5% auto;
		max-height: 85vh;
	}

	.modal-header,
	.modal-body {
		padding: 1.5rem;
	}

	.modal-header h2 {
		font-size: 1.5rem;
	}

	.form-group input,
	.form-group select {
		padding: 0.8rem;
		font-size: 0.95rem;
	}

	.checkbox-label {
		font-size: 0.9rem;
	}

	.btn-register {
		padding: 1rem 1.5rem;
		font-size: 1rem;
	}
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.dashboard-carousel {
		height: 350px;
		border-radius: 15px;
		padding: 15px;
	}
	
	.dashboard-image {
		top: 15px;
		left: 15px;
		width: calc(100% - 30px);
		height: calc(100% - 30px);
	}

	.indicator {
		width: 10px;
		height: 10px;
	}
}

/* Pricing Section */
.pricing-section {
	padding: 120px 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	position: relative;
}

.pricing-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="0.5" fill="rgba(78,205,196,0.05)"/></svg>') repeat;
	animation: float 30s infinite linear;
	pointer-events: none;
}

/* Pricing Container */
.pricing-container {
	display: flex;
	flex-direction: column;
	gap: 3rem;
	margin-top: 4rem;
}

/* Pricing Table */
.pricing-table {
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	border: 2px solid rgba(78, 205, 196, 0.1);
}

.pricing-header {
	background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
	color: #fff;
	padding: 2rem;
	text-align: center;
}

.pricing-header h3 {
	font-size: 2rem;
	margin: 0;
	font-weight: 700;
	color: #4ecdc4;
}

/* Plan Selectors */
.plan-selectors {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	margin-bottom: 3rem;
}

.selector-card {
	background: #fff;
	border-radius: 15px;
	padding: 2rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	border: 2px solid rgba(78, 205, 196, 0.1);
	transition: all 0.3s ease;
}

.selector-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
	border-color: rgba(78, 205, 196, 0.3);
}

.selector-header {
	text-align: center;
	margin-bottom: 1.5rem;
}

.selector-header h3 {
	font-size: 1.5rem;
	color: #4ecdc4;
	margin-bottom: 0.5rem;
	font-weight: 700;
}

.selector-header p {
	color: #666;
	font-size: 0.95rem;
	line-height: 1.5;
}

.selector-price-display {
	text-align: center;
	margin: 2rem 0 2rem 0;
	padding: 1.5rem;
	background: rgba(78, 205, 196, 0.05);
	border-radius: 12px;
	border: 1px solid rgba(78, 205, 196, 0.2);
}

.selector-price-amount {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 0.25rem;
	margin-bottom: 0.5rem;
}

.selector-price-amount .currency-symbol {
	font-size: 1.5rem;
	color: #333;
	font-weight: 600;
}

.selector-price-amount .price-value {
	font-size: 3rem;
	color: #333;
	font-weight: 700;
	line-height: 1;
	transition: all 0.3s ease;
}

.selector-price-amount .price-value.updating {
	opacity: 0.5;
	transform: scale(0.95);
}

.selector-billing-info {
	font-size: 0.95rem;
	color: #666;
	line-height: 1.4;
	transition: all 0.3s ease;
}

.selector-billing-info.updating {
	opacity: 0.5;
}

.selector-dropdown {
	text-align: center;
}

.selector-dropdown label {
	display: block;
	font-size: 1rem;
	font-weight: 600;
	color: #333;
	margin-bottom: 1rem;
}

/* Comparison Table */
.pricing-comparison-table {
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
	border: 2px solid rgba(78, 205, 196, 0.1);
	overflow: visible;
	position: relative;
}

.comparison-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	font-size: 0.95rem;
	border-radius: 20px;
}

.comparison-table th,
.comparison-table td {
	padding: 1rem;
	text-align: center;
	border-bottom: 1px solid #f0f0f0;
	vertical-align: middle;
}

.comparison-table thead th {
	background: linear-gradient(135deg, #2d2d2d, #1a1a1a) !important;
	color: #fff;
	font-weight: 700;
	border-bottom: 2px solid #4ecdc4;
	position: sticky;
	top: 80px;
	z-index: 1000;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.feature-column {
	width: 40%;
	font-size: 1.8rem;
	color: #fff;
	text-align: left;
	font-weight: 700;
	padding: 1.5rem 1rem;
}

.plan-column {
	width: 30%;
	text-align: center;
	padding: 1.5rem 1rem;
}

.plan-column h4 {
	font-size: 1.8rem;
	margin: 0;
	color: #4ecdc4;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.plan-header-table {
	padding: 1.5rem 1rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.plan-header-table h4 {
	font-size: 1.4rem;
	margin: 0;
	color: #4ecdc4;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.price-display {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	width: 100%;
}

.price-display .price-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 0.75rem 1rem;
	background: rgba(78, 205, 196, 0.15);
	border-radius: 8px;
	border: 1px solid rgba(78, 205, 196, 0.3);
}

.price-display .price-row:last-child {
	margin-bottom: 0;
}

.price-type {
	font-size: 0.9rem;
	color: #fff;
	font-weight: 600;
	opacity: 0.8;
}

.price {
	font-size: 1.2rem;
	font-weight: bold;
	color: #4ecdc4;
	transition: all 0.3s ease;
}

/* Subscription price display - single price */
.plan-column.subscription .price-display {
	align-items: center;
}

.plan-column.subscription .price {
	font-size: 2rem;
	color: #4ecdc4;
	font-weight: 700;
	text-align: center;
	padding: 0.5rem;
	background: rgba(78, 205, 196, 0.15);
	border-radius: 8px;
	border: 1px solid rgba(78, 205, 196, 0.3);
	width: 100%;
}

/* Feature Categories */
.feature-category td {
	background: #f8f9fa;
	font-weight: 700;
	color: #333;
	border-top: 2px solid #e9ecef;
	border-bottom: 1px solid #e9ecef;
	padding: 1.2rem 1rem;
}

.category-header {
	text-align: left !important;
	font-size: 1.1rem;
}

.feature-category .category-header {
	text-align: left !important;
}

/* Feature Rows */
.feature-name {
	font-weight: 600;
	color: #555;
	vertical-align: middle;
	padding: 1.2rem 1rem;
	text-align: left !important;
}

.feature-value {
	text-align: center;
	vertical-align: middle;
	padding: 1.2rem 1rem;
}

.feature-value.enterprise {
	background: rgba(78, 205, 196, 0.05);
}

.feature-value.subscription {
	background: rgba(68, 160, 141, 0.05);
}

/* Checkmarks and Cross Icons */
.checkmark {
	color: #4ecdc4;
	font-size: 1.2rem;
	font-weight: bold;
}

.cross {
	color: #ff6b6b;
	font-size: 1.2rem;
	font-weight: bold;
}

/* CTA Row */
.cta-row {
	background: #f8f9fa;
	border-top: 2px solid #e9ecef;
}

.cta-row td {
	padding: 1.5rem 1rem;
	border-bottom: none;
}

/* Plan Header */
.plan-header {
	background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
	color: #fff;
	padding: 2rem;
	text-align: center;
}

.plan-header h3 {
	font-size: 2rem;
	margin: 0 0 1rem 0;
	font-weight: 700;
	color: #4ecdc4;
}

.plan-header p {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
	line-height: 1.5;
}

/* Plan Selector */
.plan-selector {
	padding: 2rem;
	background: #f8f9fa;
	border-bottom: 1px solid #e9ecef;
}

.plan-selector label {
	display: block;
	font-size: 1rem;
	font-weight: 600;
	color: #333;
	margin-bottom: 1rem;
}

/* Dropdown Container */
.dropdown-container {
	position: relative;
	width: 100%;
}

.plan-dropdown {
	width: 100%;
	padding: 1rem 1.5rem;
	border: 2px solid #e9ecef;
	border-radius: 12px;
	background: #fff;
	color: #333;
	font-size: 1rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	background-size: 20px;
	padding-right: 3rem;
}

.plan-dropdown:hover {
	border-color: #4ecdc4;
	background-color: rgba(78, 205, 196, 0.05);
}

.plan-dropdown:focus {
	outline: none;
	border-color: #4ecdc4;
	box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
	background-color: rgba(78, 205, 196, 0.05);
}

.plan-dropdown option {
	padding: 0.5rem;
	background: #fff;
	color: #333;
}

/* Plan Pricing Display */
.plan-pricing {
	padding: 2rem;
	text-align: center;
	background: #fff;
	border-bottom: 1px solid #e9ecef;
}

.pricing-display {
	margin-bottom: 1.5rem;
}

.current-price {
	font-size: 2.5rem;
	font-weight: bold;
	color: #4ecdc4;
	margin-bottom: 0.5rem;
	transition: all 0.3s ease;
}

.price-label {
	font-size: 1rem;
	color: #666;
	font-weight: 500;
}

/* Dual Pricing for Enterprise */
.dual-pricing {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.price-column {
	padding: 1rem;
	background: #f8f9fa;
	border-radius: 12px;
	border: 1px solid #e9ecef;
	text-align: center;
}

.price-header {
	font-size: 0.9rem;
	color: #666;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.price {
	font-size: 1.5rem;
	font-weight: bold;
	color: #4ecdc4;
	transition: all 0.3s ease;
}

/* Plan Features */
.plan-features {
	padding: 2rem;
	background: #fff;
}

.plan-features h4 {
	font-size: 1.3rem;
	color: #333;
	margin-bottom: 1.5rem;
	font-weight: 600;
	text-align: center;
}

.plan-features ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.plan-features li {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-size: 1rem;
	color: #555;
	margin-bottom: 0.75rem;
	padding: 0.5rem;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.plan-features li:hover {
	background: rgba(78, 205, 196, 0.05);
}

.plan-features li::before {
	content: '✓';
	background: #4ecdc4;
	color: #000;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 12px;
	flex-shrink: 0;
}

/* Plan CTA */
.plan-cta {
	padding: 2rem;
	background: #fff;
}

.btn-pricing {
	display: block;
	width: 100%;
	background: linear-gradient(135deg, #4ecdc4, #44a08d);
	color: #000;
	padding: 1.2rem 1.5rem;
	border: none;
	border-radius: 12px;
	text-decoration: none;
	font-weight: bold;
	font-size: 1.1rem;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
	cursor: pointer;
}

.btn-pricing:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
}

/* Shared Features Section */
.shared-features {
	background: #fff;
	border-radius: 20px;
	padding: 2.5rem;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
	border: 2px solid rgba(78, 205, 196, 0.1);
}

.features-header {
	text-align: center;
	margin-bottom: 2.5rem;
}

.features-header h3 {
	font-size: 2rem;
	color: #333;
	margin-bottom: 1rem;
	font-weight: 700;
}

.features-header p {
	font-size: 1.1rem;
	color: #666;
	max-width: 600px;
	margin: 0 auto;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1.5rem;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	background: #f8f9fa;
	border-radius: 12px;
	border: 1px solid #e9ecef;
	transition: all 0.3s ease;
}

.feature-item:hover {
	background: rgba(78, 205, 196, 0.1);
	border-color: rgba(78, 205, 196, 0.3);
	transform: translateY(-2px);
}

.feature-icon {
	background: #4ecdc4;
	color: #000;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 14px;
	flex-shrink: 0;
}

.feature-item span {
	font-size: 1rem;
	color: #555;
	font-weight: 500;
}

/* Mobile Responsive for New Pricing */
@media (max-width: 1000px) {
	.plan-selectors {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		margin-bottom: 2rem;
	}
	
	.comparison-table {
		font-size: 0.85rem;
	}
	
	.comparison-table th,
	.comparison-table td {
		padding: 0.75rem 0.5rem;
	}
	
	.feature-column {
		width: 45%;
	}
	
	.plan-column {
		width: 27.5%;
	}

	.plan-column h4 {
		font-size: 1.3rem;
	}

	.plan-header-table h4 {
		font-size: 1.1rem;
	}
	
	.price {
		font-size: 0.95rem;
	}
	
	.plan-column.subscription .price {
		font-size: 1.2rem;
	}
	
	.features-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
}

@media (max-width: 768px) {
	.pricing-section {
		padding: 80px 0;
	}
	
	.plan-selectors {
		grid-template-columns: 1fr;
		gap: 1rem;
		margin-bottom: 1.5rem;
	}
	
	.selector-card {
		padding: 1.5rem;
	}
	
	.comparison-table {
		font-size: 0.8rem;
	}
	
	.comparison-table th,
	.comparison-table td {
		padding: 0.6rem 0.4rem;
	}
	
	.feature-column {
		width: 50%;
		font-size: 0.9rem;
	}
	
	.plan-column {
		width: 25%;
	}

	.plan-column h4 {
		font-size: 1.1rem;
	}

	.plan-header-table h4 {
		font-size: 1rem;
		margin-bottom: 0.5rem;
	}
	
	.price-display .price-row {
		flex-direction: column;
		gap: 0.25rem;
		padding: 0.4rem;
	}
	
	.price-type {
		font-size: 0.75rem;
	}
	
	.price {
		font-size: 0.9rem;
	}
	
	.plan-column.subscription .price {
		font-size: 1.1rem;
	}
	
	.category-header {
		font-size: 0.95rem;
	}
	
	.feature-name {
		font-size: 0.85rem;
		padding: 1rem 0.5rem;
	}
	
	.feature-value {
		padding: 1rem 0.3rem;
	}
	
	.btn-pricing {
		padding: 0.8rem 1rem;
		font-size: 0.9rem;
	}
}

@media (max-width: 768px) {
	.pricing-section {
		padding: 80px 0;
	}
	
	.pricing-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
		margin-top: 3rem;
	}
	
	.pricing-card {
		min-height: auto;
	}
	
	.plan-header {
		padding: 1.5rem 1rem;
	}
	
	.plan-header h3 {
		font-size: 1.5rem;
		margin-bottom: 0.75rem;
	}
	
	.plan-devices span {
		font-size: 0.85rem;
		padding: 0.4rem 0.8rem;
	}
	
	.price-section {
		grid-template-columns: 1fr;
		gap: 0.75rem;
	}
	
	.price-column {
		padding: 0.75rem;
	}
	
	.price-header {
		font-size: 0.8rem;
	}
	
	.price {
		font-size: 1.1rem;
	}
	
	.plan-features {
		padding: 1rem;
	}
	
	.plan-features li {
		font-size: 0.9rem;
		margin-bottom: 0.6rem;
	}
	
	.plan-features li::before {
		width: 18px;
		height: 18px;
		font-size: 11px;
	}
	
	.plan-cta {
		padding: 1rem;
	}
	
	.btn-pricing {
		padding: 0.875rem 1.5rem;
		font-size: 1rem;
	}
	
	.popular-badge {
		top: -12px;
		padding: 6px 20px;
		font-size: 0.8rem;
	}
}

/* Pricing Toggle */
.pricing-toggle {
	display: flex;
	justify-content: center;
	margin-top: 2rem;
	margin-bottom: 1rem;
}

.toggle-container {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	background: rgba(248, 249, 250, 0.95);
	padding: 0.5rem;
	border-radius: 50px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.06);
	position: relative;
}

/* Radio Option Container */
.radio-option {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	cursor: pointer;
	padding: 0.75rem 1.5rem;
	border-radius: 30px;
	transition: all 0.3s ease;
	position: relative;
}

.radio-option:hover {
	background: rgba(255, 255, 255, 0.5);
}

/* Hide default radio button */
.radio-option input[type="radio"] {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 24px;
	height: 24px;
	border: 2px solid #adb5bd;
	border-radius: 50%;
	outline: none;
	cursor: pointer;
	position: relative;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.radio-option input[type="radio"]:checked {
	border-color: #4ecdc4;
	border-width: 8px;
	background: white;
}

.radio-option input[type="radio"]:hover {
	border-color: #4ecdc4;
}

/* Radio Label */
.radio-label {
	font-weight: 600;
	font-size: 1.1rem;
	color: #495057;
	transition: color 0.3s ease;
	user-select: none;
}

.radio-option input[type="radio"]:checked ~ .radio-label {
	color: #212529;
}

/* Save Badge */
.save-badge {
	font-weight: 700;
	font-size: 0.95rem;
	color: #4ecdc4;
	margin-left: 0.5rem;
	letter-spacing: 0.5px;
}

/* Price Transition Effects */
.price {
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.price.updating {
	transform: scale(0.95);
	opacity: 0.7;
}

/* Mobile Responsive for Toggle */
@media (max-width: 768px) {
	.toggle-container {
		padding: 0.4rem;
		gap: 1rem;
		flex-direction: column;
		border-radius: 20px;
	}

	.radio-option {
		padding: 0.6rem 1rem;
		width: 100%;
		justify-content: center;
	}

	.radio-label {
		font-size: 1rem;
	}

	.save-badge {
		font-size: 0.85rem;
	}

	.radio-option input[type="radio"] {
		width: 20px;
		height: 20px;
	}

	.radio-option input[type="radio"]:checked {
		border-width: 6px;
	}
}

/* Policy Modal Styles */
.policy-modal .modal-content {
	max-width: 800px;
}

.policy-content {
	max-height: 85vh;
}

.policy-text {
	color: #fff;
	line-height: 1.8;
	font-size: 1rem;
}

.policy-text h1,
.policy-text h2,
.policy-text h3 {
	color: #4ecdc4;
	margin-top: 1.5rem;
	margin-bottom: 1rem;
}

.policy-text p {
	margin-bottom: 1rem;
}

.policy-text ul,
.policy-text ol {
	margin-left: 1.5rem;
	margin-bottom: 1rem;
}

.policy-text li {
	margin-bottom: 0.5rem;
}

.policy-loader {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 3rem;
	gap: 1rem;
}

.policy-loader .spinner {
	width: 50px;
	height: 50px;
	border: 4px solid rgba(78, 205, 196, 0.2);
	border-top: 4px solid #4ecdc4;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

.policy-loader p {
	color: #4ecdc4;
	font-size: 1.1rem;
}

.policy-link {
	color: #4ecdc4;
	text-decoration: underline;
	cursor: pointer;
	transition: color 0.3s ease;
}

.policy-link:hover {
	color: #44a08d;
}

/* Mobile Responsive for Policy Modals */
@media (max-width: 768px) {
	.policy-modal .modal-content {
		max-width: 95%;
		max-height: 90vh;
	}

	.policy-text {
		font-size: 0.9rem;
	}
}
