/* Modern Landing Page Styles */
:root {
	--primary-color: #2563eb;
	--secondary-color: #1e40af;
	--accent-color: #f59e0b;
	--success-color: #10b981;
	--text-dark: #1f2937;
	--text-light: #6b7280;
	--bg-light: #f8fafc;
	--bg-white: #ffffff;
	--border-color: #e5e7eb;
	--shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
	--gradient-primary: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
	--gradient-accent: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
	--gradient-hero: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
	--gradient-secondary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	--glass-border: rgba(0, 0, 0, 0.1);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Smooth scrolling */
html {
	scroll-behavior: smooth;
}

body {
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		sans-serif;
	line-height: 1.6;
	color: var(--text-dark);
	background-color: var(--bg-white);
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

h2 {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 3rem;
	color: var(--text-dark);
	background: var(--gradient-secondary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes floating {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-20px);
	}
}

@keyframes pulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Hero Section */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--gradient-hero);
}

.hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	position: relative;
	z-index: 1;
}

.welcome-text {
	img {
		width: auto;
		height: 24px;
		display: inline-block;
		vertical-align: baseline;
	}
}

.welcome-countdown {
	display: inline-block;
	padding: 0.25rem 1rem;
	border-radius: 0.25rem;
	color: #fff;
	background-color: crimson;
	transform: rotate(-3deg);
}

.hero-text h1 {
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	animation: fadeInUp 1s ease-out 0.2s both;
}

.highlight {
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-subtitle {
	font-size: 1.25rem;
	color: var(--text-light);
	margin-bottom: 2rem;
	animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-features {
	display: grid;
	gap: 1rem;
	margin-bottom: 2.5rem;
	animation: fadeInUp 1s ease-out 0.6s both;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-weight: 500;

	i {
		color: var(--primary-color);
		font-size: 1.1rem;
	}
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	animation: fadeInUp 1s ease-out 0.8s both;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.875rem 1.5rem;
	border-radius: 0.5rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	cursor: pointer;
}

.btn-primary {
	background: var(--gradient-primary);
	color: white;
	box-shadow: var(--shadow);

	&:hover {
		transform: translateY(-2px);
		box-shadow: var(--shadow-lg);
	}
}

.btn-secondary {
	background: var(--bg-white);
	color: var(--primary-color);
	border-color: var(--primary-color);

	&:hover {
		background: var(--primary-color);
		color: white;
		transform: translateY(-2px);
	}
}

.btn-accent {
	background: var(--gradient-accent);
	color: white;
	box-shadow: var(--shadow);

	&:hover {
		transform: translateY(-2px);
		box-shadow: var(--shadow-lg);
	}
}

.btn-large {
	padding: 1rem 2rem;
	font-size: 1.125rem;
}

.floating-image {
	width: 100%;
	height: auto;
	border-radius: 1rem;
	animation: floating 3s ease-in-out infinite;

	&:hover {
		animation-play-state: paused;
		transform: scale(1.02);
	}
}

.phones {
	padding: 5rem 0;

	.compatible {
		display: flex;
		flex-wrap: wrap;
		gap: 3rem;
		align-items: center;
		justify-content: center;

		img {
			width: auto;
			height: 3rem;
			display: block;
		}
	}
}

/* Benefits Section */
.benefits {
	padding: 5rem 0;
	background: var(--bg-light);
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
}

.benefit-icon {
	width: 4rem;
	height: 4rem;
	margin: 0 auto 1.5rem;
	background: var(--gradient-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.5rem;
	transition: all 0.3s ease;
}

.benefit-card {
	background: var(--bg-white);
	padding: 2rem;
	border-radius: 1rem;
	text-align: center;
	box-shadow: var(--shadow);
	transition: all 0.3s ease;
	animation: fadeInUp 1s ease-out;

	&:hover {
		transform: translateY(-5px);
		box-shadow: var(--shadow-lg);

		.benefit-icon {
			animation: pulse 0.6s ease-in-out;
		}
	}

	h3 {
		font-size: 1.5rem;
		font-weight: 600;
		margin-bottom: 1rem;
		color: var(--text-dark);
	}

	p {
		color: var(--text-light);
		line-height: 1.6;
	}
}

/* Features Section */
.features {
	padding: 5rem 0;
	background: var(--bg-white);
}

.features-grid {
	display: grid;
	gap: 5rem;
}

.feature-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;

	&.reverse {
		direction: rtl;

		> * {
			direction: ltr;
		}
	}
}

.feature-content {
	h3 {
		font-size: 2rem;
		font-weight: 600;
		margin-bottom: 1rem;
		color: var(--text-dark);
	}

	p {
		font-size: 1.125rem;
		color: var(--text-light);
		margin-bottom: 1.5rem;
		line-height: 1.7;
	}

	ul {
		list-style: none;
	}

	li {
		display: flex;
		align-items: center;
		gap: 0.75rem;
		margin-bottom: 0.5rem;
		color: var(--text-dark);

		i {
			color: var(--success-color);
			font-size: 1rem;
		}
	}
}

.feature-image {
	position: relative;
	overflow: hidden;
	border-radius: 0.5rem;
	box-shadow: var(--shadow-lg);
	transition: all 0.3s ease;

	&:hover {
		transform: scale(1.02);
		box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	}

	img {
		width: 100%;
		height: auto;
		display: block;
	}
}

/* Steps Section */
.steps {
	padding: 5rem 0;
	background: var(--bg-light);
}

.steps-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.step-number {
	width: 3rem;
	height: 3rem;
	margin: 0 auto 1.5rem;
	background: var(--gradient-primary);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 700;
	transition: all 0.3s ease;
}

.step-card {
	background: var(--bg-white);
	padding: 2rem;
	border-radius: 1rem;
	text-align: center;
	box-shadow: var(--shadow);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;

	&::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 4px;
		background: var(--gradient-primary);
		transition: all 0.3s ease;
	}

	&:hover {
		transform: translateY(-5px);
		box-shadow: var(--shadow-lg);

		&::before {
			height: 100%;
			opacity: 0.05;
		}

		.step-number {
			transform: scale(1.1);
		}
	}
}

.step-content {
	h3 {
		font-size: 1.5rem;
		font-weight: 600;
		margin-bottom: 1rem;
		color: var(--text-dark);
	}

	p {
		color: var(--text-light);
		margin-bottom: 1.5rem;
		line-height: 1.6;
	}
}

.step-image {
	width: 100%;
	height: auto;
	border-radius: 0.5rem;
	box-shadow: var(--shadow);
	transition: all 0.3s ease;

	&:hover {
		transform: scale(1.05);
	}
}

/* Testimonials Section */
.testimonials {
	padding: 5rem 0;
	background: var(--bg-white);
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
}

.testimonial-card {
	background: var(--bg-light);
	padding: 2rem;
	border-radius: 1rem;
	border-left: 4px solid var(--primary-color);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;

	&::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 0;
		height: 100%;
		background: linear-gradient(90deg, var(--primary-color), transparent);
		opacity: 0.1;
		transition: all 0.3s ease;
	}

	&:hover {
		transform: translateY(-3px);
		box-shadow: var(--shadow-lg);

		&::before {
			width: 100%;
		}
	}
}

