:root {
	--primary: #2196F3;
	--primary-dark: #1976D2;
	--primary-light: #64B5F6;
	--secondary: #7e57c2;
	--accent: #FF4081;
	--light: #f8f9fa;
	--dark: #212529;
	--gray: #6c757d;
	--success: #4caf50;
	--border-radius: 12px;
	--shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	--transition: all 0.3s ease;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
	background-color: white;
	color: var(--dark);
	line-height: 1.6;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Navigation */
header {
	background: white;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
}

.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 24px;
	font-weight: 700;
	color: var(--primary);
	text-decoration: none;
}

.logo i {
	color: var(--secondary);
}

.logo img {
	width: 28px;
	height: 28px;
}

.nav-links {
	display: flex;
	gap: 30px;
}

.nav-links a {
	text-decoration: none;
	color: var(--dark);
	font-weight: 500;
	transition: var(--transition);
	position: relative;
}

.nav-links a:hover {
	color: var(--primary);
}

.nav-links a.active {
	color: var(--primary);
}

.nav-links a.active::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--primary);
}

.nav-actions {
	display: flex;
	gap: 15px;
	align-items: center;
}

.btn {
	padding: 10px 20px;
	border-radius: 30px;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
	text-decoration: none;
	display: inline-block;
	text-align: center;
}

.btn-outline {
	border: 2px solid var(--primary);
	color: var(--primary);
	background: transparent;
}

.btn-outline:hover {
	background: var(--primary);
	color: white;
}

.btn-primary {
	background: var(--primary);
	color: white;
	border: 2px solid var(--primary);
}

.btn-primary:hover {
	background: var(--primary-dark);
	border-color: var(--primary-dark);
}

.language-switcher {
	position: relative;
}

.language-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	background: none;
	border: 1px solid #ddd;
	border-radius: 20px;
	padding: 8px 15px;
	cursor: pointer;
	transition: var(--transition);
}

.language-btn:hover {
	background: #f5f5f5;
}

.language-menu {
	position: absolute;
	top: 100%;
	right: 0;
	background: white;
	border-radius: 8px;
	box-shadow: var(--shadow);
	padding: 10px 0;
	min-width: 150px;
	display: none;
	z-index: 100;
}

.language-menu.active {
	display: block;
}

.language-menu a {
	display: block;
	padding: 10px 20px;
	text-decoration: none;
	color: var(--dark);
	transition: var(--transition);
}

.language-menu a:hover {
	background: #f5f5f5;
	color: var(--primary);
}

