.price-calc {
	padding: 0 0 56px;
}

.price-calc__card {
	max-width: none;
	width: 100%;
	margin: 0 0 56px;
	background: #f5f0eb;
	border-radius: 16px;
	padding: 32px 32px 36px;
	box-shadow: 5.7px 5.7px 18px rgba(66, 53, 41, 0.12);
}

.price-calc__tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 20px;
}

.price-calc__tab {
	flex: 1 1 160px;
	min-height: 48px;
	padding: 12px 16px;
	border: 2px solid transparent;
	border-radius: 10px;
	background: #fff;
	color: #513e37;
	font-family: Golos, serif;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.price-calc__tab:hover {
	border-color: #ffd800;
}

.price-calc__tab.is-active {
	background: #ffd800;
	border-color: #ffd800;
	color: #423c3a;
}

.price-calc__intro {
	margin: 0 0 24px;
	color: #655e5b;
	font-family: Golos, serif;
	line-height: 1.55;
	text-align: center;
}

.price-calc__form {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.price-calc__panel {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.price-calc__field {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.price-calc__label {
	color: #513e37;
	font-family: Golos, serif;
	font-size: 15px;
	font-weight: 600;
}

.price-calc__input,
.price-calc__select {
	width: 100%;
	margin: 0;
	box-sizing: border-box;
}

.price-calc .price-calc__input.form__input,
.price-calc .price-calc__select.form__input {
	padding: 14px 18px;
	height: auto;
}

.price-calc__choices {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.price-calc__choice {
	display: inline-flex;
	align-items: center;
	cursor: pointer;
}

.price-calc__choice input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.price-calc__choice span {
	display: inline-block;
	padding: 10px 16px;
	border-radius: 8px;
	background: #fff;
	border: 2px solid #e0d6d6;
	color: #423c3a;
	font-family: Golos, serif;
	font-size: 14px;
	font-weight: 600;
	transition: border-color 0.2s, background 0.2s;
}

.price-calc__choice input:checked + span,
.price-calc__choice input:focus-visible + span {
	border-color: #ffd800;
	background: #fff9d6;
}

.price-calc__submit {
	align-self: center;
	min-width: 280px;
	margin-top: 8px;
	padding: 16px 32px;
}

.price-calc__result {
	margin-top: 28px;
	padding-top: 24px;
	border-top: 1px solid rgba(81, 62, 55, 0.12);
	text-align: center;
}

.price-calc__result-label {
	margin: 0 0 8px;
	color: #655e5b;
	font-family: Golos, serif;
	font-size: 16px;
}

.price-calc__result-value {
	margin: 0 0 10px;
	color: #513e37;
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 700;
	line-height: 1.15;
}

.price-calc__result-note {
	margin: 0 0 12px;
	color: #423c3a;
	font-family: Golos, serif;
	line-height: 1.5;
}

.price-calc__disclaimer {
	margin: 0;
	color: #8a817c;
	font-family: Golos, serif;
	font-size: 13px;
	line-height: 1.45;
}

.price-calc__tariffs {
	margin-bottom: 48px;
}

.price-calc__tariffs-title,
.price-calc__steps-title {
	margin: 0 0 24px;
	color: #513e37;
	font-size: clamp(26px, 3vw, 34px);
	text-align: center;
}

.price-calc__tariffs-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.price-calc__tariff {
	display: flex;
	flex-direction: column;
	padding: 24px 20px;
	border-radius: 14px;
	background: #f4f4f4;
	border-top: 3px solid #e0d6d6;
}

.price-calc__tariff-name {
	margin: 0 0 8px;
	color: #513e37;
	font-size: 20px;
}

.price-calc__tariff-price {
	margin: 0 0 12px;
	color: #ffd800;
	font-size: 22px;
	font-weight: 700;
	text-shadow: 0 1px 0 rgba(66, 53, 41, 0.15);
}

.price-calc__tariff-text {
	margin: 0 0 18px;
	flex: 1 1 auto;
	color: #655e5b;
	font-family: Golos, serif;
	font-size: 15px;
	line-height: 1.5;
}

.price-calc__tariff-link {
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 132px;
	text-align: center;
}

.price-calc__steps {
	max-width: none;
	width: 100%;
	margin: 0;
}

.price-calc__steps-list {
	margin: 0;
	padding-left: 1.2em;
	color: #423c3a;
	font-family: Golos, serif;
	line-height: 1.65;
}

.price-calc__steps-list li + li {
	margin-top: 10px;
}

.price-calc-order {
	padding-top: 48px;
}

@media (max-width: 991px) {
	.price-calc__tariffs-grid {
		grid-template-columns: 1fr;
	}

	.price-calc__card {
		padding: 24px 20px 28px;
	}
}

@media (max-width: 575px) {
	.price-calc__tab {
		flex: 1 1 100%;
	}

	.price-calc__submit {
		width: 100%;
		min-width: 0;
	}

	.price-calc__choice span {
		padding: 9px 12px;
		font-size: 13px;
	}
}