.stars {
	display: flex;
	gap: 0.25rem;
	margin-bottom: 1rem;
	color: var(--accent-color);
}

.testimonial-content {
	p {
		font-style: italic;
		color: var(--text-dark);
		margin-bottom: 1rem;
		line-height: 1.6;
		position: relative;
		z-index: 1;

		&::before {
			content: '"';
			font-size: 2rem;
			color: var(--primary-color);
			position: absolute;
			left: -1rem;
			top: -0.5rem;
			opacity: 0.3;
		}
	}
}

.testimonial-author {
	color: var(--text-light);
	font-size: 0.9rem;
	position: relative;
	z-index: 1;
}

/* Exclusive Offer Section */
.exclusive-offer {
	padding: 5rem 0;
	background: var(--gradient-hero);
	position: relative;
	overflow: hidden;

	&::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23f59e0b" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
		opacity: 0.1;
	}
}

.offer-content {
	text-align: center;
	position: relative;
	z-index: 1;
}

.offer-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--gradient-accent);
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 2rem;
	font-weight: 600;
	font-size: 0.9rem;
	margin-bottom: 1.5rem;
	animation: pulse 2s ease-in-out infinite;
}

.offer-products {
	display: flex;
	gap: 2rem;
	justify-content: center;
	max-width: 600px;
	margin: 0 auto;
}

.product-card {
	flex: 0 0 360px;
	background: var(--bg-white);
	padding: 2rem;
	border-radius: 1rem;
	box-shadow: var(--shadow);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;

	&.featured {
		border: 2px solid var(--accent-color);
		transform: scale(1.05);
	}

	&:hover {
		transform: translateY(-5px);
		box-shadow: var(--shadow-lg);
	}

	&.featured:hover {
		transform: scale(1.05) translateY(-5px);
	}

	h3 {
		font-size: 1.5rem;
		font-weight: 600;
		margin-bottom: 1rem;
		color: var(--text-dark);
	}
}

.featured-badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: var(--gradient-accent);
	color: white;
	padding: 0.25rem 0.75rem;
	border-radius: 1rem;
	font-size: 0.75rem;
	font-weight: 600;
}

.partner-logo,
.product-image {
	width: auto;
	height: 128px;
	object-fit: contain;
	margin: 0 auto 1rem;
	display: block;
}

