.pricing-section {
	background-color: #373637;
	color: #ffffff;
	padding: 180px 80px 200px;
}

.pricing-container {
	max-width: 1920px;
	margin: 0 auto;
}

.section-title-wrapper-right {
	display: flex;
	align-items: flex-end;
	gap: 60px;
	margin-bottom: 80px;
}

.title-line-full {
	border: none;
	height: 2px;
	background-color: #5acafa;
	margin: 0;
	flex-grow: 1;
}

.section-title-wrapper-right .title-text-content {
	text-align: left;
	flex-shrink: 0;
}

.section-title-wrapper-right .pre-title {
	display: block;
	color: #5acafa;
	font-weight: 400;
	font-size: 15px;
	text-transform: uppercase;
	font-family: 'Bebas Neue Cyrillic', sans-serif;
	margin-bottom: 5px;
	line-height: 1;
	text-align: right;
}

.section-title-wrapper-right .section-title {
	font-family: 'Bebas Neue Cyrillic', sans-serif;
	font-weight: 400;
	font-size: 64px;
	line-height: 0.8;
	color: #ffffff;
	text-transform: uppercase;
	margin: 0;
}

.price-table {
	margin-bottom: 70px;
}

.price-table-title {
	font-family: 'Bebas Neue Cyrillic', sans-serif;
	font-weight: 400;
	font-size: 36px;
	text-transform: uppercase;
	color: #ffffff;
	margin-bottom: 25px;
	text-align: left;
}

.price-grid {
	display: grid;
	grid-template-columns: 0.6fr 3fr 1.2fr 1.4fr;
	border: 2px solid #5acafa;
	overflow: hidden;
}

.price-cell {
	padding: 20px 18px;
	text-align: center;
}

.price-cell:not(:nth-child(4n)) {
	border-right: 2px solid #5acafa;
}

.price-cell.header {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 20px;
	text-transform: uppercase;
	border-bottom: 2px solid #5acafa;
}

.price-cell.price {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.5;
	border-bottom: 1px solid rgba(90, 202, 250, 0.35);
}

.price-grid .price-cell.price:nth-last-child(-n + 4) {
	border-bottom: none;
}

.price-cell.price.price-freeze.no-freeze {
}

.price-footnote {
	margin-top: 15px;
	font-size: 14px;
	line-height: 1.4;
	color: #cccccc;
}

.loyalty-list {
	margin: 0;
	padding-left: 20px;
	list-style: disc;
}

.loyalty-list li {
	margin-bottom: 8px;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
}

@media (max-width: 1200px) {
	.pricing-section {
		padding: 120px 5%;
	}

	.section-title-wrapper-right .section-title {
		font-size: 52px;
	}

	.price-table-title {
		font-size: 30px;
	}

	.price-grid {
		grid-template-columns: 0.5fr 2.5fr 1.1fr 1.4fr;
	}

	.price-cell {
		padding: 16px 14px;
	}

	.price-cell.header {
		font-size: 18px;
	}

	.price-cell.price {
		font-size: 16px;
	}
}

@media (max-width: 992px) {
	.pricing-section {
		padding: 120px 30px 140px;
	}

	.section-title-wrapper-right .section-title {
		font-size: 42px;
	}

	.price-table-title {
		font-size: 26px;
	}
}

@media (max-width: 768px) {
	.pricing-section {
		padding: 80px 20px 120px;
	}

	.section-title-wrapper-right {
		gap: 10px;
		margin-bottom: 40px;
	}

	.section-title-wrapper-right .section-title {
		font-size: 32px;
	}

	.price-table-title {
		font-size: 22px;
		text-align: left;
		margin-bottom: 16px;
	}

	.price-grid {
		display: block;
		border: none;
		background: transparent;
	}

	.price-cell.header {
		display: none;
	}

	.price-cell.price {
		display: block;
		text-align: left;
		font-size: 14px;
		padding: 8px 12px;
		border-right: none;
		border-bottom: none;
		background-color: #2f2f30;
	}

	.price-cell.price::before {
		content: '';
		display: none;
	}

	.price-grid .price-cell.price:nth-child(4n + 1) {
		display: none;
	}

	.price-grid .price-cell.price:nth-child(4n + 2) {
		margin-top: 16px;
		border-top: 1px solid rgba(90, 202, 250, 0.4);
		border-radius: 10px 10px 0 0;
		font-weight: 500;
		position: relative;
		padding-top: 10px;
	}

	.price-grid .price-cell.price:nth-child(4n + 2)::before {
		content: 'Вид послуги';
		display: block;
		margin-bottom: 4px;
		font-family: 'Bebas Neue Cyrillic', sans-serif;
		font-size: 11px;
		text-transform: uppercase;
		color: #5acafa;
	}

	.price-grid .price-cell.price:nth-child(4n + 3) {
		font-weight: 600;
		position: relative;
	}

	.price-grid .price-cell.price:nth-child(4n + 3)::before {
		content: 'Вартість';
		display: block;
		margin-bottom: 4px;
		font-family: 'Bebas Neue Cyrillic', sans-serif;
		font-size: 11px;
		text-transform: uppercase;
		color: #5acafa;
	}

	.price-grid .price-cell.price:nth-child(4n + 4) {
		position: relative;
		border-bottom: 1px solid rgba(90, 202, 250, 0.4);
		border-radius: 0 0 10px 10px;
		margin-bottom: 6px;
		font-size: 13px;
		color: #cccccc;
	}

	.price-grid .price-cell.price:nth-child(4n + 4)::before {
		content: 'Заморозка';
		display: block;
		margin-bottom: 4px;
		font-family: 'Bebas Neue Cyrillic', sans-serif;
		font-size: 11px;
		text-transform: uppercase;
		color: #5acafa;
	}

	.price-cell.price.price-freeze.no-freeze {
		font-size: 0;
		padding-top: 4px;
		padding-bottom: 4px;
	}

	.price-cell.price.price-freeze.no-freeze::before {
		content: '';
	}

	.price-footnote {
		text-align: left;
		font-size: 11px;
		margin-top: 10px;
	}

	.loyalty-list li {
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.section-title-wrapper-right .title-text-content {
		text-align: left;
	}

	.section-title-wrapper-right .section-title {
		font-size: 26px;
	}

	.price-table-title {
		font-size: 20px;
		text-align: left;
	}

	.price-cell.price {
		padding: 8px 10px;
		font-size: 14px;
	}
}

.mobile-cta-wrapper {
	display: none;
}

@media (max-width: 992px) {
	.mobile-cta-wrapper {
		display: flex;
		justify-content: center;
		padding: 32px 16px 0;
	}

	.mobile-cta-btn {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		max-width: 360px;
		box-sizing: border-box;
		padding: 14px 32px;
		border: 2px solid #5acafa;

		font-family: 'Bebas Neue Cyrillic', sans-serif;
		font-size: 20px;
		letter-spacing: 0.12em;
		text-transform: uppercase;
		text-align: center;

		background-color: #5acafa;
		color: #000;
		text-decoration: none;
	}

	.mobile-cta-btn:hover {
		background-color: transparent;
		color: #000;
	}
}

@media (max-width: 480px) {
	.mobile-cta-wrapper {
		padding-top: 24px;
	}

	.mobile-cta-btn {
		max-width: 100%;
		font-size: 18px;
		padding: 12px 24px;
		letter-spacing: 0.1em;
	}
}
