<style>

.projects-button {
  display: inline-block;
  padding: 14px 24px;
  color: #ffffff;
  background-color: #1769aa;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.projects-button:hover {
  background-color: #0f4f83;
}

.membrane-order {
  width: 100%;
  margin: 32px 0;
  box-sizing: border-box;
  /*border-radius: 20px;*/
border-radius: 0px;  
/*
background:
    radial-gradient(
      circle at 100% 0%,
      rgba(255, 255, 255, 0.7),
      transparent 34%
    ),
    linear-gradient(135deg, #eef0f2 0%, #d9dde0 100%);
*/
background-color:#f8f9fa;


color: #30363b;
  overflow: hidden;
  /*box-shadow: 0 14px 40px rgba(38, 43, 48, 0.12);*/
}

.membrane-order__content {
  position: relative;
  max-width: 860px;
  padding: 40px 44px 42px;
  box-sizing: border-box;
}

.membrane-order__content::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 0;
  width: 4px;
  height: 88px;
  border-radius: 0 4px 4px 0;
  background: #f28c28;
}

.membrane-order__label {
  display: inline-block;
  margin-bottom: 12px;
  color: #6d747a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.membrane-order__title {
  margin: 0 0 16px;
  color: #252a2e;
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.15;
}

.membrane-order__text {
  max-width: 760px;
  margin: 0 0 26px;
  color: #596168;
  font-size: 17px;
  line-height: 1.6;
}

.membrane-order__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.membrane-order__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid #e87514;
  border-radius: 8px;
  background: #f28c28;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.membrane-order__button:hover {
  border-color: #d9680b;
  background: #e87514;
  box-shadow: 0 8px 20px rgba(226, 112, 18, 0.28);
  transform: translateY(-1px);
}

.membrane-order__button:focus-visible {
  outline: 3px solid rgba(242, 140, 40, 0.35);
  outline-offset: 3px;
}

.membrane-order__note {
  color: #737a80;
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 640px) {
  .membrane-order {
    border-radius: 12px;
  }

  .membrane-order__content {
    padding: 32px 24px 34px;
  }

  .membrane-order__content::before {
    top: 24px;
    height: 72px;
    background: #f28c28;
  }

  .membrane-order__title {
    font-size: 26px;
  }

  .membrane-order__text {
    font-size: 16px;
  }

  .membrane-order__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .membrane-order__button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .membrane-order__button {
    transition: none;
  }

  .membrane-order__button:hover {
    transform: none;
  }
}

	.works-gallery {
		--gallery-orange: #f28c28;
		--gallery-orange-dark: #df7415;
		--gallery-text: #252a2e;
		--gallery-muted: #737a80;
		--gallery-border: #e8ebed;

		margin: 54px 0;
		color: var(--gallery-text);
	}

	.works-gallery__header {
		max-width: 720px;
		margin: 0 auto 30px;
		text-align: center;
	}

	.works-gallery__eyebrow {
		display: inline-block;
		margin-bottom: 10px;
		color: var(--gallery-orange-dark);
		font-size: 12px;
		font-weight: 800;
		letter-spacing: .12em;
		text-transform: uppercase;
	}

	.works-gallery__title {
		margin: 0 0 12px;
		font-size: clamp(27px, 3vw, 38px);
		font-weight: 800;
		line-height: 1.15;
	}

	.works-gallery__subtitle {
		max-width: 610px;
		margin: 0 auto;
		color: var(--gallery-muted);
		font-size: 16px;
		line-height: 1.6;
	}

	.works-gallery__grid {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 24px;
	}

	.works-gallery__card {
		display: flex;
		flex-direction: column;
		min-width: 0;
		margin: 0;
		overflow: hidden;
		border: 1px solid var(--gallery-border);
		border-radius: 14px;
		background: #fff;
		box-shadow: 0 7px 24px rgba(38, 43, 48, .08);
		transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
	}

	.works-gallery__card:hover {
		border-color: rgba(242, 140, 40, .5);
		box-shadow: 0 14px 32px rgba(38, 43, 48, .14);
		transform: translateY(-4px);
	}

	.works-gallery__link {
		position: relative;
		display: block;
		overflow: hidden;
		aspect-ratio: 4 / 3;
		background: #f4f5f5;
	}

	.works-gallery__image {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform .35s ease;
	}

	.works-gallery__card:hover .works-gallery__image {
		transform: scale(1.045);
	}

	.works-gallery__zoom {
		position: absolute;
		right: 14px;
		bottom: 14px;
		display: grid;
		width: 34px;
		height: 34px;
		place-items: center;
		border-radius: 50%;
		background: var(--gallery-orange);
		color: #fff;
		font-size: 23px;
		font-weight: 300;
		line-height: 1;
		opacity: 0;
		transform: translateY(6px);
		transition: opacity .25s ease, transform .25s ease;
	}

	.works-gallery__card:hover .works-gallery__zoom,
	.works-gallery__link:focus-visible .works-gallery__zoom {
		opacity: 1;
		transform: translateY(0);
	}

	.works-gallery__link:focus-visible {
		outline: 3px solid rgba(242, 140, 40, .45);
		outline-offset: -3px;
	}

	.works-gallery__caption {
		display: flex;
		flex-direction: column;
		gap: 5px;
		padding: 17px 18px 19px;
	}

	.works-gallery__caption strong {
		font-size: 16px;
		line-height: 1.35;
	}

	.works-gallery__caption span {
		color: var(--gallery-muted);
		font-size: 13px;
		line-height: 1.4;
	}

	.works-gallery__footer {
		max-width: 760px;
		margin: 30px auto 0;
		padding: 18px 22px;
		border-left: 4px solid var(--gallery-orange);
		background: #fff8f1;
		color: #596168;
		font-size: 15px;
		line-height: 1.55;
	}

	.works-gallery__footer p {
		margin: 0;
	}

	.works-gallery__footer a {
		color: var(--gallery-orange-dark);
		font-weight: 700;
		text-decoration: underline;
		text-decoration-thickness: 1px;
		text-underline-offset: 3px;
	}

	@media (max-width: 900px) {
		.works-gallery__grid {
			grid-template-columns: repeat(2, minmax(0, 1fr));
		}
	}

	@media (max-width: 560px) {
		.works-gallery {
			margin: 38px 0;
		}

		.works-gallery__grid {
			grid-template-columns: 1fr;
			gap: 18px;
		}

		.works-gallery__title {
			font-size: 28px;
		}

		.works-gallery__subtitle {
			font-size: 15px;
		}

		.works-gallery__zoom {
			opacity: 1;
			transform: none;
		}
	}

	@media (prefers-reduced-motion: reduce) {
		.works-gallery__card,
		.works-gallery__image,
		.works-gallery__zoom {
			transition: none;
		}
	}

