﻿* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', sans-serif;
	background: #f8fafc;
	color: #0f172a;
	line-height: 1.5;
}

.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

.header {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
	color: white;
	padding: 64px 0 48px;
	text-align: center;
	border-bottom: 4px solid #2dd4bf;
}

	.header h1 {
		font-size: 2.5rem;
		font-weight: 700;
		margin-bottom: 16px;
	}

	.header .badge {
		display: inline-block;
		background: #2dd4bf20;
		backdrop-filter: blur(4px);
		padding: 6px 16px;
		border-radius: 40px;
		font-size: 0.9rem;
		margin-bottom: 20px;
		border: 1px solid #2dd4bf40;
	}

.subhead {
	font-size: 1.25rem;
	opacity: 0.9;
	max-width: 700px;
	margin: 0 auto;
}

.section {
	padding: 60px 0;
	border-bottom: 1px solid #e2e8f0;
}

.section-title {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 32px;
	text-align: center;
	color: #0f172a;
}

	.section-title span {
		background: linear-gradient(120deg, #0f172a, #2dd4bf);
		background-clip: text;
		-webkit-background-clip: text;
		color: transparent;
	}

.price-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: center;
	margin-top: 20px;
}

.price-card {
	background: white;
	border-radius: 28px;
	padding: 32px 28px;
	flex: 1;
	min-width: 260px;
	box-shadow: 0 20px 35px -12px rgba(0,0,0,0.08);
	transition: transform 0.2s;
	border: 1px solid #e2e8f0;
	text-align: center;
}

	.price-card:hover {
		transform: translateY(-6px);
	}

	.price-card h3 {
		font-size: 1.8rem;
		margin-bottom: 12px;
	}

	.price-card .price {
		font-size: 2.2rem;
		font-weight: 800;
		margin: 16px 0 8px;
	}

	.price-card .note {
		color: #2dd4bf;
		font-weight: 600;
		background: #f0fdfa;
		display: inline-block;
		padding: 4px 12px;
		border-radius: 40px;
		font-size: 0.85rem;
	}

.features-list {
	background: white;
	border-radius: 28px;
	padding: 32px;
	box-shadow: 0 20px 35px -12px rgba(0,0,0,0.05);
	border: 1px solid #e2e8f0;
}

.two-columns {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;
	margin-top: 20px;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 0;
	border-bottom: 1px solid #f1f5f9;
	flex-wrap: wrap;
}

.feature-icon {
	font-size: 1.5rem;
	min-width: 36px;
	text-align: center;
}

.feature-text {
	font-weight: 500;
	flex: 1;
	min-width: 140px;
}

.feature-link {
	background: #f1f5f9;
	padding: 5px 12px;
	border-radius: 30px;
	font-size: 0.75rem;
	font-weight: 500;
	text-decoration: none;
	color: #0f172a;
	transition: all 0.2s;
	white-space: nowrap;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin-left: auto;
}

	.feature-link:hover {
		background: #2dd4bf;
	}

.extra {
	color: #f97316;
	font-weight: 600;
	background: #fff7ed;
	border-radius: 40px;
	padding: 2px 10px;
	font-size: 0.7rem;
	margin-left: 8px;
	white-space: nowrap;
}

.warning-pdf {
	background: #fffbeb;
	border-left: 4px solid #f59e0b;
	padding: 12px 20px;
	border-radius: 12px;
	margin: 16px 0 8px;
	font-size: 0.85rem;
	color: #b45309;
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

	.warning-pdf span:first-child {
		font-size: 1.2rem;
	}

.deadline-box {
	background: linear-gradient(120deg, #f1f5f9, #ffffff);
	border-radius: 28px;
	padding: 32px;
	text-align: center;
	border-left: 6px solid #2dd4bf;
	margin: 20px 0;
}

	.deadline-box p {
		font-size: 1.2rem;
		margin-bottom: 12px;
	}

.small-note {
	color: #475569;
	font-size: 0.9rem;
	margin-top: 16px;
}

.contact-block {
	text-align: center;
	margin-top: 24px;
}

.phone-number {
	font-size: 2rem;
	font-weight: 700;
	color: #0f172a;
	text-decoration: none;
	display: inline-block;
	margin-bottom: 16px;
	background: #f1f5f9;
	padding: 10px 24px;
	border-radius: 60px;
	transition: all 0.2s;
}

	.phone-number:hover {
		background: #2dd4bf;
	}

.messenger-icons {
	display: flex;
	gap: 20px;
	justify-content: center;
	margin: 20px 0;
	flex-wrap: wrap;
}

	.messenger-icons a {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		background: white;
		padding: 8px 20px;
		border-radius: 40px;
		text-decoration: none;
		color: #0f172a;
		font-weight: 500;
		box-shadow: 0 2px 8px rgba(0,0,0,0.05);
		transition: all 0.2s;
		border: 1px solid #e2e8f0;
	}

		.messenger-icons a:hover {
			transform: translateY(-2px);
			background: #f8fafc;
		}

.max-logo {
	background: #1e293b;
	color: white !important;
}

	.max-logo:hover {
		background: #2dd4bf !important;
		color: #0f172a !important;
	}

.footer {
	background: #0f172a;
	color: #cbd5e1;
	text-align: center;
	padding: 32px 0;
	font-size: 0.9rem;
}

@media (max-width: 768px) {
	.header h1 {
		font-size: 1.8rem;
	}

	.section-title {
		font-size: 1.6rem;
	}

	.price-card .price {
		font-size: 1.8rem;
	}

	.feature-link {
		margin-left: 48px;
		white-space: normal;
	}

	.phone-number {
		font-size: 1.5rem;
	}
}
