:root {
	--orange: #f7941d;
	--orange-dark: #e8770a;
	--black: #1a1a1a;
	--gray: #6b6b6b;
	--light-gray: #f5f5f5;
	--white: #ffffff;
	--radius: 14px;
	--container: 1276px;
	--font-head: "Montserrat", sans-serif;
	--font-body: "PT Sans", sans-serif;
	--col-prod: 1fr 1fr 1fr;
}

.uc-hidden-form {
    display: none;
}

* {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--black);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
}
ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
a {
	text-decoration: none;
	color: inherit;
}
button {
	font-family: inherit;
	cursor: pointer;
}
img,
svg {
	display: block;
	max-width: 100%;
}
svg {
	max-width: 100%;
	max-height: 100%;
	width: 100%;
	height: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
}

.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 90px;
}

.section-title {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 2.375rem;
	text-align: center;
	margin: 0 0 20px;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 1.125rem;
	padding: 15px 20px;
	border-radius: 10px;
	border: none;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
	width: max-content;
	text-align: center;
}
.btn:hover {
	transform: translateY(-2px);
}
.btn--white {
	background: var(--white);
	color: var(--black);
}
.btn--white:hover {
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}
.btn--orange {
	background: var(--orange);
	color: var(--white);
}
.btn--orange:hover {
	background: var(--orange-dark);
	box-shadow: 0 10px 24px rgba(247, 148, 29, 0.35);
}
.btn--wide {
	width: 100%;
	max-width: 420px;
	padding: 17px 30px;
}

.arrow {
	flex: 0 0 auto;
	width: 60px;
	height: 60px;
	border: none;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.15s ease, opacity 0.15s ease;
	opacity: 0.85;
	padding: 0;
}
.arrow:hover {
	transform: scale(1.12);
	opacity: 1;
}
.arrow--onorange:hover {
	opacity: 1;
}

/* ===== Header ===== */
.header {
	background: var(--white);
	border-bottom: 1px solid #efefef;
	position: sticky;
	top: 0;
	z-index: 100;
}
.header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 82px;
	gap: 6.25rem;
}
.logo {
	display: flex;
	align-items: center;
	gap: 0;
}
.logo__text {
	display: flex;
	flex-direction: column;
	line-height: 1;
}
.logo__title {
	font-family: var(--font-head);
	font-weight: 800;
	font-size: 3.25rem;
	letter-spacing: 0.5px;
	color: var(--black);
	display: flex;
	align-items: flex-start;
	gap: 0.125rem;
}
.logo__title sup {
	font-size: 0.6875rem;
	font-style: normal;
}
.logo__flick {
	margin: -2px 0 0 -2px;
}
.logo__sub {
	font-size: 0.5625rem;
	letter-spacing: 0.0938rem;
	color: var(--black);
	font-weight: 700;
	margin-left: 2px;
}

.nav {
	display: flex;
	justify-content: right; /*space-between*/
	align-items: center;
	gap: 1.25rem;
	flex: 1;
}
.nav a {
	font-size: 1.5625rem;
	font-weight: normal;
	color: var(--black);
	transition: color 0.15s ease;
}
.nav a:not(.nav__phone):hover {
	color: var(--orange);
}
.nav a.nav__phone {
	color: var(--orange);
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 1.6875rem;
	white-space: nowrap;
}

