/* 15. copyright */
.copyright-home {
	position: absolute;
	bottom: 26px;
	left: 24px;
	text-align: left;
	font-size: 10px;
	font-weight: 300;
	text-transform: none;
	/* uppercase */
	letter-spacing: 0.05em;
	margin: 0;
	z-index: 10;
}

@media only screen and (max-width:880px) {
	.copyright-home {
		bottom: 11px;
		right: 15px;
	}
}

@media only screen and (max-width:640px) {
	.copyright-home {
		display: none;
		visibility: hidden;
	}
}

.copyright-home,
.copyright-home a,
.copyright-home a:hover {
	color: #fff;
}

.copyright {
	position: relative;
	margin: 0 auto;
	text-align: center;
	font-size: 11px;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin: 0 auto;
}

/* FAQ */ 
.faq-section {
    position: relative;
    padding: 50px 0;
    background: #fff;
}

.faq-section__head {
    max-width: 920px;
    margin: 0 auto 50px;
}

.faq-section__title {
    margin: 0;
    color: #2e2e2e;
    font-size: 42px;
    line-height: 1.18;
    font-weight: 500;
}

.faq-subsection__head {
    max-width: 920px;
    margin: -30px auto 50px;
}

.faq-subsection__title {
    margin: 0;
    color: #2e2e2e;
    font-size: clamp(20px, 2vw, 24px);
    line-height: 1.18;
    font-weight: 300;
}

.mainfaq {
    display: grid;
    gap: 16px;
}

.mainfaq__item {
    background: #ffffff;
    box-shadow: 0 3px 10px #2e2e2e10;
    border-radius: 15px;
    border: 1px solid #2e2e2e10;
    overflow: hidden;
}

.mainfaq__button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    padding: 17px;
    border: 0;
    background: transparent;
    color: #2e2e2e;
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.35;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
}

.mainfaq__plus {
    position: relative;
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
}

.mainfaq__plus::before,
.mainfaq__plus::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #2e2e2e;
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.mainfaq__plus::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.mainfaq__item.is-open .mainfaq__plus::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.mainfaq__answer {
    display: none;
    padding: 0 28px 26px;
}

.mainfaq__answer p {
    margin: 0;
    color: #5b6271;
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.7;
}

