@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900');

:root {
	--primary__purple: #a403da;
	--dark__blue: #14116c;
	--bright__blue: #1900fa;
	--neon__purple: #8900fa;
	--accent__pink: #cd00fa;
	--text-color: #334155;
	--background-color: #fff;
	--border-radius: 4px;
	--transition-speed: 0.3s;
	--background-gradient: radial-gradient(
		1000px 500px at 20% 0%,
		#f5e9ff 0%,
		#ffffff 60%
	);
	--light-gray:  #f8fafc;	
}
body.dark-theme {
	--text-color: #e5e7ebeb;   
	--background-color: #1f1f2e;    
	--primary__purple: #c27aff;    
	--dark__blue: #d1d1d4;           
	--bright__blue: #3a3cff;        
	--neon__purple: #a600ff;     
	--accent__pink: #ff33ff;      
	--background-gradient: radial-gradient(1000px 500px at 20% 0%, #1a1a2e 0%, #0d0d1a 60%);
	background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
	--light-gray:  #181818;	
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-weight: 300;
	font-family: "Inter", sans-serif;
	font-size: 1rem;
	line-height: 140%;
	color: var(--text-color);
	list-style: none;
}

/* =======================================
TakeYours UI Kit — Базовые стили CSS
Фирменные цвета:
Основной пурпурный: #a403da
Темно-синий: #14116c
Ярко-синий: #1900fa
Неоновый пурпурный: #8900fa
Акцентный розовый: #cd00fa
======================================= */

html {
	font-size: 16px;
}

/* -----------------------------
Типографика
----------------------------- */
h1, h2, h3, h4 {
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	color: var(--dark__blue);
	text-align: center;
}

h1 { font-size: 2.5rem;
	font-weight: 800; }
h2 { font-size: 2rem;
	font-weight: 800; }
h3 { font-size: 1.75rem;
	font-weight: 700; }
h4 { font-size: 1.5rem;
	font-weight: 600; }

p {
	font-size: 1rem;
	font-weight: 300;
}

/* -----------------------------
Ссылки
----------------------------- */
a {
	color: var(--dark__blue);
	text-decoration: none;
	font-weight: 400;
	transition: color 0.25s ease;
	font-size: inherit;
}

a:hover {
	color: var(--accent__pink);
}
/* -----------------------------
Кнопки (пустой шаблон)
----------------------------- */
form .button, a.button, button {
	padding: 0 2rem;
	font-size: 1rem;
	height: 3rem;
	width: fit-content;
	min-width: 150px;
	border-radius: var(--border-radius);
	border: none;
	cursor: pointer;
	transition: all var(--transition-speed) ease;
	font-weight: 600;
	line-height: 24px;
	font-size: 100%;
}
a.button {
	line-height: 3rem;
}
a.button:hover {
	color: #fff;
}

/* -----------------------------
Инпуты / формы (пустой шаблон)
----------------------------- */
label {
	letter-spacing: 0.05em;
	text-transform: uppercase;    
	color: #9ca3af;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 1.25rem;
}
input, textarea {
	margin: 7px 0 16px;
}
form {
	padding: 5px;
}
input, textarea, select {
	padding: var(--spacing-sm);
	font-size: 1rem;
	width: 100%;
	transition: border-color var(--transition-speed) ease;
	resize: none;
	border: 1px solid #9ca3af;
	border-radius: 0.5rem;    padding-left: 1rem;
	padding-right: 1rem;height: 3rem;
}
input[type=checkbox] {
	width: 15px;
}
input::placeholder, textarea::placeholder {
	color: #94A3B8;
}

input:focus, textarea:focus, select:focus {
	box-shadow: rgb(255, 255, 255) 0px 0px 0px 0px, rgb(164, 3, 218) 0px 0px 0px 2px, rgba(0, 0, 0, 0) 0px 0px 0px 0px;
	outline: none;
}

/* -----------------------------
Карточки / контейнеры
----------------------------- */
.card {
	background-color: var(--background-color);
	border-radius: var(--border-radius);
	padding: var(--spacing-md);
	box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

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

/* -----------------------------
Сетки / layout
----------------------------- */
.row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(-1 * var(--spacing-md) / 2);
}

.col {
	flex: 1;
	padding: 0 calc(var(--spacing-md) / 2);
}

/* -----------------------------
Модальные окна (шаблон)
----------------------------- */
.modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
	justify-content: center;
	align-items: center;
}

.modal.active {
	display: flex;
}