.price {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.original-price {
	color: var(--text-light);
	text-decoration: line-through;
	font-size: 1rem;
}

.sale-price {
	color: var(--primary-color);
	font-size: 1.5rem;
	font-weight: 700;
}

/* CTA Section */
.cta {
	padding: 5rem 0;
	background: var(--text-dark);
	color: white;
	text-align: center;
}

.cta-content {
	p {
		font-size: 1.25rem;
		opacity: 0.9;
		margin-bottom: 2.5rem;
	}
}

.cta-buttons {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
}

.cta-features {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2rem;
}

.cta-feature {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9rem;
	opacity: 0.8;

	i {
		color: var(--success-color);
	}
}

/* Download Section */
.download {
	padding: 4rem 0;
	text-align: center;

	p {
		font-size: 1.2rem;
		color: var(--text-secondary);
		margin-bottom: 3rem;
	}

	.download-options {
		display: flex;
		justify-content: center;
		gap: 2rem;
		flex-wrap: wrap;

		.download-card {
			background: var(--card-bg);
			backdrop-filter: blur(20px);
			border: 1px solid var(--glass-border);
			border-radius: 20px;
			padding: 2rem;
			min-width: 350px;
			transition: all 0.3s ease;

			&:hover {
				transform: translateY(-3px);
				box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
			}

			.platform-icon {
				font-size: 3rem;
				margin-bottom: 1rem;
			}

			h3 {
				margin-bottom: 1rem;
			}

			.download-btn {
				background: var(--gradient-secondary);
				color: white;
				padding: 0.75rem 1.5rem;
				border: none;
				border-radius: 50px;
				font-weight: 600;
				cursor: pointer;
				transition: all 0.3s ease;
				text-decoration: none;
				display: inline-block;
				width: 100%;

				&:hover {
					transform: translateY(-2px);
					box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
				}
			}
		}
	}
}

.what-can-do {
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 20px;
	text-align: center;

	.dpc-grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 30px;

		.dpc-item {
			background: #f9fafb;
			padding: 30px 20px;
			border-radius: 12px;
			box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
			border: 1px solid var(--glass-border);
			transition: transform 0.2s ease;

			&:hover {
				transform: translateY(-4px);
			}

			& i {
				color: #2563eb;
				margin-bottom: 15px;
				display: inline-block;
			}

			& h3 {
				font-size: 1.2rem;
				color: #111827;
				margin-bottom: 12px;
			}

			& p {
				font-size: 0.95rem;
				color: #4b5563;
				line-height: 1.5;
			}
		}
	}
}

@media (max-width: 992px) {
	.what-can-do .dpc-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.what-can-do .dpc-grid {
		grid-template-columns: 1fr;
	}
}

/* Footer */
.footer {
	background: var(--bg-light);
	padding: 3rem 0 1rem;
}

.footer-content {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	margin-bottom: 2rem;

	.footer-section {
		min-width: 160px;

		&:first-child {
			margin-right: auto;
		}
	}

	h4 {
		color: var(--text-dark);
		font-weight: 600;
		margin-bottom: 1rem;
	}

	ul {
		list-style: none;

		li {
			margin-bottom: 0.5rem;

			a {
				color: var(--text-light);
				text-decoration: none;
				transition: color 0.3s ease;

				&:hover {
					color: var(--primary-color);
				}
			}
		}
	}
}

.footer-bottom {
	border-top: 1px solid var(--border-color);
	padding-top: 2rem;
	text-align: center;
	color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
	.container {
		padding: 0 1rem;
	}

	.hero-content {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}

	.hero-text h1 {
		font-size: 2.5rem;
	}

	.hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.btn {
		width: 100%;
		justify-content: center;
		max-width: 300px;
	}

	.benefits-grid,
	.testimonials-grid {
		grid-template-columns: 1fr;
	}

	.feature-row {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.feature-row.reverse {
		direction: ltr;
	}

	.steps-grid {
		grid-template-columns: 1fr;
	}

	.offer-products {
		grid-template-columns: 1fr;
	}

	.product-card.featured {
		transform: none;
	}

	.cta-features {
		flex-direction: column;
		gap: 1rem;
	}

	.footer-content {
		.footer-section:first-child {
			width: 100%;
		}
	}
}

@media (max-width: 480px) {
	.hero-text h1 {
		font-size: 2rem;
	}

	.benefits h2,
	.features h2,
	.steps h2,
	.testimonials h2,
	.exclusive-offer h2,
	.cta-content h2 {
		font-size: 2rem;
	}

	.hero-features {
		grid-template-columns: 1fr;
	}

	.feature-content h3 {
		font-size: 1.5rem;
	}

	.footer-content {
		flex-direction: column;
	}
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/* High contrast mode */
@media (prefers-contrast: high) {
	:root {
		--text-light: #000000;
		--border-color: #000000;
	}

	.btn {
		border-width: 2px;
	}
}

/* Focus styles for keyboard navigation */
.btn:focus,
a:focus {
	outline: 2px solid var(--primary-color);
	outline-offset: 2px;
}

/* Print styles */
@media print {
	.hero-background,
	.exclusive-offer::before {
		display: none;
	}

	.btn {
		border: 1px solid currentColor;
		background: transparent !important;
		color: currentColor !important;
	}
}