@media only screen and (max-width: 991px) {
    .mainsection {
        padding: 60px 0;
    }

    .mainsection__title {
        font-size: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .mainsection {
        padding: 44px 0;
    }

    .mainsection__title {
        font-size: 26px;
    }

    .mainfaq__answer p {
        line-height: 1.4;
    }

    .mainfaq__answer {
        padding: 0 22px 22px;
    }
}



/* Материалы на главной */
.main-material-block {
	align-items: stretch;
}

.main-material-block--reverse {
	flex-direction: row-reverse;
}

.main-material-block__text {
	display: flex;
	align-items: center;
	justify-content: center;
}

.main-material-block .material-txt {
	color: #2e2e2e;
}

.main-material-block .material-txt p {
	max-width: 720px;
	color: #2e2e2e;
}

.main-material-block__gallery-half {
	display: flex;
	align-items: center;
	justify-content: center;
}

.main-material-gallery {
	width: min(880px, 100%);
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	justify-content: center;
	gap: 5px;
}

.main-material-color-card {
	display: grid;
	grid-template-rows: minmax(64px, auto) auto;
	align-items: start;
	justify-items: center;
	gap: 10px;
	flex: 1 1 0;
	min-width: 0;
	max-width: none;
	padding: 0;
	margin: 0;
	border: 0;
	-webkit-appearance: none;
	appearance: none;
	background: transparent;
	font: inherit;
	color: #2e2e2e;
	text-align: center;
	cursor: pointer;
}

.main-material-color-card__label {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	min-height: 0;
	padding: 6px 4px 0;
	background: transparent;
	color: #2e2e2e;
	font-size: 17px;
	font-weight: 500;
	line-height: 1.15;
	box-sizing: border-box;
	white-space: normal;
	overflow-wrap: anywhere;
	hyphens: auto;
}

.main-material-color-card__image-wrap {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	width: 100%;
	background: transparent;
	padding: 0;
}

.main-material-color-card__image {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 401 / 560;
	object-fit: contain;
}

.main-material-color-card:focus-visible .main-material-color-card__label,
.main-material-color-card:focus-visible .main-material-color-card__image-wrap {
	outline: 2px solid #5576d1;
	outline-offset: 2px;
}

@media only screen and (max-width: 1200px) {
	.main-material-color-card {
		grid-template-rows: minmax(58px, auto) auto;
	}

	.main-material-color-card__label {
		font-size: 15px;
		padding: 6px 4px 0;
	}
}

@media only screen and (max-width: 768px) {
	.main-material-block,
	.main-material-block--reverse {
		flex-direction: column;
	}

	.main-material-block__gallery-half {
		padding: 18px 16px 30px;
	}

	.main-material-gallery {
		gap: 5px;
	}

	.main-material-color-card {
		grid-template-rows: minmax(54px, auto) auto;
		gap: 8px;
	}

	.main-material-color-card__label {
		font-size: 14px;
		padding: 4px 2px 0;
	}
}

@media only screen and (max-width: 480px) {
	.main-material-color-card {
		grid-template-rows: minmax(52px, auto) auto;
		gap: 6px;
	}

	.main-material-color-card__label {
		font-size: 13px;
		line-height: 1.1;
	}
}


/* Материалы на главной — финальная стабилизация сетки и подписей цветов */
.main-material-block__text,
.main-material-block__gallery-half {
	padding-inline: clamp(15px, 4vw, 50px);
}

.main-material-gallery {
	width: min(100%, 880px);
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(0, 1fr);
	align-items: start;
	justify-content: stretch;
	column-gap: clamp(4px, 0.7vw, 8px);
	row-gap: 0;
}

.main-material-color-card {
	display: grid;
	grid-template-rows: minmax(26px, auto) auto;
	align-items: start;
	justify-items: center;
	gap: clamp(6px, 0.8vw, 10px);
	min-width: 0;
	width: 100%;
	max-width: none;
}

.main-material-color-card__label {
	display: block;
	width: 100%;
	min-height: 0;
	margin: 0;
	padding: 0 1px clamp(6px, 0.7vw, 10px);
	font-size: clamp(12px, 0.95vw, 17px);
	font-weight: 500;
	line-height: 1.15;
	letter-spacing: -0.01em;
	text-align: center;
	white-space: nowrap;
	word-break: keep-all;
	overflow-wrap: normal;
	hyphens: none;
	overflow: hidden;
	text-overflow: ellipsis;
}

@media only screen and (max-width: 991px) {
	.main-material-block,
	.main-material-block--reverse {
		flex-direction: column;
	}

	.main-material-block__text,
	.main-material-block__gallery-half {
		padding-inline: clamp(15px, 4vw, 32px);
	}

	.main-material-block__text .post-txt.material-txt {
		padding-bottom: 0;
	}

	.main-material-block__gallery-half {
		padding-top: 0px;
		padding-bottom: 50px;
	}

	.main-material-gallery {
		width: 100%;
		column-gap: clamp(4px, 0.8vw, 7px);
	}

	.main-material-color-card__label {
		padding-bottom: 8px;
		font-size: clamp(12px, 1.55vw, 15px);
	}
}

@media only screen and (max-width: 768px) {
	.main-material-block__text,
	.main-material-block__gallery-half {
		padding-inline: clamp(15px, 4vw, 24px);
	}

	.main-material-block__gallery-half {
		padding-top: 0px;
		padding-bottom: 50px;
	}

	.main-material-color-card__label {
		padding-bottom: 7px;
		font-size: clamp(12px, 2vw, 14px);
	}
}

@media only screen and (max-width: 480px) {
	.main-material-block__gallery-half {
		padding-top: 16px;
		padding-bottom: 24px;
	}

	.main-material-color-card__label {
		font-size: clamp(12px, 3.2vw, 13px);
		padding-bottom: 6px;
	}
}


/* =============================================
   Галерея блока «Примеры» на главной странице
   ============================================= */
.works-section.section-gallery {
    height: auto;
    padding: 0 !important;
}

.works-section.section-gallery .container-fluid.force-height,
.works-section.section-gallery .row.no-gutter,
.works-section.section-gallery .works-section-col {
    height: auto;
}

.works-section.section-gallery .works-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.works-section.section-gallery .works-gallery-item {
    position: relative;
    top: auto;
    left: auto;
    float: none;
    width: 100%;
    height: auto !important;
    padding: 0 !important;
    aspect-ratio: 3 / 4;
}

.works-section.section-gallery .works-gallery-item .box-img,
.works-section.section-gallery .works-gallery-item .item-folio,
.works-section.section-gallery .works-gallery-item .img-fullwidth-all,
.works-section.section-gallery .works-gallery-item .thumb-link {
    width: 100%;
    height: 100%;
}

@media (max-width:639px) {
    .works-section.section-gallery .works-gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width:640px) and (max-width:767px) {
    .works-section.section-gallery .works-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width:768px) and (max-width:1024px) {
    .works-section.section-100vh {
        height: auto;
        padding: 120px 0;
    }

    .works-section.section-gallery .works-gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media screen and (min-width:1600px) and (max-height:900px) {
    .works-section.section-gallery .works-gallery-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* 25. swiper reviews slider */
.swiper-container-reviews .text,
.swiper-container-reviews p {
	text-align: center;
	color: #fff;
}

.swiper-container-reviews {
	margin: 0;
	padding: 0;
	height: auto;
}

.swiper-container {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.reviews-top {
	width: 100%;
	height: 50%;
}

.reviews-bottom {
	width: 100%;
	margin:  0 auto;
	padding: 0;
	background: #5576D1;
}

@media only screen and (max-width:640px) {
	.reviews-bottom {
		width: 100%;
		margin: 0 auto;
	}
}

.reviews-bottom .swiper-slide p.text {
    width: 80%;
    letter-spacing: normal;
    line-height: 1.3;
    margin: 15px auto;
    font-size: clamp(17px, 2vw, 20px);
    font-weight: 300;
}

.reviews-bottom .swiper-slide h2.text {
    width: 80%;
    letter-spacing: normal;
    line-height: 1.4;
    margin: 15px auto;
    font-size: clamp(19px, 2vw, 24px);
    font-weight: 300;
}

@media only screen and (max-width:995px) {
	.reviews-bottom .swiper-slide .text {
		width: 100%;
	}
}

.reviews-bottom .swiper-slide-thumb-active {
	opacity: 1;
}

.swiper-button-wrapper {
	position: relative;
	top: 50px;
}

@media only screen and (max-width:640px) {
	.swiper-button-wrapper {
		top: 30px;
	}
}

.swiper-button-wrapper li {
	list-style: none;
}

.swiper-button-black,
.swiper-button-white {
	width: 20px;
	height: 20px;
	background-size: contain;
}

.swiper-button-next {
	right: 45px;
}

@media only screen and (max-width:640px) {
	.swiper-button-next {
		right: 15px;
	}
}

.swiper-button-prev {
	left: 45px;
}

@media only screen and (max-width:640px) {
	.swiper-button-prev {
		left: 15px;
	}
}

.reviews-bg-wrapper {
	position: relative;
	width: 100%;
	height: auto;
	min-height: 580px;
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-ms-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

@media (max-width:768px) {
	.reviews-bg-wrapper {
		min-height: 350px;
	}
}

.reviews-stars {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin: 37px 0px 25px 0px;
	color: #ffc062;
}

.reviews-stars svg {
	width: 24px;
	height: 24px;
}

/* Сводный рейтинг на первом слайде блока отзывов. */
.reviews-bottom .swiper-slide.reviews-rating-slide .text {
	width: min(1000px, calc(100% - 40px));
	margin: 18px auto 42px auto;
}

.reviews-rating-summary {
	display: grid;
	grid-template-columns: 250px minmax(0, 1fr);
	align-items: center;
	gap: 48px;
	width: 100%;
	margin: 0 auto;
	color: #fff;
}

.reviews-rating-summary__total {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 0;
}

.reviews-rating-summary__value {
	font-size: clamp(86px, 9vw, 128px);
	line-height: .9;
	font-weight: 700;
	letter-spacing: -0.08em;
	color: #fff;
}

.reviews-rating-summary__stars,
.reviews-rating-summary__row-stars {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	color: #ffc062;
}

.reviews-rating-summary__stars {
	margin: 28px 0 18px 0;
}

.reviews-rating-summary__stars svg {
	width: 32px;
	height: 32px;
	flex: 0 0 auto;
}

.reviews-rating-summary__count {
	font-size: clamp(16px, 2vw, 18px);
	line-height: 1.2;
	font-weight: 300;
	color: #fff;
}

.reviews-rating-summary__breakdown {
	display: flex;
	flex-direction: column;
	gap: 18px;
	min-width: 0;
}

.reviews-rating-summary__row {
	display: grid;
	grid-template-columns: 150px minmax(150px, 1fr) 44px;
	align-items: center;
	gap: 22px;
}

.reviews-rating-summary__row-stars {
	justify-content: flex-start;
	gap: 7px;
}

.reviews-rating-summary__row-stars svg {
	width: 25px;
	height: 25px;
	flex: 0 0 auto;
}

.reviews-rating-summary__bar {
	position: relative;
	overflow: hidden;
	height: 8px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .82);
}

.reviews-rating-summary__bar-fill {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: #ffc062;
}

.reviews-rating-summary__row-count {
	font-size: 18px;
	line-height: 1;
	font-weight: 300;
	text-align: left;
	color: #fff;
}

@media only screen and (max-width:995px) {
	.reviews-rating-summary {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.reviews-rating-summary__row {
		grid-template-columns: 150px minmax(120px, 1fr) 38px;
		gap: 16px;
	}
}

@media only screen and (max-width:640px) {
	.reviews-bottom .swiper-slide.reviews-rating-slide .text {
		width: calc(100% - 30px);
		margin: 6px auto 30px auto;
	}

	.reviews-rating-summary {
		gap: 28px;
	}

	.reviews-rating-summary__value {
		font-size: clamp(70px, 17vw, 105px);
	}

	.reviews-rating-summary__stars {
		margin: 22px 0 14px 0;
		gap: 6px;
	}

	.reviews-rating-summary__stars svg {
		width: 28px;
		height: 28px;
	}
	
	.reviews-rating-summary__breakdown {
		gap: 16px;
	}

	.reviews-rating-summary__row {
		grid-template-columns: 112px minmax(70px, 1fr) 28px;
		gap: 10px;
	}

	.reviews-rating-summary__row-stars {
		gap: 4px;
	}

	.reviews-rating-summary__row-stars svg {
		width: 18px;
		height: 18px;
	}

	.reviews-rating-summary__bar {
		height: 7px;
	}

	.reviews-rating-summary__row-count {
		font-size: 20px;
	}
}
/* =============================================
   Блок «Почему именно мы»
   Сетка преимуществ с гео-карточкой и закрывающей CTA-карточкой.
   Палитра: основной #5576D1, тёмный #2e2e2e, фон секции #f2f2f2.
   ============================================= */
.why-us {
    position: relative;
    background: #f2f2f2;
    overflow: hidden;
}

/* Декоративные радиальные пятна на фоне — еле заметные */
.why-us::before,
.why-us::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.why-us::before {
    top: -180px;
    left: -120px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(85, 118, 209, 0.08) 0%, rgba(85, 118, 209, 0) 70%);
}

.why-us::after {
    right: -150px;
    bottom: -200px;
    width: 540px;
    height: 540px;
    background: radial-gradient(circle, rgba(85, 118, 209, 0.06) 0%, rgba(85, 118, 209, 0) 70%);
}

.why-us .container {
    position: relative;
    z-index: 1;
}

/* Сетка карточек */
.why-us__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 10px;
}

/* Базовая карточка */
.why-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 36px 32px 34px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(46, 46, 46, 0.06);
    box-shadow: 0 2px 12px rgba(46, 46, 46, 0.04);
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
                box-shadow 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
                border-color 0.3s ease;
}

/* Анимированная градиентная полоска сверху на hover */
.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #5576d1;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 2s cubic-bezier(0.1, 1, 0.1, 1);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(46, 46, 46, 0.08),
                0 4px 12px rgba(85, 118, 209, 0.08);
    border-color: rgba(85, 118, 209, 0.18);
}

.why-card:hover::before {
    transform: scaleX(1);
}

/* Hero-карточка: занимает 2 колонки на десктопе */
.why-card--hero {
    grid-column: span 2;
    padding: 42px 40px 40px;
}

.why-card--hero .why-card__title {
    font-size: 30px;
}

.why-card--hero .why-card__icon-wrap {
    background: linear-gradient(135deg, rgba(85, 118, 209, 0.1) 0%, rgba(85, 118, 209, 0.02) 100%);
}

.why-card--hero .why-card__icon {
    width: 36px;
    height: 36px;
}

/* Закрывающая широкая карточка с CTA */
.why-card--wide {
    grid-column: span 3;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
    padding: 32px 40px;
    background: #2e2e2e;
    border: 0;
    color: #ffffff;
}

.why-card--wide::before {
    background: linear-gradient(90deg, #ffc062 0%, #5576D1 100%);
}

.why-card--wide .why-card__icon-wrap {
    background: rgba(255, 255, 255, 0.08);
}

.why-card--wide .why-card__icon {
    stroke: #ffc062;
}

.why-card--wide .why-card__title {
    margin: 0;
    color: #ffffff;
    font-size: 22px;
}

.why-card--wide .why-card__text {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.72);
}

/* Внутренние элементы карточки */
.why-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 26px;
}