.burger {
	display: none;
	flex-direction: column;
	gap: 0.3125rem;
	background: none;
	border: none;
	padding: 8px;
}
.burger span {
	width: 24px;
	height: 2px;
	background: var(--black);
	border-radius: 2px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ===== Hero ===== */
.hero {
	position: relative;
	overflow: hidden;
	margin-left: auto;
	margin-right: auto;
}
.hero__inner {
	display: flex;
	gap: 2.5rem;
	position: relative;
	z-index: 1;
	height: 590px;
}
.hero__content {
	color: var(--white);
	padding: 106px 0 86px 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.hero__title {
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 2.5rem;
	line-height: 1.25;
}
.hero__list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.hero__list li {
	font-size: 1.625rem;
	font-weight: 400;
	padding-left: 16px;
	position: relative;
}
.hero__list li::before {
	content: "-";
	position: absolute;
	left: 0;
}
.hero__media {
	flex: 1;
	background-size: auto 90%;
	background-position: bottom right;
	background-repeat: no-repeat;
}
.machine--hero {
	width: 100%;
	max-width: 400px;
	height: auto;
	display: block;
	filter: drop-shadow(0 22px 26px rgba(0, 0, 0, 0.28));
}
.hero .btn {
	font-size: 1.25rem;
	font-weight: 900;
}

/* ===== Offer ===== */
.offer {
	padding: 40px 0;
}
.offer__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.875rem;
	text-align: center;
}
.offer__grid.g-3 {
    grid-template-columns: repeat(3, 1fr);
}
.offer__item svg {
	display: block;
	width: 100%;
	height: 100px;
}
.offer__item p {
	font-weight: 500;
	font-size: 1.5625rem;
	margin: 0;
	color: var(--black);
}

/* ===== Filters ===== */
.filters {
	background: var(--orange);
	padding: 26px 0;
}
.filters__inner {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}
.pill {
	background: var(--white);
	color: var(--orange);
	border: 2px solid transparent;
	border-radius: 10px;
	padding: 14px 30px;
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 1.5625rem;
	transition: border-color 0.15s ease, transform 0.15s ease;
}
.pill:hover {
	transform: translateY(-1px);
}
.pill.is-active {
	border-color: var(--black);
	color: var(--black);
}

/* ===== Products ===== */
.products {
	padding: 30px 0 0;
}
.products__inner {
	display: flex;
	align-items: center;
}
.products__swiper {
	flex: 1 1 auto;
	overflow: hidden;
}
.products__list {
	display: grid;
    grid-template-columns: var(--col-prod);
    gap: 1rem;
	width: 100%;
}
.product-card {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	background: var(--white);
	border: 1.5px solid #666666;
	border-radius: 22px;
	padding: 20px 20px;
	height: 100%;
	transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.product-card:hover {
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
	border-color: #ddd;
}
.machine--card {
	width: 130px;
	height: auto;
	flex: 0 0 auto;
}
.product-card__body {
	min-width: 0;
	display: flex;
	flex-direction: column;
}
.product-card h3 {
	font-family: var(--font-head);
	font-weight: 800;
	font-size: 1.625rem;
	margin: 0;
	color: var(--black);
}
.product-card h3 span {
	color: var(--orange);
}
.product-card__body ul {
	margin-bottom: 20px;
}
.product-card__body li {
	font-size: 0.9375rem;
	color: var(--black);
	padding-left: 14px;
	position: relative;
	margin-bottom: 7px;
}
.product-card__body li::before {
	content: "-";
	position: absolute;
	left: 0;
}
.product-card__body .btn--orange {
	color: var(--white);
}
.product-card__info {
	display: flex;
	gap: 1.5rem;
}
.product-card__info img {
	max-width: 105px;
	width: 100%;
}
.product-card__media {
	display: flex;
	align-items: end;
}

/* ===== Benefits ===== */
.benefits {
	padding: 30px 0 64px;
	background: var(--white);
}
.benefits__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.875rem;
	text-align: center;
}
.benefits__icon {
	margin: 0 auto 14px;
	display: block;
}
.benefits__item p {
	font-weight: 700;
	font-size: 1rem;
	margin: 0;
	line-height: 1.4;
	color: var(--black);
}

/* ===== Locations ===== */
.locations {
	padding: 56px 0 64px;
	background: var(--orange);
}
.locations__inner {
	display: flex;
	align-items: center;
	gap: 0.375rem;
}
.locations__swiper {
	flex: 1 1 auto;
	overflow: hidden;
}
.location-card__img {
	width: 100%;
	border-radius: 16px;
	overflow: hidden;
	display: block;
}
.location-card__caption {
	text-align: center;
	font-weight: 500;
	font-size: 1.375rem;
	line-height: 1.3;
	margin-top: 10px;
	margin-bottom: 0;
	color: var(--white);
}
.location-card__caption span {
	font-weight: 500;
	display: block;
}
.location-card__media {
	padding-top: 100%;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

/* ===== CTA / Form ===== */
.cta {
	background: var(--white);
	padding: 30px 0;
	text-align: center;
}
.cta__title {
	font-family: var(--font-head);
	font-weight: 800;
	font-size: 1.625rem;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	margin: 0 0 12px;
	color: var(--black);
}
.cta__subtitle {
	color: #4a4a4a;
	margin: 0 0 34px;
	font-size: 1.25rem;
}
.cta__form {
	max-width: 640px;
	margin: 0 auto;
}
.cta__row {
	display: flex;
	gap: 1.125rem;
	margin-bottom: 20px;
}
.cta__row input {
	flex: 1 1 0;
	min-width: 0;
	border: 1.5px solid #666666;
	border-radius: 12px;
	padding: 16px 26px;
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 0.9375rem;
	background: var(--white);
	color: var(--black);
}
.cta__row input::placeholder {
	color: var(--black);
	opacity: 0.85;
	font-weight: 700;
}
.cta__row input:focus {
	outline: none;
	border-color: var(--orange);
}
.cta__checkbox {
	display: flex;
	align-items: flex-start;
	gap: 0.625rem;
	text-align: left;
	font-size: 0.875rem;
	color: var(--black);
	margin-bottom: 28px;
	cursor: pointer;
}
.cta__checkbox input {
	margin-top: 3px;
	accent-color: var(--orange);
	flex: 0 0 auto;
	width: 16px;
	height: 16px;
}

/* ===== Footer ===== */
.footer {
	padding: 30px 0;
	border-top: 1px solid #efefef;
}
.footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1.25rem;
}
.footer__brand {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex: 1;
}
.footer__brand p {
	font-weight: 700;
	font-size: 1.3125rem;
	margin: 0;
}
.footer__brand svg,
.footer__brand img {
	max-width: 150px;
	width: 100%;
}
.footer__phones {
	display: flex;
	flex-direction: column;
	gap: 0.3125rem;
	flex-wrap: wrap;
	text-align: center;
}
.footer__phones a {
	display: block;
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 1.25rem;
	color: var(--black);
}
.footer__phones span {
	font-size: 0.9375rem;
	color: var(--gray);
}



.link-news img {
    max-width:100%;
    width: 100%;
    margin: auto;
}
.p0 {
    padding:0;
}

/* ===== Responsive ===== */
@media (max-width: 1205px) {
	:root {
		--col-prod: 1fr 1fr;
	}
	.hero__media {
		background-size: 100% auto;
	}
}

@media (max-width: 1050px) {
	html {
		font-size: 14px;
	}
}

@media (max-width: 900px) {
	.container {
		padding: 0 24px;
	}
	.nav a {
		font-size: 1.2rem;
	}
	.nav a.nav__phone {
		font-size: 1.3rem;
	}
	.hero__inner {
		flex-direction: column;
		height: 850px;
	}
	.hero__content {
		padding: 46px 0 16px 0;
		gap: 1.5625rem;
	}
	.hero__content br {
		display: none;
	}
	.hero__media {
        background-size: auto 100%;
        background-position: center bottom;
    }
	.hero__list li {
		text-align: left;
	}
	.hero__list {
		display: inline-block;
	}
	.offer__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2.125rem 1.25rem;
	}
	.benefits__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2.125rem 1.25rem;
	}
	.product-card {
		flex-direction: column;
		text-align: center;
	}
	.product-card__body ul {
		text-align: left;
		display: inline-block;
	}
}