/* Hero Section */
.hero {
	padding: 100px 0;
	background: linear-gradient(135deg, #f5f7fa 0%, #e3f2fd 100%);
	text-align: center;
	border-radius: 0 0 30px 30px;
	margin-bottom: 80px;
}

.hero h1 {
	font-size: 3.5rem;
	margin-bottom: 20px;
	line-height: 1.2;
}

.hero p {
	font-size: 1.25rem;
	color: var(--gray);
	max-width: 700px;
	margin: 0 auto 40px;
}

.hero-buttons {
	display: flex;
	gap: 15px;
	justify-content: center;
	flex-wrap: wrap;
}

.hero-image {
	max-width: 800px;
	margin: 60px auto 0;
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.hero-image img {
	width: 100%;
	display: block;
}

/* Value Propositions */
.value-props {
	padding: 80px 0;
}

.section-title {
	text-align: center;
	margin-bottom: 60px;
}

.section-title h2 {
	font-size: 2.5rem;
	margin-bottom: 15px;
}

.section-title p {
	color: var(--gray);
	max-width: 600px;
	margin: 0 auto;
}

.props-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.prop-card {
	background: white;
	padding: 40px 30px;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
	text-align: center;
	transition: var(--transition);
}

.prop-card:hover {
	transform: translateY(-10px);
}

.prop-icon {
	width: 80px;
	height: 80px;
	background: rgba(33, 150, 243, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
	font-size: 32px;
	color: var(--primary);
}

.prop-card h3 {
	font-size: 1.5rem;
	margin-bottom: 15px;
}

.prop-card p {
	color: var(--gray);
}

/* Features */
.features {
	padding: 80px 0;
	background: var(--light);
}

.feature {
	display: flex;
	align-items: center;
	gap: 50px;
	margin-bottom: 80px;
}

.feature:nth-child(even) {
	flex-direction: row-reverse;
}

.feature-content {
	flex: 1;
}

.feature-image {
	flex: 1;
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.feature-image img {
	width: 100%;
	display: block;
}

.feature h3 {
	font-size: 2rem;
	margin-bottom: 20px;
}

.feature p {
	color: var(--gray);
	margin-bottom: 25px;
}

.feature-list {
	list-style: none;
}

.feature-list li {
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.feature-list i {
	color: var(--success);
}

/* Pricing */
.pricing {
	padding: 100px 0;
}

.pricing-container {
	display: flex;
	flex-direction: column;
	gap: 60px;
}

.pricing-section {
	background: white;
	border-radius: var(--border-radius);
	padding: 40px;
	box-shadow: var(--shadow);
}

.pricing-section h3 {
	font-size: 1.8rem;
	margin-bottom: 30px;
	text-align: center;
}

.subscription-box {
	text-align: center;
}

.subscription-toggle {
	display: inline-flex;
	background: #f1f3f4;
	padding: 5px;
	border-radius: 30px;
	margin: 0 auto 30px;
	overflow: hidden;
}

.toggle-btn {
	padding: 10px 25px;
	border-radius: 30px;
	cursor: pointer;
	font-weight: 600;
	transition: var(--transition);
	background: transparent;
	border: none;
	color: var(--gray);
}

.toggle-btn.active {
	background: var(--primary);
	color: white;
}

.plans {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.plan {
	background: white;
	border-radius: var(--border-radius);
	padding: 30px 25px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: var(--transition);
	position: relative;
	border: 2px solid #e9ecef;
}

.plan.selected {
	border-color: var(--primary);
	box-shadow: 0 10px 25px rgba(33, 150, 243, 0.15);
	transform: translateY(-5px);
}

.plan.popular {
	/*border-color: var(--primary);*/
}

.popular-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--primary);
	color: white;
	padding: 5px 20px;
	border-radius: 30px;
	font-size: 0.9rem;
	font-weight: 600;
}

.plan h3 {
	font-size: 1.5rem;
	margin-bottom: 10px;
	text-align: center;
}

.plan-subtitle {
	color: var(--gray);
	font-size: 0.9rem;
	text-align: center;
	margin-bottom: 15px;
	line-height: 1.4;
	min-height: 40px;
}

.plan .price {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 20px;
	text-align: center;
}

.plan .price span {
	font-size: 1rem;
	color: var(--gray);
}

.plan ul {
	list-style: none;
	margin-bottom: 25px;
    padding-left: 20px;
	text-align: left;
}

.plan ul li {
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.plan ul li i {
	color: var(--success);
}

.plan ul li .fa-times {
	color: #dc3545;
}

.app-action {
	text-align: center;
	padding: 12px;
	background: #f8f9fa;
	border-radius: 8px;
	margin-top: 15px;
	font-weight: 500;
	color: var(--primary);
}

.app-action i {
	margin-right: 8px;
	color: var(--primary);
}

.credits-container {
	display: grid;
	grid-template-columns: 2fr 3fr;
	gap: 40px;
}

.credits-header {
	margin-bottom: 0;
}

.credits-header h3 {
	font-size: 1.8rem;
	margin-bottom: 10px;
	text-align: left;
}

.credits-header p {
	color: var(--gray);
	font-size: 1rem;
	max-width: 100%;
	margin: 0;
}

.credits-options {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
}

.credit-option {
	background: #f8f9fa;
	border-radius: 8px;
	padding: 25px 15px;
	text-align: center;
	cursor: pointer;
	transition: var(--transition);
	border: 2px solid transparent;
}

.credit-option:hover {
	background: #e9ecef;
}

.credit-option.selected {
	border-color: var(--primary);
	background: rgba(33, 150, 243, 0.05);
}

.credit-amount {
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 5px;
}

.credit-price {
	color: var(--primary);
	font-weight: 600;
	font-size: 1.2rem;
}

.credits-action {
	grid-column: 1 / -1;
	text-align: center;
}

/* CTA Section */
.cta {
	padding: 100px 0;
	background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
	color: white;
	text-align: center;
	border-radius: 30px;
	margin: 80px 0;
}

.cta h2 {
	font-size: 2.5rem;
	margin-bottom: 20px;
}

.cta p {
	font-size: 1.2rem;
	max-width: 700px;
	margin: 0 auto 40px;
	opacity: 0.9;
}

.cta .btn {
	background: white;
	color: var(--primary);
}

.cta .btn:hover {
	background: rgba(255, 255, 255, 0.9);
}

/*=================================================================================*/
/* Contact                                                                         */
/*=================================================================================*/
.contact {
	background-color: #f8f9fa;
	color: #333;
	line-height: 1.6;
}
.contact .page-header {
	text-align: center;
	padding: 60px 0 40px;
}
.contact .page-header h1 {
	font-size: 42px;
	margin-bottom: 15px;
	color: #2c3e50;
}
.contact .page-header p {
	font-size: 18px;
	color: #7f8c8d;
	max-width: 700px;
	margin: 0 auto;
}

.contact-container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 20px;
}

.contact-section {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin-bottom: 60px;
}

.contact-info {
	flex: 1;
	min-width: 300px;
}

.contact-card {
	background: white;
	border-radius: 12px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	padding: 30px;
	transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact-header {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
}

.contact-header i {
	font-size: 40px;
	color: #3498db;
}

.contact-header h2 {
	font-size: 28px;
	color: #2c3e50;
}

.email-container {
	background: #f8f9fa;
	border-radius: 8px;
	padding: 20px;
	margin: 25px 0;
	text-align: center;
	border: 1px solid #e9ecef;
}

.email-address {
	font-size: 24px;
	font-weight: 600;
	color: #3498db;
	margin: 10px 0;
	word-break: break-all;
}

.copy-btn {
	background: #3498db;
	color: white;
	border: none;
	padding: 8px 20px;
	border-radius: 50px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.copy-btn:hover {
	background: #2980b9;
	transform: translateY(-2px);
}

.response-info {
	margin-top: 25px;
	padding: 15px;
	background: #e8f4fd;
	border-radius: 8px;
	border-left: 4px solid #3498db;
}

.response-info h3 {
	color: #2c3e50;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.response-info p {
	color: #5a6c7d;
}
/*=================================================================================*/


/*=================================================================================*/
/* policy/terms                                                                   */
/*=================================================================================*/

.policy {
	background-color: #f8f9fa;
	color: #333;
	line-height: 1.6;
}

.policy .page-header {
	text-align: center;
	padding: 30px 0;
	margin-top: 20px;
}

.policy .page-header h1 {
	font-size: 2.5rem;
	color: #2c3e50;
	margin-bottom: 10px;
}
		
.policy .last-update {
	color: #7f8c8d;
	font-size: 1rem;
	margin-bottom: 20px;
}

.policy .intro {
	background-color: white;
	border-radius: 10px;
	padding: 25px;
	margin-bottom: 30px;
}
.policy .intro p {
	font-size: 1.04rem;
	color: #555;
}

.policy .important-notice {
	background-color: #fff3cd;
	border: 1px solid #ffeaa7;
	border-radius: 5px;
	padding: 20px;
	margin-bottom: 30px;
	color: #856404;
}
.policy .important-notice p {
	margin-bottom: 10px;
	font-weight: 500;
}

.policy .policy-section {
	background-color: white;
	border-radius: 10px;
	padding: 30px;
	margin-bottom: 30px;
}

.policy .policy-section-title {
	font-size: 1.6rem;
	color: #2c3e50;
	margin-bottom: 20px;
	padding-bottom: 10px;
	/*border-bottom: 2px solid #eaeaea;*/
}

.policy .subsection {
	margin-bottom: 25px;
}
.policy .subsection-title {
	font-size: 1.3rem;
	color: #34495e;
	margin-bottom: 10px;
}

.policy .policy-container p {
	margin-bottom: 15px;
	color: #555;
}
.policy .policy-container ul, ol {
	margin-left: 20px;
	margin-bottom: 15px;
	color: #555;
}
.policy .policy-container li {
	margin-bottom: 8px;
}

.policy .highlight {
	background-color: #f8f9fa;
	padding: 15px;
	border-left: 4px solid #3498db;
	margin: 15px 0;
	border-radius: 0 5px 5px 0;
}

.privacy-link {
	color: #3498db;
	text-decoration: none;
	font-weight: 500;
}
.privacy-link:hover {
	color: #3498db;
}

.email-link {
	color: #3498db;
	text-decoration: none;
	font-weight: 500;
}

/*=================================================================================*/

/* FAQ Section */
.faq-section {
	margin-bottom: 60px;
}

.faq-section .section-title {
	text-align: center;
	margin-bottom: 40px;
}

.faq-section .section-title h2 {
	font-size: 36px;
	color: #2c3e50;
	margin-bottom: 15px;
}

.faq-section .section-title p {
	color: #7f8c8d;
	max-width: 700px;
	margin: 0 auto;
}

.faq-item {
	background: white;
	border-radius: 8px;
	margin-bottom: 15px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.05);
	overflow: hidden;
}

.faq-question {
	padding: 20px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 600;
	color: #2c3e50;
}

.faq-answer {
	padding: 0 20px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-answer {
	padding: 0 20px 20px;
	max-height: 500px;
}

.faq-question i {
	transition: transform 0.3s;
}

.faq-item.active .faq-question i {
	transform: rotate(180deg);
}


/* Footer */
footer {
	background: var(--dark);
	color: white;
	padding: 50px 0 30px;
}

.footer-content-text {
	text-align: center;
	margin-bottom: 30px;
}

.footer-content {
	display: grid;
	/*grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));*/
	grid-template-columns: 2fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 50px;
}

.footer-column h3 {
	font-size: 1.2rem;
	margin-bottom: 25px;
	position: relative;
}

.footer-column h3::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -10px;
	width: 40px;
	height: 3px;
	background: var(--primary);
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: var(--transition);
}

.footer-links a:hover {
	color: white;
	padding-left: 5px;
}

.social-links {
	display: flex;
	gap: 15px;
	margin-top: 20px;
}

.social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	color: white;
	transition: var(--transition);
}

.social-links a:hover {
	background: var(--primary);
	transform: translateY(-5px);
}

.footer-bottom {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
	.hero h1 {
		font-size: 2.8rem;
	}
	
	.feature {
		flex-direction: column !important;
		gap: 30px;
	}
	
	.props-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.credits-container {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.credits-header h3,
	.credits-header p {
		text-align: center;
	}
}

@media (max-width: 768px) {
	.navbar {
		flex-direction: column;
		gap: 20px;
	}
	
	.nav-links {
		gap: 15px;
		flex-wrap: wrap;
		justify-content: center;
	}
	
	.hero h1 {
		font-size: 2.2rem;
	}
	
	.hero-buttons {
		flex-direction: column;
		align-items: center;
	}
	
	.btn {
		width: 100%;
		max-width: 250px;
	}
	
	.section-title h2 {
		font-size: 2rem;
	}
	
	.plans {
		grid-template-columns: 1fr;
	}
	
	.props-grid {
		grid-template-columns: 1fr;
	}
	
	.credits-options {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.credits-options {
		grid-template-columns: 1fr;
	}
}