.modal-content {
	background-color: var(--background-color);
	border-radius: var(--border-radius);
	padding: var(--spacing-lg);
}

/* ===============================
Общие секции
================================ */
section {
	padding: 80px 0;
}
section h2 {
	margin-bottom: 1.5rem;
}
section p {
	margin-bottom: 1.5rem;
}
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ===============================
Buttons
================================ */

form .button, .button--primary {
	background: linear-gradient(135deg, var(--primary__purple), var(--neon__purple));
	color: #fff;
	box-shadow: 0 10px 30px rgba(164, 3, 218, 0.35);
}

form .button, .button--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 15px 40px rgba(164, 3, 218, 0.45);
}

.button--secondary {
	background: transparent;
	border: 1px solid var(--dark__blue);
	color: var(--dark__blue);
}
.button--secondary:hover {
	border: 1px solid var(--neon__purple);
	color: var(--neon__purple);
	transform: translateY(-2px);
}
strong {
	-webkit-text-fill-color: transparent;
	color: #0b2349;
	background: linear-gradient(45deg, #1900fa 33%, #8900fa 66%, #cd00fa);
	-webkit-background-clip: text;
	font-weight: inherit;
	font-size: inherit;
}
.dark-theme strong {
	background: linear-gradient(45deg, #a59dff 33%, #e835d2 66%, #cd00fa);
	-webkit-background-clip: text;
}
/* ===============================
Header
================================ */
.header {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 50;
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid #e5e7eb;
}
.dark-theme .header {
	background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
	border-bottom: 1px solid #000;
}


.header .container {
	display: grid;
	grid-template-columns: auto 1fr auto auto;
	align-items: center;
	gap: 32px;
	min-height: 72px;
}

/* Logo */
.header__logo {
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--dark__blue);
	letter-spacing: -0.02em;
}

/* Navigation */
.header__nav {
	display: flex;
	gap: 24px;
	justify-content: center;
}

.header__nav-link {
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--text-color);
	position: relative;
}

.header__nav-link::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -6px;
	width: 0;
	height: 2px;
	background: var(--primary__purple);
	transition: width 0.25s ease;
}

.header__nav-link:hover {
	color: var(--dark__blue);
}

.header__nav-link:hover::after {
	width: 100%;
}

/* Contacts */
.header__contacts {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	font-size: 0.85rem;
}

.header__phone {
	font-weight: 600;
	color: var(--dark__blue);
}

.header__worktime {
	color: #64748b;
}

/* Actions */
.header__actions {
	display: flex;
	gap: 12px;
}

.header__lang-switch,
.header__theme-switch {
	height: 40px;
	padding: 0 14px;
	border-radius: 10px;
	border: 1px solid #e5e7eb;
	background: transparent;
	font-size: 0.85rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.25s ease;
}

.header__lang-switch:hover,
.header__theme-switch:hover {
	border-color: var(--primary__purple);
	color: var(--primary__purple);
}

.hero {
	position: relative;
	background: var(--background-gradient);
	overflow: hidden;
	padding: 120px 0;
}

.hero::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: url("http://take-yours.online/wp-content/uploads/2026/02/man.webp")
		no-repeat left 27% bottom -0.3% / auto 90%;
	transform: scaleX(-1);
	pointer-events: none;
}

.hero__content {
	max-width: 720px;
}

.hero__title {
	font-size: 3rem;
	line-height: 1.1;
	margin-bottom: 44px;
	text-align: left;
}

.hero__description {
	font-size: 1.125rem;
	margin-bottom: 52px;
}

.hero__note, .popup__note {
	margin-top: 16px;
	font-size: 0.875rem;
	color: #64748b;
}
.popup__note {
	text-align: center;
}
.trust-badges {
	background: var(--light-gray);
}
.dark-theme .trust-badges {
	background: rgba(255, 255, 255, 0.05);
}
.benefits__list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
}

.benefits__item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 20px;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	background: #fff;
}
.dark-theme .benefits__item {
	background: rgba(255, 255, 255, 0.05);
}
.benefits__item svg {
	max-width: 100px;
	max-height: 100px;
	padding: 20px;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.benefits__item svg * {
	fill: var(--text-color) !important;
}
.industries__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 20px;
}

.industries__item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-right: 10px;
	border-radius: 14px;
	border: 1px solid #00000017;
	transition: all 0.25s ease;
}
.dark-theme .industries__item {
	border: 1px solid #e5e7eb45;
}

