.tariffs-page {
	position: relative;
	min-height: 100vh;
	overflow: hidden;
}

.tariffs-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}

.tariffs-bg-circle {
	position: absolute;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(38, 97, 197, 0.12) 0%, rgba(15, 145, 129, 0.12) 100%);
	animation: floatCircle 25s infinite ease-in-out;
}

.tariffs-bg-circle-1 {
	width: 400px;
	height: 400px;
	top: -100px;
	left: -100px;
	animation-delay: 0s;
}

.tariffs-bg-circle-2 {
	width: 300px;
	height: 300px;
	bottom: -50px;
	right: -50px;
	animation-delay: 6s;
}

.tariffs-bg-circle-3 {
	width: 250px;
	height: 250px;
	top: 30%;
	right: 10%;
	animation-delay: 12s;
}

.tariffs-bg-circle-4 {
	width: 200px;
	height: 200px;
	bottom: 20%;
	left: 5%;
	animation-delay: 18s;
}

@keyframes floatCircle {
	0%, 100% {
		transform: translate(0, 0) scale(1);
		opacity: 0.12;
	}
	33% {
		transform: translate(50px, -50px) scale(1.1);
		opacity: 0.18;
	}
	66% {
		transform: translate(-30px, 30px) scale(0.9);
		opacity: 0.15;
	}
}

.tariffs-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
	position: relative;
	z-index: 1;
}

.tariffs-header {
	text-align: center;
	margin-bottom: 60px;
}

.tariffs-title {
	font-size: 42px;
	font-weight: 700;
	color: #333333;
	line-height: 1.3;
	margin: 0;
	letter-spacing: 1px;
}

.tariffs-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.tariff-card {
	position: relative;
	background: #ffffff;
	border-radius: 24px;
	padding: 40px 30px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: 2px solid transparent;
	display: flex;
	flex-direction: column;
}

.tariff-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 60px rgba(38, 97, 197, 0.15);
	border-color: rgba(38, 97, 197, 0.2);
}

.tariff-card-popular {
	border: 2px solid #2661c5;
	box-shadow: 0 15px 50px rgba(38, 97, 197, 0.2);
}

.tariff-card-popular::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(135deg, #2661c5 0%, #0F9181 100%);
	border-radius: 24px;
	z-index: -1;
	opacity: 0.1;
}

.tariff-popular-badge {
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, #2661c5 0%, #0F9181 100%);
	color: #ffffff;
	padding: 8px 24px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: 0 4px 15px rgba(38, 97, 197, 0.3);
	z-index: 2;
}

.tariff-card-badge {
	display: inline-block;
	background: linear-gradient(135deg, rgba(38, 97, 197, 0.1) 0%, rgba(15, 145, 129, 0.1) 100%);
	color: #2661c5;
	padding: 8px 16px;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 20px;
	align-self: flex-start;
}

.tariff-price {
	margin-bottom: 20px;
	display: flex;
	align-items: baseline;
	gap: 8px;
	flex-wrap: wrap;
}

.tariff-price-amount {
	font-size: 48px;
	font-weight: 900;
	color: #2661c5;
	line-height: 1;
}

.tariff-price-currency {
	font-size: 24px;
	font-weight: 700;
	color: #2661c5;
}

.tariff-price-note {
	font-size: 14px;
	color: #666666;
	font-weight: 400;
}

.tariff-description {
	font-size: 18px;
	font-weight: 600;
	color: #333333;
	margin-bottom: 30px;
	line-height: 1.4;
	min-height: 50px;
}

.tariff-features {
	list-style: none;
	padding: 0;
	margin: 0 0 30px 0;
	flex: 1;
}

.tariff-feature {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 16px;
	font-size: 16px;
	color: #333333;
	line-height: 1.5;
}

.tariff-check-icon {
	flex-shrink: 0;
	color: #ff9800;
	margin-top: 2px;
}

.tariff-button {
	width: 100%;
	padding: 16px 32px;
	background: linear-gradient(135deg, #ff9800 0%, #ffb74d 100%);
	color: #ffffff;
	border: none;
	border-radius: 12px;
	font-size: 18px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.tariff-button:hover {
	background: linear-gradient(135deg, #f57c00 0%, #ff9800 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}

.tariff-button:active {
	transform: translateY(0);
}

.tariff-button-popular {
	background: linear-gradient(135deg, #2661c5 0%, #0F9181 100%);
	box-shadow: 0 4px 15px rgba(38, 97, 197, 0.3);
}

.tariff-button-popular:hover {
	background: linear-gradient(135deg, #1e52a8 0%, #0d7567 100%);
	box-shadow: 0 6px 20px rgba(38, 97, 197, 0.4);
}

@media (max-width: 1200px) {
	.tariffs-grid {
		gap: 30px;
	}
	
	.tariff-card {
		padding: 35px 25px;
	}
	
	.tariff-price-amount {
		font-size: 42px;
	}
}

@media (max-width: 968px) {
	.tariffs-page {
		padding: 60px 0;
	}
	
	.tariffs-container {
		padding: 0 20px;
	}
	
	.tariffs-title {
		font-size: 32px;
	}
	
	.tariffs-grid {
		grid-template-columns: 1fr;
		gap: 30px;
		max-width: 600px;
		margin: 0 auto;
	}
	
	.tariff-card {
		padding: 40px 30px;
	}
	
	.tariff-price-amount {
		font-size: 48px;
	}
}

@media (max-width: 640px) {
	.tariffs-page {
		padding: 40px 0;
	}
	
	.tariffs-title {
		font-size: 24px;
		margin-bottom: 40px;
	}
	
	.tariff-card {
		padding: 30px 20px;
	}
	
	.tariff-price-amount {
		font-size: 40px;
	}
	
	.tariff-description {
		font-size: 16px;
	}
	
	.tariff-feature {
		font-size: 14px;
	}
	
	.tariff-button {
		padding: 14px 24px;
		font-size: 16px;
	}
}