@media (max-width: 720px) {
	:root {
		--col-prod: 1fr;
	}
	/*.nav {
		position: absolute;
		top: 82px;
		left: 0;
		right: 0;
		background: var(--white);
		flex-direction: column;
		align-items: flex-start;
		padding: 20px 24px 26px;
		gap: 1.125rem;
		border-bottom: 1px solid #efefef;
		transform: translateY(-10px);
		opacity: 0;
		pointer-events: none;
		transition: transform 0.2s ease, opacity 0.2s ease;
	}
	.nav.is-open {
		transform: translateY(0);
		opacity: 1;
		pointer-events: auto;
	}*/
	.burger {
		display: flex;
	}
	.burger.is-open span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}
	.burger.is-open span:nth-child(2) {
		opacity: 0;
	}
	.burger.is-open span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	.product-card__info {
		gap: 0.5rem;
	}

	.cta__row {
		flex-direction: column;
	}
	.footer__inner {
		flex-direction: column;
		text-align: center;
	}
	.footer__phones {
		justify-content: center;
	}
	.cta__form .btn {
		width: auto;
	}
}

@media (max-width: 480px) {
	.offer__grid {
		grid-template-columns: 1fr 1fr;
		gap: 1.75rem 1rem;
	}
	.benefits__grid {
		grid-template-columns: 1fr 1fr;
		gap: 1.75rem 1rem;
	}
	.filters__inner {
		gap: 0.625rem;
	}
	.pill {
		padding: 11px 18px;
		font-size: 1.2rem;
	}
	.machine--hero {
		width: 220px;
	}
	.products__inner,
	.locations__inner {
		gap: 0.5rem;
	}
	.arrow {
		width: 36px;
		height: 36px;
	}
}