.industries__item img {
	width: 100%;
	height: 100%;
	max-width: 100px;
	min-height: 100px;
	max-height: 100px;
	object-fit: cover;
	border-radius: 14px 0 0 14px;
}

.equipment {
	background: var(--light-gray);
	position: relative;
}
.dark-theme .equipment {
	background: rgba(255, 255, 255, 0.05);
}

.equipment__wrapper {
	position: relative;
	max-height: 460px; /* высота одной строки + половина второй (пример) */
	overflow: hidden;
	transition: max-height 0.5s ease;
}

.equipment__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 24px;
	padding-top: 5px;
}

.equipment__item {
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid #00000014;
	cursor: pointer;
	transition: ease 0.2s;
}
.dark-theme .equipment__item {
	background: #ffffff0d;
}
.equipment__item:hover {
	border: 1px solid var(--primary__purple);
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(164, 3, 218, 0.15);
}

.equipment__item span {
	padding: 1rem;
	padding-top: 0.5rem;
	font-weight: 300;
	display: block;
}

.equipment__image {
	width: 100%;
	height: 200px;
	object-fit: cover;
}
.equipment__overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0,0,0,0.7);
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease;
	z-index: 9999;
}

.equipment__overlay img {
	max-width: 90%;
	max-height: 90%;
	border-radius: 12px;
}

.equipment__overlay.active {
	opacity: 1;
	visibility: visible;
}
/* Градиент внизу */
.equipment__fade {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 80px;
	background: linear-gradient(to bottom, rgba(248,250,252,0), var(--light-gray));
	pointer-events: none; /* чтобы кнопка была кликабельной */
}

/* Кнопка */
.equipment__toggle {
	display: block;
	margin: 1.5rem auto 0;
}

.equipment__wrapper.expanded {
	max-height: 10000px;
}
.equipment__wrapper.expanded .equipment__fade {
	display: none;
}

.problems__list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 16px;
}

.problems__item {
	padding: 18px 20px;
	border-left: 4px solid var(--primary__purple);
	background: #f8fafc;
	border-radius: 8px;
}
.final-metrics {
	padding: 60px 0;
	text-align: center;
}

.final-metrics .button {
	margin-top: 1.5rem;
}

.final-metrics__text {
	font-size: 1.1rem;
	margin-bottom: 40px;
}