.membrane-production-block {
	width: 100%;
	margin: 50px 0;
	padding: 65px 20px;
	background: #fffdf9;
	box-sizing: border-box;
border: 1px solid orange;
}

.membrane-production-inner {
	max-width: 1140px;
	margin: 0 auto;
}

.membrane-production-header {
	max-width: 720px;
	margin: 0 auto 50px;
	text-align: center;
}

.membrane-production-label {
	display: block;
	margin-bottom: 12px;
	color: #f28c28;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

.membrane-production-header h2 {
	margin: 0 0 15px;
	color: #1d4456;
	font-size: 34px;
	font-weight: 700;
	line-height: 1.2;
}

.membrane-production-header p {
	margin: 0;
	color: #65777e;
	font-size: 16px;
	line-height: 1.65;
}

.membrane-production-steps {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 70px;
	row-gap: 35px;
}

.membrane-production-steps:before {
	content: "";
	position: absolute;
	top: 27px;
	bottom: 27px;
	left: 50%;
	width: 1px;
	background: #f6d2ad;
	transform: translateX(-50%);
}

.membrane-production-step {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-start;
	min-height: 105px;
	padding: 0 15px;
	background: #fff8f1;
	box-sizing: border-box;
}

.membrane-production-number {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 54px;
	width: 54px;
	height: 54px;
	border: 2px solid #f28c28;
	border-radius: 50%;
	background: #fff8f1;
	color: #f28c28;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
}

.membrane-production-content {
	padding: 3px 0 0 20px;
}

.membrane-production-content h3 {
	margin: 0 0 8px;
	color: #1d4456;
	font-size: 19px;
	font-weight: 700;
	line-height: 1.3;
}

.membrane-production-content p {
	margin: 0;
	color: #65777e;
	font-size: 15px;
	line-height: 1.6;
}

.membrane-production-bottom {
	display: flex;
	align-items: center;
	max-width: 650px;
	margin: 48px auto 0;
	padding: 16px 22px;
	border: 1px solid #f3c28f;
	border-left: 4px solid #f28c28;
	background: #ffffff;
	color: #355865;
	font-size: 15px;
	line-height: 1.5;
	box-sizing: border-box;
}

.membrane-production-check {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 28px;
	width: 28px;
	height: 28px;
	margin-right: 12px;
	border-radius: 50%;
	background: #f28c28;
	color: #ffffff;
	font-size: 17px;
	font-weight: 700;
	line-height: 1;
}

/* Планшеты */
@media (max-width: 900px) {
	.membrane-production-steps {
		column-gap: 25px;
	}

	.membrane-production-content h3 {
		font-size: 17px;
	}
}

/* Мобильные устройства */
@media (max-width: 650px) {
	.membrane-production-block {
		margin: 30px 0;
		padding: 40px 15px;
	}

	.membrane-production-header {
		margin-bottom: 35px;
	}

	.membrane-production-header h2 {
		font-size: 27px;
	}

	.membrane-production-header p {
		font-size: 14px;
	}

	.membrane-production-steps {
		display: block;
	}

	.membrane-production-steps:before {
		left: 27px;
		top: 27px;
		bottom: 27px;
	}

	.membrane-production-step {
		min-height: auto;
		margin-bottom: 28px;
		padding: 0;
		background: #fff8f1;
	}

	.membrane-production-step:last-child {
		margin-bottom: 0;
	}

	.membrane-production-number {
		flex-basis: 54px;
		width: 54px;
		height: 54px;
	}

	.membrane-production-content {
		padding-left: 16px;
	}

	.membrane-production-content h3 {
		font-size: 17px;
	}

	.membrane-production-content p {
		font-size: 14px;
		line-height: 1.55;
	}

	.membrane-production-bottom {
		align-items: flex-start;
		margin-top: 35px;
		padding: 14px;
		font-size: 14px;
	}
}




.works-info {
	width: 100%;
	margin: 50px 0;
	padding: 58px 20px;
	overflow: hidden;
	background:#fffdf9;
	border: 1px solid #f3c28f;
	border-radius: 0;
	box-sizing: border-box;
}

.works-info__inner {
	max-width: 1140px;
	margin: 0 auto;
}

.works-info__header {
	max-width: 720px;
	margin: 0 auto 38px;
	text-align: center;
}

.works-info__eyebrow {
	display: inline-block;
	margin-bottom: 12px;
	color: #f28c28;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1.5px;
	line-height: 1.3;
	text-transform: uppercase;
}

.works-info__title {
	margin: 0 0 15px;
	color: #1d4456;
	font-size: 34px;
	font-weight: 700;
	line-height: 1.2;
}

.works-info__subtitle {
	max-width: 680px;
	margin: 0 auto;
	color: #65777e;
	font-size: 16px;
	line-height: 1.65;
}

.works-info__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.works-info__card {
	display: flex;
	align-items: flex-start;
	min-height: 205px;
	padding: 25px 20px;
	background: #ffffff;
	border: 1px solid #f3c28f;
	border-radius: 4px;
	box-sizing: border-box;
	transition:
		box-shadow .25s ease,
		transform .25s ease,
		border-color .25s ease;
}

.works-info__card:hover {
	border-color: #f28c28;
	box-shadow: 0 8px 22px rgba(242, 140, 40, .12);
	transform: translateY(-3px);
}

.works-info__icon {
	display: flex;
	flex: 0 0 48px;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	color: #ffffff;
	background: #f28c28;
	border-radius: 50%;
}

.works-info__icon svg {
	width: 24px;
	height: 24px;
}

.works-info__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 2px 0 0 17px;
}

