* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', sans-serif;
	background: #ffffff;
	color: #111827;
	overflow-x: hidden;
	line-height: 1.5;
}

a {
	text-decoration: none;
	color: inherit;
}

img {
	max-width: 100%;
	display: block;
}

.container {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 24px;
}

.header {
	position: sticky;
	top: 0;
	z-index: 100;
	backdrop-filter: blur(12px);
	background: rgba(255,255,255,0.85);
	border-bottom: 1px solid #f1f5f9;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 0;
}

.logo {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 22px;
	font-weight: 800;
}

.logo-icon {
	width: 42px;
	height: 42px;
	border-radius: 14px;
	background: linear-gradient(135deg, #1677FF, #6A5CFF);
}

.logo-text-secondary {
	color: #1677FF;
}

.text-secondary {
	color: #1677FF;
}

.nav {
	display: flex;
	gap: 32px;
	color: #6B7280;
	font-weight: 500;
}

.menu-toggle {
	display: none;
}

.mobile-menu-toggle {
	display: none;
	width: 42px;
	height: 42px;
	border: none;
	background: transparent;
	cursor: pointer;
	position: relative;
}

.mobile-menu-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	border-radius: 999px;
	background: #111827;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-toggle span + span {
	margin-top: 6px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 28px;
	border-radius: 18px;
	background: linear-gradient(135deg, #1677FF, #6A5CFF);
	color: white;
	font-weight: 700;
	transition: 0.25s ease;
	box-shadow: 0 10px 30px rgba(22,119,255,0.22);
}

.button:hover {
	transform: translateY(-2px);
}

.button.secondary {
	background: #F3F6FB;
	color: #111827;
	box-shadow: none;
}

.hero {
	position: relative;
	padding: 90px 0 70px;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	width: 600px;
	height: 600px;
	right: -180px;
	top: -180px;
	background: radial-gradient(circle, rgba(106,92,255,0.18), transparent 70%);
	z-index: -1;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 60px;
	align-items: center;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #EEF4FF;
	color: #1677FF;
	padding: 10px 16px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 26px;
}

.hero h1 {
	font-size: 68px;
	line-height: 1.02;
	margin-bottom: 28px;
	font-weight: 800;
	letter-spacing: -2px;
}

.hero p {
	font-size: 20px;
	color: #6B7280;
	margin-bottom: 36px;
	max-width: 620px;
}

.hero-actions {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 36px;
}

.hero-stats {
	display: flex;
	gap: 28px;
	flex-wrap: wrap;
}

.stat-card {
	background: #fff;
	border: 1px solid #EEF2F7;
	padding: 20px;
	border-radius: 22px;
	min-width: 150px;
	box-shadow: 0 12px 40px rgba(15,23,42,0.04);
}

.stat-number {
	font-size: 28px;
	font-weight: 800;
	margin-bottom: 4px;
}

.stat-label {
	color: #6B7280;
	font-size: 14px;
}

.phones {
	position: relative;
	height: 680px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.phone {
	position: absolute;
	width: 320px;
	border-radius: 42px;
	box-shadow: 0 30px 60px rgba(15,23,42,0.18);
	overflow: hidden;
	background: white;
	border: 10px solid #111827;
}

.phone img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.phone.one {
	transform: rotate(-8deg);
	left: 40px;
	top: 80px;
	z-index: 1;
}

.phone.two {
	transform: rotate(8deg);
	right: 20px;
	top: 10px;
	z-index: 2;
}

.section {
	padding: 100px 0;
}

.section-title {
	font-size: 52px;
	line-height: 1.1;
	margin-bottom: 18px;
	font-weight: 800;
	text-align: center;
	letter-spacing: -1px;
}

.section-subtitle {
	text-align: center;
	color: #6B7280;
	max-width: 760px;
	margin: 0 auto 60px;
	font-size: 18px;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	&.content-center {
		justify-content: center;
	}
}


.feature-card {
	background: #fff;
	border-radius: 28px;
	padding: 34px;
	border: 1px solid #EEF2F7;
	box-shadow: 0 15px 40px rgba(15,23,42,0.05);
	transition: 0.25s ease;
}

.feature-card:hover {
	transform: translateY(-6px);
}

.feature-icon {
	width: 68px;
	height: 68px;
	border-radius: 20px;
	background: linear-gradient(135deg, #EEF4FF, #F6F2FF);
	margin-bottom: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
}

.feature-card h3 {
	font-size: 24px;
	margin-bottom: 14px;
}

.feature-card p {
	color: #6B7280;
}

.split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 70px;
	align-items: center;
}

.content-list {
	display: flex;
	flex-direction: column;
	gap: 22px;
	margin-top: 34px;
}

.content-item {
	display: flex;
	gap: 18px;
	align-items: flex-start;
	padding: 20px;
	border-radius: 22px;
	background: #F8FAFC;
}

.content-item-number {
	min-width: 42px;
	height: 42px;
	border-radius: 14px;
	background: linear-gradient(135deg, #1677FF, #6A5CFF);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
}

.showcase {
	background: linear-gradient(180deg, #ffffff 0%, #F5F7FB 100%);
}

.gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.gallery-card {
	background: white;
	border-radius: 28px;
	overflow: hidden;
	border: 1px solid #EEF2F7;
	box-shadow: 0 20px 40px rgba(15,23,42,0.05);
}

.gallery-card img {
	width: 100%;
	height: 520px;
	object-fit: cover;
}

.gallery-content {
	padding: 24px;
}

.cta {
	padding: 120px 0;
}

.cta-box {
	position: relative;
	overflow: hidden;
	border-radius: 40px;
	background: linear-gradient(135deg, #1677FF, #6A5CFF);
	padding: 80px;
	color: white;
	display: grid;
	grid-template-columns: 1fr 420px;
	gap: 40px;
	align-items: center;
}

.cta-box::before {
	content: '';
	position: absolute;
	width: 420px;
	height: 420px;
	background: rgba(255,255,255,0.08);
	border-radius: 50%;
	right: -140px;
	top: -140px;
}

.cta h2 {
	font-size: 56px;
	line-height: 1.05;
	margin-bottom: 24px;
}

.cta p {
	font-size: 20px;
	opacity: 0.92;
	margin-bottom: 34px;
}

.footer {
	border-top: 1px solid #EEF2F7;
	padding: 50px 0;
}

.footer-grid {
	display: flex;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
}

.footer-links {
	display: flex;
	gap: 22px;
	color: #6B7280;
	flex-wrap: wrap;
}

@media (max-width: 1100px) {
	.hero-grid,
	.split,
	.cta-box {
		grid-template-columns: 1fr;
	}

	.features-grid,
	.gallery {
		grid-template-columns: repeat(2, 1fr);
	}

	.phones {
		height: 620px;
	}

	.hero h1 {
		font-size: 56px;
	}
}

@media (max-width: 768px) {
	.nav {
		display: none;
	}

	.header-inner {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
		gap: 16px;
	}

	.mobile-menu-toggle {
		margin-left: auto;
	}

	.header-inner .button {
		width: 100%;
		max-width: none;
	}

	.hero {
		padding-top: 60px;
	}

	.hero h1 {
		font-size: 42px;
	}

	.section-title {
		font-size: 38px;
	}

	.features-grid,
	.gallery {
		grid-template-columns: 1fr;
	}

	.phones {
		height: 460px;
	}

	.phone {
		width: 220px;
	}

	.phone.one {
		left: 0;
	}

	.phone.two {
		right: 0;
	}

	.cta-box {
		padding: 44px 28px;
	}

	.cta h2 {
		font-size: 38px;
	}

	.hero-actions {
		flex-direction: column;
	}

	.header {
		padding: 0 16px;
	}

	.header-inner {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
		gap: 16px;
	}

	.mobile-menu-toggle {
		display: flex;
		align-items: center;
		justify-content: center;
		margin-left: auto;
		flex-direction: column;
	}

	.nav {
		display: none;
		flex-direction: column;
		gap: 14px;
		width: 100%;
		padding: 16px 0 0;
		background: rgba(255,255,255,0.96);
		border-radius: 24px;
	}

	.nav a {
		display: block;
		padding: 12px 0;
	}

	.menu-toggle:checked + .mobile-menu-toggle + .nav {
		display: flex;
	}

	.button {
		width: 100%;
	}
}