.final-metrics__grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
}
.metrics-card {
	border-radius: 12px;
	padding: 30px 20px;
	width: 280px;
	text-align: center;
	box-shadow: 0 4px 12px rgba(0,0,0,0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dark-theme .metrics-card {
	background: rgba(255, 255, 255, 0.05);
}

.metrics-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.metrics-card__icon {
	width: 40px;
	height: 40px;
	margin-bottom: 15px;
	color: #14116c;
	transition: color 0.3s ease;
}

.metrics-card__value {
	font-size: 1.5rem;
	font-weight: 700;
	display: block;
	margin-bottom: 10px;
}

.metrics-card__text {
	font-size: 1rem;
}

.product-video {
	position: relative;
	min-height: 500px;
	display: grid;
	place-items: center;
}

.product-video__bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.product-video__iframe {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-video__overlay {
	position: absolute;
	inset: 0;
	background: rgba(20,17,108,0.4);
}

.product-video__content * {
	position: relative;
	z-index: 2;
	text-align: center;
	color: #fff;
	max-width: 700px;
}
.product-video__content h2::before {
	display: none;
}
.product-video__content .button {
	margin: 0 auto;
	display: block;
}

.objections__item {
	border-bottom: 1px solid #e5e7eb;
}
.dark-theme .objections__item {
	border-bottom: 1px solid #ffffff5c;
}
.dark-theme .objections__question::after {
	color: var(--accent__pink);
}

.objections__question {
	width: 100%;
	padding: 20px 48px 20px 0;
	font-size: 1.1rem;
	height: fit-content;
	font-weight: 600;
	background: none;
	border: none;
	text-align: left;
	cursor: pointer;
	position: relative;
	padding-left: 1.5rem;
}

.objections__question:focus {
	outline: none;
}

.objections__question::after {
	content: "+";
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 24px;
	transition: transform .3s ease;
}
.swiper-button-next:after, .swiper-button-prev:after {
	font-size: 20px !important;
}
.objections__item.active .objections__question::after {
	transform: translateY(-50%) rotate(45deg);
}
.objections__answer {
	max-height: 0;
	overflow: hidden;
	padding: 0 1.5rem;
	transition: max-height .3s ease, padding .3s ease;
}

.objections__item.active .objections__answer {
	max-height: 800px;
	padding: 1.5rem;
	display: block;
}

.objections__answer p,
.objections__answer li {
	margin-bottom: 12px;
	line-height: 1.5;
}

.popup {
	position: fixed;
	inset: 0;
	display: none;
	z-index: 100;
}

.popup__overlay {
	position: absolute;
	inset: 0;
	background: rgba(15,23,42,0.6);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.popup__content {
	position: relative;
	background: #fff;
	padding: 32px;
	border-radius: 20px;
	max-width: 480px;
	z-index: 2;
	box-shadow: 0 40px 80px rgba(0,0,0,0.25);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.popup__close {
	position: absolute;
	top: 0;
	right: 24px;
	font-size: 24px;
	background: none;
	border: none;
	cursor: pointer;
	width: fit-content;
	min-width: 0;
	padding: 0;
}
.popup__title::before {
	display: none;
}
.popup__title {
	text-align: center;
}


form .button {
    margin: 0 auto;
    display: block;
    margin-top: 1.5rem;
}
.final-cta {
	background: linear-gradient(135deg, #14116c, #a403da);
	color: #fff;
	text-align: center;
}
.final-cta__title::before {
	display: none;
}
.final-cta .container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.final-cta h2,
.final-cta p {
	color: #fff;
}
.workflow {
	padding: 60px 0;
	background: var(--light-gray);
}
.dark-theme .workflow {
	background: rgba(255, 255, 255, 0.05);
}
.workflow__steps {
	display: flex;
	flex-direction: column;
	gap: 3rem;
}
.workflow__step {
	display: flex !important;
	align-items: center;
	gap: 2rem;
	padding: 2rem 6rem;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.dark-theme .workflow__step {
	background: #ffffff0d !important;
}
.dark-theme .swiper-pagination-bullet {
	background: #ffffff !important;
}
.dark-theme  .swiper-pagination-bullet-active {
	background: #cd00fa !important;
}
.workflow__img img {
	width: 100%;
	border-radius: 8px;
	object-fit: cover;
	height: 300px;
	object-fit: cover;
	border: 1px solid #e8e8e8; 
	object-position: left top;
}
.workflow__content {
	flex: 1;
}
.workflow__content h3 {
	margin-bottom: 0.5rem;
	font-size: 1.25rem;
	color: var(--dark__blue);
	text-align: left;
}
.workflow__content p {
	font-size: 1rem;
	line-height: 1.5;
}
.workflow__slider {
	position: relative;
	overflow: hidden;
}

.workflow__img img {
	max-width: 100%;
	border-radius: 12px;
}


/* ===============================
Footer
================================ */
.footer {
	background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
	color: #cbd5f5;
	padding: 80px 0 32px;
}

.footer a {
	color: #e5e7eb;
	transition: color 0.25s ease;
}

.footer a:hover {
	color: var(--accent__pink);
}
.footer__copyright {

	color: #94a3b8;
}

/* Top layout */
.footer__top {
	display: grid;
	grid-template-columns: 2fr 1fr 1.2fr 1.3fr;
	gap: 48px;
	margin-bottom: 48px;
}

/* Brand */
.footer__logo {
	font-size: 1.5rem;
	font-weight: 800;
	color: #fff;
}

.footer__description {
	margin-top: 16px;
	font-size: 0.95rem;
	line-height: 1.6;
	color: #94a3b8;
}

/* Titles */
.footer__title {
	font-size: 0.9rem;
	font-weight: 700;
	margin-bottom: 16px;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

/* Lists */
.footer__list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 25px;
}

.footer__list a {
	font-size: 0.95rem;
}

/* Contacts */
.footer__contacts {
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: 0.95rem;
}

.footer__phone {
	font-weight: 700;
	color: #fff;
}

.footer__email {
	color: #c7d2fe;
}

.footer__worktime,
.footer__address {
	color: #94a3b8;
	font-size: 0.85rem;
}

/* Actions */
.footer__actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer__socials {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.footer__socials a {
	padding: 8px 12px;
	border-radius: 8px;
	background: rgba(255,255,255,0.05);
	font-size: 0.85rem;
}
.footer__socials svg {
	width: 20px;
	height: 20px;
}
.footer__socials a svg * {
	fill: #94a3b8 !important;
}
.footer__socials a:hover svg * {
	fill: var(--accent__pink) !important;
}
.footer__socials a path.none {
	fill: #020617 !important;
}
.header__mobile-socials a path.none {
	fill: #fff !important;
}
.dark-theme .header__mobile-socials a path.none {
	fill: var(--light-gray) !important;
}
.footer__socials a:hover {
	box-shadow: 0 10px 30px rgba(164, 3, 218, 0.35);
}

.footer__cta {
	align-self: flex-start;
}

/* Bottom bar */
.footer__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 24px;
	border-top: 1px solid rgba(255,255,255,0.1);
	font-size: 0.8rem;
	color: #94a3b8;
}

.footer__legal {
	display: flex;
	gap: 16px;
}
.mobile-marquee {
	display: none;
}
.header__burger {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	position: absolute;
	top: 21px;
	right: 20px;
	min-width: 0;
	padding: 5px;
}

.header__burger span {
	display: block;
	width: 25px;
	height: 3px;
	background: var(--text-color);
	border-radius: 2px;
}

.header__mobile-menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 80vw;
	height: 100vh;
	background: var(--light-gray);
	box-shadow: -3px 0 10px rgba(0,0,0,0.2);
	transition: right 0.3s ease;
	padding: 3rem 1rem;
	z-index: 1000;
	display: none;
	flex-direction: column;
	gap: 1.5rem;
}

.header__mobile-menu.active {
	right: 0;
	display: flex;
}
.header__mobile-contacts {
	margin-top: auto;
}
.header__mobile-nav, .header__mobile-contacts, .header__mobile-actions {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items:  center;
}
.header__mobile-nav {
	gap: 2rem;
}
.header__mobile-socials {
	margin-bottom: 150px;
	justify-content: center;
}

@media (max-width: 992px) {
	.footer__bottom {
		flex-direction: column;
		gap: 1rem;
	}
	.header__burger {
		display: flex;
	}
	.header__nav,
	.header__contacts,
	.header__actions {
		display: none;
	}
}
/* Адаптив */
@media (max-width: 768px) {
	.objections {
		padding-bottom: 40px;
	}
	.header__burger,
	.header__mobile-link,
	.header__lang-switch,
	.header__theme-switch,
	.header__phone {
		outline: none; 
		-webkit-tap-highlight-color: transparent;
	}
	.workflow__img img {
		height: 240px;
	}
	.workflow__step {
		flex-direction: column;
		height: 630px !important;
		padding: 1rem;
		gap: 1rem;
	}
	.workflow__content {
		padding: 0 1rem;
	}
	.swiper-button-prev {
		left: 0 !important;
	}
	.swiper-button-next {
		right: 0 !important;
	}
	.workflow__step:nth-child(even) {
		flex-direction: column;
	}
	.header__contacts, .hero::after, .header__nav, .header__actions {
		display: none;
	}
	.footer__top {
		grid-template-columns: 1fr;
	}
	.footer__actions .button {
		margin-top: 20px;
	}
	.hero {
		padding: 40px 0;
		padding-top: 120px;
	}
	h2 {
		font-size: 1.7rem;
	}
	body {
		padding-top: 30px;
	}
	.desktop-grid { display: none; }
	.mobile-marquee { display: block; overflow: hidden; height: 180px; }

	.mobile-marquee .industries__grid {
		display: flex;
		gap: 12px;
		width: max-content;
		flex-wrap: nowrap;
	}

	.mobile-marquee .industries__item {
		flex: 0 0 auto;
	}
	.industries .container {
		padding-left: 0;
		padding-right: 0;
	}
	.industries h2, .industries p {
		padding-left: 20px;
		padding-right: 20px;
	}
	.industries, .equipment {
		padding-bottom: 0;
	}
	.mobile-marquee .industries__item img {
		width: 45px;
		height: 45px;
		min-height: 45px;
		object-fit: cover;
		margin-right: 0.5rem;
	}
	.industries__grid + .industries__grid {
		margin-top: 15px;
	}

	.mobile-marquee .industries__grid:nth-child(1) {
		animation: marquee1 25s linear infinite;
	}
	.mobile-marquee .industries__grid:nth-child(2) {
		animation: marquee2 25s linear infinite;
	}
	.mobile-marquee .industries__grid:nth-child(3) {
		animation: marquee3 25s linear infinite;
	}

	@keyframes marquee1 {
		0% { transform: translateX(0); }
		100% { transform: translateX(-50%); }
	}
	@keyframes marquee2 {
		0% { transform: translateX(0); }
		100% { transform: translateX(-50%); }
	}
	@keyframes marquee3 {
		0% { transform: translateX(0); }
		100% { transform: translateX(-60%); }
	}

	.hero__title {
		font-size: 2rem;
	}
}