.works-info__label {
	margin-bottom: 8px;
	color: #f28c28;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.35;
	text-transform: uppercase;
}

.works-info__value {
	margin-bottom: 10px;
	color: #1d4456;
	font-size: 19px;
	font-weight: 700;
	line-height: 1.3;
}

.works-info__text {
	margin: 0;
	color: #65777e;
	font-size: 14px;
	line-height: 1.6;
}

.works-info__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
	max-width: 850px;
	margin: 35px auto 0;
	padding: 17px 22px;
	background: #ffffff;
	border: 1px solid #f3c28f;
	border-left: 4px solid #f28c28;
	box-sizing: border-box;
}

.works-info__note {
	margin: 0;
	color: #355865;
	font-size: 15px;
	line-height: 1.55;
}

.works-info__note strong {
	display: block;
	margin-bottom: 3px;
	color: #1d4456;
	font-size: 16px;
}

.works-info__button {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 13px 21px;
	color: #ffffff;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
	text-decoration: none;
	background: #f28c28;
	border: 1px solid #f28c28;
	border-radius: 3px;
	transition:
		background .25s ease,
		border-color .25s ease,
		transform .25s ease;
}

.works-info__button:hover {
	color: #ffffff;
	background: #d97818;
	border-color: #d97818;
	transform: translateY(-2px);
}

.works-info__button span {
	font-size: 20px;
	line-height: 1;
}

/* Планшеты */
@media (max-width: 900px) {
	.works-info {
		padding: 48px 20px;
	}

	.works-info__grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.works-info__card {
		min-height: auto;
	}

	.works-info__bottom {
		max-width: none;
	}
}

/* Мобильные устройства */
@media (max-width: 600px) {
	.works-info {
		margin: 30px 0;
		padding: 40px 15px;
	}

	.works-info__header {
		margin-bottom: 30px;
	}

	.works-info__title {
		font-size: 27px;
	}

	.works-info__subtitle {
		font-size: 14px;
	}

	.works-info__card {
		padding: 20px 16px;
	}

	.works-info__content {
		padding-left: 14px;
	}

	.works-info__value {
		font-size: 17px;
	}

	.works-info__text {
		font-size: 14px;
	}

	.works-info__bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 17px;
		margin-top: 30px;
		padding: 15px;
	}

	.works-info__button {
		width: 100%;
		box-sizing: border-box;
	}
}
</style>