.why-card--wide .why-card__head {
    margin-bottom: 0;
}

.why-card__icon-wrap {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: rgba(85, 118, 209, 0.07);
    transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
                background 0.3s ease;
}

.why-card:hover .why-card__icon-wrap {
    transform: scale(1.08) rotate(-3deg);
    background: rgba(85, 118, 209, 0.12);
}

.why-card--wide:hover .why-card__icon-wrap {
    background: rgba(255, 255, 255, 0.12);
}

.why-card__icon {
    width: 30px;
    height: 30px;
    stroke: #5576D1;
    stroke-width: 1.6;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.why-card__num {
    font-size: 13px;
    font-weight: 500;
    color: rgba(46, 46, 46, 0.3);
    letter-spacing: 0.12em;
    font-variant-numeric: tabular-nums;
    padding-top: 6px;
}

.why-card--wide .why-card__num {
    color: rgba(255, 255, 255, 0.4);
}

.why-card__title {
    margin: 0 0 14px;
    font-size: 21px;
    line-height: 1.25;
    font-weight: 600;
    color: #2e2e2e;
    letter-spacing: -0.015em;
}

.why-card__text {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    color: #5b6271;
    letter-spacing: 0.01em;
}

/* CTA-кнопка в широкой карточке */
.why-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 26px;
    background: #5576D1;
    color: #ffffff;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(85, 118, 209, 0.35);
    transition: background 0.25s ease,
                transform 0.25s ease,
                box-shadow 0.25s ease;
}

.why-card__cta:hover,
.why-card__cta:focus-visible,
.why-card__cta:visited {
    background: #6d8ce0;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(85, 118, 209, 0.45);
}

.why-card__cta:focus-visible {
    outline: 2px solid #ffc062;
    outline-offset: 3px;
}

.why-card__cta svg {
    width: 16px;
    height: 16px;
    transition: transform 0.25s ease;
}

.why-card__cta:hover svg {
    transform: translateX(3px);
}

/* Появление при загрузке секции */
@media (prefers-reduced-motion: no-preference) {
    .why-card {
        opacity: 0;
        transform: translateY(24px);
        animation: whyCardIn 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    }

    .why-card:nth-child(1) { animation-delay: 0.05s; }
    .why-card:nth-child(2) { animation-delay: 0.15s; }
    .why-card:nth-child(3) { animation-delay: 0.25s; }
    .why-card:nth-child(4) { animation-delay: 0.35s; }
    .why-card:nth-child(5) { animation-delay: 0.45s; }
    .why-card:nth-child(6) { animation-delay: 0.55s; }
    .why-card:nth-child(7) { animation-delay: 0.7s; }

    @keyframes whyCardIn {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Адаптив */
@media only screen and (max-width: 991px) {
    .why-us__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .why-card--hero {
        grid-column: span 2;
        padding: 34px 32px 32px;
    }

    .why-card--hero .why-card__title {
        font-size: 26px;
    }

    .why-card--wide {
        grid-column: span 2;
    }

    .why-card {
        padding: 30px 26px 28px;
    }
}

@media only screen and (max-width: 640px) {
    .why-us__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .why-card--hero,
    .why-card--wide {
        grid-column: span 1;
    }

    .why-card {
        padding: 26px 22px 24px;
    }

    .why-card--hero {
        padding: 28px 24px 26px;
    }

    .why-card--hero .why-card__title {
        font-size: 22px;
    }

    .why-card__title {
        font-size: 19px;
    }

    .why-card__text {
        font-size: 15px;
    }

    .why-card__icon-wrap {
        width: 54px;
        height: 54px;
        border-radius: 12px;
    }

    .why-card__icon {
        width: 26px;
        height: 26px;
    }

    .why-card--wide {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 28px 24px;
    }

    .why-card__cta {
        width: 100%;
        justify-content: center;
    }
}
.mat-m2-money {
    font-size: clamp(23px, 3.5vw, 52px);
    font-weight: 500;
    text-align: center;
    color: #fff;
    letter-spacing: 0.02em;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    inset: 0;
    text-transform: lowercase;
    z-index: 1;
}

#cartShip {
    visibility: hidden;
}