	* { box-sizing: border-box; }
	/* Всегда показывать полосу прокрутки, чтобы при переходе главная ↔ Porsche не было сдвига по горизонтали */
	html { overflow-y: scroll; }
	:root {
	  --layout-max-width: 1140px;
	}
	body {
	  margin: 0;
	  font-family: 'Roboto', sans-serif;
	  color: #fff;
	  background-color: #000;
	}
	.fixed-bg {
	  background: url('/site_core/image.php?file=FonPorshce.jpg') center/cover no-repeat;
	  background-position: center calc(50% + 50px);
	  position: fixed;
	  top: 0; left: 0;
	  width: 100%; height: 100%;
	  z-index: -1;
	}
	body.page-porsche .fixed-bg {
	  background-image: url('/porsche/images/porsche-fon-1.jpg');
	}
	@media (max-width: 768px) {
	  body.page-porsche .fixed-bg {
		background-size: cover;
		background-position: center 55%;
	  }
	}
	body.page-audi .fixed-bg {
	  background-image: url('/audi/images/audi1.jpg');
	  background-size: cover;
	  background-position: center center;
	}
	@media (max-width: 768px) {
	  body.page-audi .fixed-bg {
		background-position: center 55%;
	  }
	}
	.top-bar {
	  position: sticky;
	  top: 0;
	  z-index: 1000;
	  box-shadow: 0 2px 20px rgba(0,0,0,0.12);
	}
	header {
	  display: flex; justify-content: center; align-items: center;
	  padding: 10px 20px; gap: 15px;
	  padding-bottom: 10px;
	  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(248,248,248,0.94) 100%);
	  border-bottom: none;
	  transition: padding 0.3s ease, box-shadow 0.3s ease;
	}
	header.header--compact {
	  padding: 8px 16px;
	  padding-bottom: 6px;
	  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
	}
	header.header--compact img {
	  height: 40px;
	  transition: height 0.3s ease;
	}
	/* Плавное скрытие блоков вместо display:none */
	header.header--compact .lang-block,
	header.header--compact .header-right {
	  max-width: 0 !important;
	  min-width: 0 !important;
	  overflow: hidden;
	  opacity: 0;
	  pointer-events: none;
	  padding: 0 !important;
	  margin: 0 !important;
	  transition: max-width 0.35s ease, opacity 0.35s ease;
	}
	/* Компактная шапка на мобильных: логотип и телефон в одну строку */
	header.header--compact .header-inner {
	  width: 100%;
	}
	header.header--compact .header-left {
	  min-height: auto;
	  flex-direction: row !important;
	  justify-content: space-between;
	  align-items: center;
	  width: 100%;
	  gap: 12px;
	}
	/* Телефон плавно едет вправо и выравнивается по центру по вертикали */
	header.header--compact .header-left .phone-block.phone-mobile {
	  left: calc(100% - 150px);
	  top: 50%;
	  transform: translateY(-50%);
	}
	header img { height: 60px; transition: height 0.3s ease; }

	/* Main navigation — second strip under header */
	.main-nav {
	  background: linear-gradient(90deg, #1a1d22 0%, #252a32 50%, #1a1d22 100%);
	  padding: 0;
	  border-bottom: 2px solid rgba(227, 6, 19, 0.5);
	}
	.nav-inner {
	  display: flex;
	  flex-wrap: wrap;
	  justify-content: center;
	  align-items: center;
	  gap: 2px;
	  max-width: var(--layout-max-width);
	  margin: 0 auto;
	  padding: 0 16px;
	}
	.main-nav a {
	  color: #e8eaed;
	  text-decoration: none;
	  font-size: 0.95rem;
	  font-weight: 500;
	  padding: 14px 18px;
	  transition: color 0.2s ease, background 0.2s ease;
	  border-radius: 6px;
	  margin: 4px 0;
	}
	.main-nav a:hover {
	  color: #fff;
	  background: rgba(227, 6, 19, 0.25);
	}
	/* USA dropdown — оформлен как отдельный модуль (карточка) */
	.nav-dropdown {
	  position: relative;
	  display: inline-block;
	}
	.nav-dropdown .nav-dropdown-toggle {
	  display: inline-flex;
	  align-items: center;
	  gap: 4px;
	}
	.nav-dropdown .nav-dropdown-toggle::after {
	  content: '';
	  width: 0;
	  height: 0;
	  border-left: 4px solid transparent;
	  border-right: 4px solid transparent;
	  border-top: 5px solid currentColor;
	  opacity: 0.8;
	}
	.nav-dropdown-menu {
	  position: absolute;
	  top: 100%;
	  left: 50%;
	  transform: translateX(-50%) translateY(-4px);
	  min-width: 200px;
	  margin-top: 8px;
	  padding: 0;
	  background: linear-gradient(180deg, #252a32 0%, #1e2228 100%);
	  border: 1px solid rgba(227, 6, 19, 0.35);
	  border-radius: 12px;
	  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06) inset;
	  opacity: 0;
	  visibility: hidden;
	  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
	  z-index: 100;
	  overflow: hidden;
	}
	.nav-dropdown:hover .nav-dropdown-menu,
	.nav-dropdown:focus-within .nav-dropdown-menu {
	  opacity: 1;
	  visibility: visible;
	  transform: translateX(-50%) translateY(0);
	}
	/* Заголовок модуля */
	.nav-dropdown-menu::before {
	  content: attr(data-title);
	  display: block;
	  padding: 12px 18px 10px;
	  font-size: 0.75rem;
	  font-weight: 700;
	  text-transform: uppercase;
	  letter-spacing: 0.08em;
	  color: rgba(227, 6, 19, 0.95);
	  background: rgba(227, 6, 19, 0.12);
	  border-bottom: 1px solid rgba(227, 6, 19, 0.25);
	}
	.nav-dropdown-menu a {
	  display: block;
	  padding: 12px 18px;
	  margin: 0;
	  border-radius: 0;
	  font-size: 0.95rem;
	  white-space: nowrap;
	  border-bottom: 1px solid rgba(255,255,255,0.06);
	}
	.nav-dropdown-menu a:last-child {
	  border-bottom: none;
	}
	.nav-dropdown-menu a:hover {
	  background: rgba(227, 6, 19, 0.18);
	  color: #fff;
	}
	@media (max-width: 900px) {
	  .nav-inner {
		justify-content: flex-start;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		flex-wrap: nowrap;
		padding: 10px 12px;
		gap: 4px;
	  }
	  .main-nav a {
		padding: 10px 14px;
		font-size: 0.88rem;
		white-space: nowrap;
	  }
	}

	.hero {
	  height: 85vh; display: flex;
	  flex-direction: column; justify-content: flex-end;
	  align-items: center; text-align: center;
	  padding-bottom: 40px;
	}
	.header-inner {
	  display: flex;
	  justify-content: space-between;
	  align-items: center;
	  max-width: var(--layout-max-width);
	  margin: 0 auto;
	  width: 100%;
	  position: relative;
	}
	
	.header-left {
	  display: flex;
	  align-items: center;
	  gap: 20px;
	}
	
	.header-right {
	  display: flex;
	  align-items: center;
	}
	
	/* Телефон в мобильной версии - скрыт на десктопе по умолчанию */
	.phone-block.phone-mobile {
	  display: none !important;
	}
	
	/* Телефон в десктопной версии - по центру */
	.header-inner .phone-block.phone-desktop {
	  display: flex !important;
	  position: absolute;
	  left: 50%;
	  top: 50%;
	  transform: translate(-50%, -50%);
	  z-index: 10;
	}
	.hero-text {
	  background-color: rgba(0,0,0,0.4);
	  padding: 20px; border-radius: 10px;
	  max-width: var(--layout-max-width); width: 90%;
	}
	.hero-text h1 { font-size: 2.2rem; margin: 10px 0; }
	.btn {
	  background: #e30613; color: #fff;
	  padding: 12px 24px; border: none; border-radius: 5px;
	  font-size: 1.2rem; cursor: pointer;
	  margin-top: 20px; display: inline-block;
	  transition: all 0.3s ease;
	}
	.btn:hover { background: #ff1a2a; transform: scale(1.05); }
	
	/* Убираем hover эффекты на мобильных устройствах */
	@media (hover: none) and (pointer: coarse) {
	  .btn:hover {
		background: #e30613;
		transform: none;
	  }
	}
	

	.section {
	  padding: 20px 20px; text-align: center;
	  background-color: rgba(0,0,0,0.6);
	  margin: 100px auto; border-radius: 10px;
	  max-width: var(--layout-max-width); width: 90%;
	}
	.section h2 {
	  font-size: 2rem; margin-bottom: 20px; color: #e30613;
	}
	.services {
	  display: flex; flex-wrap: wrap;
	  justify-content: center; gap: 20px;
	}
	.service {
	  background: rgba(20,20,20,0.8);
	  padding: 20px; border-radius: 10px;
	  width: 280px; border: 1px solid #333;
	  text-align: center;
	}
	.service img { width: 128px; margin-bottom: 1px; }
	.service h3 { margin-bottom: 10px; }
	.service p {
	  font-size: 0.9rem;
	  line-height: 1.4;
	  margin-top: 10px;
	  color: #ccc;
	}
	.why-choose {
	  display: flex; flex-wrap: wrap;
	  justify-content: center; gap: 20px;
	  margin-top: 30px;
	}
	.why-item {
	  background: rgba(20,20,20,0.8);
	  padding: 25px; border-radius: 10px;
	  width: 100%; max-width: 350px;
	  border: 1px solid #333;
	  text-align: left;
	}
	.why-item h3 {
	  color: #e30613;
	  font-size: 1.2rem;
	  margin-bottom: 12px;
	}
	.why-item p {
	  line-height: 1.6;
	  font-size: 0.95rem;
	  color: #ddd;
	}
	.brands {
	  display: flex; flex-wrap: wrap;
	  justify-content: center; gap: 30px;
	  margin-top: 30px;
	}
	.brand-group {
	  background: rgba(20,20,20,0.8);
	  padding: 25px; border-radius: 10px;
	  width: 100%; max-width: 350px;
	  border: 1px solid #333;
	  text-align: center;
	}
	.brand-group h3 {
	  color: #e30613;
	  font-size: 1.5rem;
	  margin-bottom: 15px;
	}
	.brand-group p {
	  line-height: 1.8;
	  font-size: 1rem;
	}
	.models {
	  display: flex; flex-wrap: wrap;
	  justify-content: center; gap: 15px;
	}
	.models img {
	  width: 250px; border-radius: 10px;
	  border: 2px solid #e30613;
	}
	.btn {
	  background: #e30613;
	  color: #fff;
	  padding: 12px 24px;
	  border: none;
	  border-radius: 5px;
	  font-size: 1.2rem;
	  cursor: pointer;
	  margin-top: 20px;
	  display: inline-block;
	  transition: all 0.3s ease;
	  text-decoration: none;
	}
	footer {
	  background-color: rgba(0, 0, 0, 0.8);
	  border-top: 1px solid #333;
	  padding: 15px 20px;
	  font-size: 0.9rem;
	  color: #aaa;
	}
	
	.footer-content {
	  display: flex;
	  justify-content: space-between;
	  align-items: center;
	  flex-wrap: wrap;
	  text-align: center;
	  gap: 15px;
	}
	
	.footer-content p {
	  margin: 5px 0;
	}
	
	.footer-center {
	  flex: 1;
	  min-width: 200px;
	}
	
	@media (max-width: 768px) {
	  .footer-content {
		flex-direction: column;
		text-align: center;
	  }
	  .footer-center {
		order: 2;
	  }
	}
	
	.footer-content a {
	  color: #e30613;
	  text-decoration: none;
	}
	
	.footer-content a:hover {
	  text-decoration: underline;
	}
	
	.footer-center {
	  flex: 1;
	}
	form {
	  max-width: 500px; margin: 0 auto;
	  text-align: left; width: 100%;
	}
	form input, form select, form textarea {
  width: 100%; padding: 10px; margin: 10px 0;
  border-radius: 5px; border: none; font-size: 1rem;
  background-color: #fff; color: #000; display: block;
}

/* Унифицируем цвет текста для всех элементов формы */
form input::placeholder {
  color: #999;
}

form textarea::placeholder {
  color: #999;
}

/* Стили для выпадающих списков */
form select {
  color: #000;
}

form select option {
  color: #000;
  background-color: #fff;
}

form select option:first-child {
  color: #999;
}

/* Для браузеров, которые поддерживают псевдоэлемент */
form select:invalid {
  color: #999;
}

form select:valid {
  color: #000;
}
	form select {
	  appearance: none; -webkit-appearance: none; -moz-appearance: none;
	  background: #fff url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="black"><path d="M4 6l4 4 4-4z"/></svg>') no-repeat right 10px center;
	  background-size: 16px 16px; padding-right: 30px;
	}
	form input, form select, form textarea {
	  border: 2px solid transparent;
	  transition: border-color 0.3s ease;
	}
	form input:focus, form select:focus, form textarea:focus {
	  border-color: #e30613;
	  outline: none;
	}
	form button {
	  width: 100%; padding: 12px;
	  background: #e30613; border: none;
	  border-radius: 5px; color: #fff; font-size: 1.2rem;
	  cursor: pointer; transition: all 0.3s ease;
	}
	form button:hover { background: #ff1a2a; transform: scale(1.05); }
	#phoneError {
	  color:#e30613; font-weight:bold; text-align:center;
	  font-size:1.1rem; display:none;
	  margin-top: 5px;
	  margin-bottom: 10px;
	}
	.popup {
	  display: none; position: fixed; z-index: 1000;
	  left: 0; top: 0; width: 100%; height: 100%;
	  background-color: rgba(0,0,0,0.7);
	  justify-content: center; align-items: center;
	  opacity: 0; transition: opacity 0.3s ease;
	}
	.popup.show { display: flex; opacity: 1; }
	.popup-content {
	  background-color: #111; padding: 30px;
	  border-radius: 10px; text-align: center;
	  max-width: 400px; width: 80%;
	  border: 2px solid #e30613; position: relative;
	  transform: scale(0.9); transition: transform 0.3s ease;
	}
	.popup.show .popup-content { transform: scale(1); }
	.popup-content p { font-size: 1.2rem; color: #fff; }
	.popup-close {
	  position: absolute; top: 10px; right: 15px;
	  font-size: 2rem; color: #fff; cursor: pointer;
	}

	/* Модалка: марка без отдельной страницы */
	.brand-modal {
	  display: none;
	  position: fixed;
	  inset: 0;
	  z-index: 3000;
	  align-items: center;
	  justify-content: center;
	  padding: 20px;
	  box-sizing: border-box;
	}
	.brand-modal.is-open {
	  display: flex;
	}
	.brand-modal__backdrop {
	  position: absolute;
	  inset: 0;
	  background: rgba(0, 0, 0, 0.65);
	  cursor: pointer;
	}
	.brand-modal__dialog {
	  position: relative;
	  z-index: 1;
	  max-width: 440px;
	  width: 100%;
	  background: #141414;
	  border: 1px solid rgba(227, 6, 19, 0.45);
	  border-radius: 14px;
	  padding: 28px 24px 22px;
	  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
	}
	.brand-modal__close {
	  position: absolute;
	  top: 8px;
	  right: 12px;
	  border: none;
	  background: transparent;
	  color: rgba(255, 255, 255, 0.75);
	  font-size: 1.75rem;
	  line-height: 1;
	  cursor: pointer;
	  padding: 4px 8px;
	  border-radius: 6px;
	}
	.brand-modal__close:hover {
	  color: #fff;
	  background: rgba(255, 255, 255, 0.08);
	}
	.brand-modal__title {
	  margin: 0 32px 14px 0;
	  font-size: 1.45rem;
	  font-weight: 700;
	  color: #fff;
	  letter-spacing: 0.02em;
	}
	.brand-modal__text {
	  margin: 0 0 18px;
	  font-size: 1.05rem;
	  line-height: 1.55;
	  color: rgba(255, 255, 255, 0.9);
	}
	.brand-modal__actions {
	  margin: 0;
	  font-size: 1rem;
	  display: flex;
	  flex-wrap: wrap;
	  align-items: center;
	  gap: 8px;
	}
	.brand-modal__phone {
	  color: #e30613;
	  font-weight: 600;
	  text-decoration: none;
	}
	.brand-modal__phone:hover {
	  text-decoration: underline;
	}
	.brand-modal__sep {
	  color: rgba(255, 255, 255, 0.35);
	}
	.brand-modal__form-link {
	  color: rgba(255, 255, 255, 0.95);
	  text-decoration: underline;
	  text-underline-offset: 3px;
	}
	.brand-modal__form-link:hover {
	  color: #fff;
	}

	.phone-block {
	  display: flex;
	  align-items: center;
	}
	
	.phone-link {
	  color: #8b0000;
	  font-weight: bold;
	  text-decoration: none;
	  font-size: 1.1rem;
	  transition: all 0.2s ease;
	  padding: 8px 12px;
	  border: 2px solid #8b0000;
	  border-radius: 5px;
	  background-color: rgba(139, 0, 0, 0.1);
	  white-space: nowrap;
	}
	
	.phone-link:hover {
	  background-color: #8b0000;
	  color: #fff;
	  transform: scale(1.05);
	}
	
	/* Убираем hover эффекты на мобильных устройствах */
	@media (hover: none) and (pointer: coarse) {
	  .phone-link:hover {
		background-color: rgba(139, 0, 0, 0.1);
		color: #8b0000;
		transform: none;
	  }
	}
	
	.lang-block {
	  display: flex;
	  flex-direction: column;
	  align-items: flex-end;
	  padding-right: 10px;
	  gap: 5px;
	}
	.lang-link {
	  color: #000;
	  font-weight: bold;
	  text-decoration: none;
	  font-size: 1rem;
	  transition: all 0.2s ease;
	}
	.lang-link:hover {
	  text-decoration: underline;
	}
	.lang-link.active {
	  font-weight: bold;
	  color: #8b0000;
	}
	@media (max-width: 768px) {
	  .hero-text h1 { font-size: 1.2rem; }
	  
	  /* Тонкий header на мобильных */
	  header {
		padding: 10px 20px;
	  }
	  
	  header img { 
		height: 45px; 
	  }
	  
	  /* Скрываем телефон в центре на мобильной */
	  .header-inner .phone-block.phone-desktop {
		display: none !important;
		position: static !important;
		transform: none !important;
	  }
	  
	  /* Показываем телефон в header-left на мобильной; позиция — для плавной анимации при скролле */
	  .header-left {
		position: relative;
		min-height: 96px;
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	  }
	  
	  .header-left .phone-block.phone-mobile {
		display: flex !important;
		position: absolute;
		left: 0;
		top: 53px;
		transform: translateY(0);
		transition: left 0.35s ease, top 0.35s ease, transform 0.35s ease;
	  }
	  
	  .header-right,
	  .lang-block {
		max-width: 999px;
		overflow: hidden;
		transition: max-width 0.35s ease, opacity 0.35s ease;
	  }
	  
	  .phone-link {
		font-size: 0.9rem;
		padding: 6px 10px;
	  }
	  
	  .header-right {
		flex-direction: column;
		align-items: flex-end;
	  }
	  
	  .lang-block {
		font-size: 0.8rem;
		align-items: flex-end;
		gap: 3px;
	  }
	  
	  .hero {
		height: 79vh; display: flex;
	  }
	}
	
	/* Для очень маленьких экранов */
	@media (max-width: 480px) {
	  header {
		padding: 8px 15px;
	  }
	  
	  header img { 
		height: 40px;
		transition: height 0.25s ease;
	  }
	  
	  /* Скрываем телефон в центре на маленьких экранах */
	  .header-inner .phone-block.phone-desktop {
		display: none !important;
		position: static !important;
		transform: none !important;
	  }
	  
	  /* Показываем телефон в header-left на маленьких экранах */
	  .header-left {
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
	  }
	  
	  .header-left .phone-block.phone-mobile {
		top: 46px;
	  }
	  
	  .phone-link {
		font-size: 0.85rem;
		padding: 5px 8px;
	  }
	  
	  .lang-block {
		font-size: 0.75rem;
		gap: 2px;
	  }
	}

	/* ============================================
	   НОВЫЙ ДИЗАЙН - СЕКЦИИ НИЖЕ HEADER
	   ============================================ */

	/* Container */
	.container {
	  max-width: var(--layout-max-width);
	  margin: 0 auto;
	  padding: 0 20px;
	}

	/* Модуль под шапкой — в стиле остальных модулей; z-index чтобы подменю не уходило под приветствие */
	.module-under-header {
	  padding: 0;
	  margin-top: 6px;
	  position: relative;
	  z-index: 500;
	}
	.module-under-header__inner {
	  max-width: var(--layout-max-width);
	  margin: 0 auto;
	  background: rgba(0, 0, 0, 0.42);
	  padding: 0;
	  border-radius: 18px;
	  backdrop-filter: blur(8px);
	  border: 1px solid rgba(255, 255, 255, 0.1);
	  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	  overflow: visible;
	}

	/* Меню = модуль, разделённый на сегменты (одна полоса до краёв, без отступов внутри) */
	.module-menu {
	  display: flex;
	  flex-wrap: wrap;
	  gap: 0;
	}
	/* Десктоп: основная панель в одну строку, подменю скрыто */
	.module-menu__panel--main {
	  display: flex;
	  flex-wrap: wrap;
	  flex: 1;
	  gap: 0;
	}
	.module-menu__panel--sub {
	  display: none;
	}
	.module-menu__btn {
	  flex: 1;
	  min-width: 70px;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  padding: 14px 12px;
	  min-height: 48px;
	  box-sizing: border-box;
	  color: rgba(255, 255, 255, 0.95);
	  text-decoration: none;
	  font-family: 'Roboto', sans-serif;
	  font-size: 1.2rem;
	  font-weight: 600;
	  letter-spacing: 1px;
	  text-transform: uppercase;
	  text-align: center;
	  background: transparent;
	  border: none;
	  border-right: 1px solid rgba(255, 255, 255, 0.12);
	  transition: background 0.2s ease, color 0.2s ease;
	}
	.module-menu > .module-menu__btn:first-child,
	.module-menu__panel--main > .module-menu__btn:first-child,
	.module-menu__panel--main > .module-menu__dropdown:first-child {
	  border-radius: 18px 0 0 18px;
	}
	.module-menu > .module-menu__btn:last-child,
	.module-menu__panel--main > .module-menu__btn:last-child,
	.module-menu__panel--main > .module-menu__dropdown:last-child {
	  border-right: none;
	  border-radius: 0 18px 18px 0;
	}
	.module-menu__btn:hover {
	  background: rgba(255, 255, 255, 0.12);
	  color: #fff;
	}
	/* Подсветка при hover не вылезает за скругление — обрезаем по border-radius кнопки */
	.module-menu__panel--main > .module-menu__btn:first-child,
	.module-menu__panel--main > .module-menu__btn:last-child,
	.module-menu__panel--main > .module-menu__dropdown:first-child,
	.module-menu__panel--main > .module-menu__dropdown:last-child {
	  overflow: hidden;
	}
	.module-menu__item--disabled {
	  cursor: default;
	}
	.module-menu__item--disabled:hover {
	  background: transparent;
	  color: inherit;
	}
	/* Выпадающее подменю (European → Porsche и др.) — ширина под полный текст, без обрезки */
	.module-menu__dropdown {
	  flex: 1 1 0%;
	  min-width: 155px;
	  position: relative;
	  display: flex;
	  align-items: stretch;
	  justify-content: center;
	  border-right: 1px solid rgba(255, 255, 255, 0.12);
	}
	/* Триггер European — такая же ссылка .module-menu__btn; текст в span, чтобы не вылезал за рамку */
	.module-menu__dropdown .module-menu__btn.module-menu__dropdown-toggle {
	  width: 100%;
	  min-width: 0;
	  box-sizing: border-box;
	  cursor: pointer;
	}
	.module-menu__dropdown .module-menu__btn.module-menu__dropdown-toggle span {
	  display: block;
	  text-align: center;
	}
	.module-menu__dropdown-menu {
	  position: absolute;
	  top: 100%;
	  left: 0;
	  right: 0;
	  margin-top: 4px;
	  min-width: 100%;
	  width: max-content;
	  padding: 10px 0;
	  background: #0d0d0d;
	  border: 1px solid rgba(255, 255, 255, 0.12);
	  border-radius: 12px;
	  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.5);
	  opacity: 0;
	  visibility: hidden;
	  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
	  transform: translateY(-4px);
	  z-index: 501;
	}
	/* Невидимый «мостик» между кнопкой и подменю — курсор не теряет hover при переходе */
	.module-menu__dropdown-menu::before {
	  content: '';
	  position: absolute;
	  bottom: 100%;
	  left: 0;
	  right: 0;
	  height: 12px;
	}
	.module-menu__dropdown:hover .module-menu__dropdown-menu,
	.module-menu__dropdown:focus-within .module-menu__dropdown-menu {
	  opacity: 1;
	  visibility: visible;
	  transform: translateY(0);
	}
	.module-menu__dropdown-menu a {
	  display: block;
	  padding: 12px 20px;
	  color: rgba(255, 255, 255, 0.95);
	  text-decoration: none;
	  font-family: 'Roboto', sans-serif;
	  font-size: 1.1rem;
	  font-weight: 600;
	  text-transform: uppercase;
	  letter-spacing: 1px;
	  white-space: nowrap;
	  text-align: center;
	  transition: background 0.2s ease, color 0.2s ease;
	}
	.module-menu__dropdown-menu a:hover {
	  background: #1a1a1a;
	  color: #fff;
	}
	/* Готовые страницы — яркий текст; заглушки — приглушённые */
	.module-menu__dropdown-menu a:not(.module-menu__brand-placeholder) {
	  color: rgba(255, 255, 255, 0.98);
	  font-weight: 600;
	}
	.module-menu__dropdown-menu a:not(.module-menu__brand-placeholder):hover {
	  background: #1a1a1a;
	  color: #fff;
	}
	.module-menu__dropdown-menu a.module-menu__brand-placeholder {
	  color: rgba(255, 255, 255, 0.55);
	  font-weight: 500;
	  cursor: pointer;
	}
	.module-menu__dropdown-menu a.module-menu__brand-placeholder:hover {
	  background: rgba(255, 255, 255, 0.06);
	  color: rgba(255, 255, 255, 0.72);
	}

	/* Кнопка-бургер: скрыта на десктопе, на мобильных — в том же стиле, что и полоска меню */
	.menu-burger {
	  display: none;
	  width: 100%;
	  min-height: 48px;
	  padding: 0 14px;
	  border: none;
	  border-radius: 18px;
	  background: transparent;
	  cursor: pointer;
	  align-items: center;
	  justify-content: center;
	  gap: 6px;
	  flex-direction: column;
	  color: rgba(255, 255, 255, 0.95);
	  overflow: visible;
	}
	.menu-burger:hover {
	  background: rgba(255, 255, 255, 0.12);
	}
	.menu-burger__line {
	  display: block;
	  width: 28px;
	  height: 2px;
	  background: currentColor;
	  border-radius: 1px;
	  transition: opacity 0.2s ease;
	  flex-shrink: 0;
	}

	/* ---------- Мобильное меню: узкая ширина ИЛИ альбом телефона (низкая высота) ---------- */
	@media (max-width: 700px), screen and (orientation: landscape) and (max-height: 520px) {
	  .module-under-header .container {
		padding-left: 12px;
		padding-right: 12px;
	  }
	  .module-under-header__inner {
		width: 100%;
		max-width: none;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		overflow: visible;
		transition: box-shadow 0.22s ease;
		/* backdrop-filter на узких экранах даёт «отстающий» фон в эмуляторах/слабом GPU */
		backdrop-filter: none;
		background: rgba(0, 0, 0, 0.82);
	  }
	  .module-under-header__inner.is-open {
		box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
	  }
	  /* Кнопка бургера: полная ширина, иконка по центру */
	  .menu-burger {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 6px;
		flex: 0 0 auto;
		width: 100%;
		min-height: 52px;
		padding: 14px 16px;
		box-sizing: border-box;
		border: none;
		border-radius: 18px 18px 0 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
		background: transparent;
		color: rgba(255, 255, 255, 0.95);
		cursor: pointer;
		position: relative;
		overflow: visible;
		transition: background 0.25s ease;
		-webkit-tap-highlight-color: transparent;
	  }
	  .menu-burger:hover {
		background: rgba(255, 255, 255, 0.12);
	  }
	  /* Закрыто: три полоски бургера с плавным исчезновением */
	  .menu-burger .menu-burger__line {
		width: 28px;
		height: 2px;
		transition: opacity 0.2s ease;
	  }
	  /* Крестик (::before/::after) — всегда в разметке, анимация появления */
	  .menu-burger::before,
	  .menu-burger::after {
		content: '';
		position: absolute;
		left: 50%;
		top: 50%;
		width: 22px;
		height: 2px;
		margin-left: -11px;
		margin-top: -1px;
		background: currentColor;
		border-radius: 1px;
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.2s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
	  }
	  .menu-burger::before {
		transform: rotate(45deg) scale(0.6);
	  }
	  .menu-burger::after {
		transform: rotate(-45deg) scale(0.6);
	  }
	  /* Открыто: полоски скрыты, крестик появляется с лёгким «пружинящим» масштабом */
	  .module-under-header__inner.is-open .menu-burger .menu-burger__line {
		opacity: 0;
		position: absolute;
		pointer-events: none;
	  }
	  .module-under-header__inner.is-open .menu-burger::before,
	  .module-under-header__inner.is-open .menu-burger::after {
		opacity: 1;
		pointer-events: none;
	  }
	  .module-under-header__inner.is-open .menu-burger::before {
		transform: rotate(45deg) scale(1);
	  }
	  .module-under-header__inner.is-open .menu-burger::after {
		transform: rotate(-45deg) scale(1);
	  }
	  /* Список пунктов: два экрана — основное меню и подменю «Европа» */
	  .module-menu {
		display: flex;
		flex-direction: column;
		flex: 0 0 auto;
		max-height: 0;
		overflow: hidden;
		border-radius: 0 0 18px 18px;
		transition: max-height 0.28s cubic-bezier(0.25, 0.8, 0.25, 1);
	  }
	  .module-under-header__inner.is-open .module-menu {
		max-height: 85vh;
		overflow: visible;
	  }
	  .module-menu__panel {
		display: flex;
		flex-direction: column;
		flex: 0 0 auto;
	  }
	  .module-menu__panel--sub {
		display: none;
		position: absolute;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		background: rgba(0, 0, 0, 0.42);
		border-radius: 0 0 18px 18px;
		flex-direction: column;
	  }
	  .module-menu.is-submenu-open .module-menu__panel--main {
		display: none;
	  }
	  .module-menu.is-submenu-open .module-menu__panel--sub {
		display: none;
		position: static;
	  }
	  .module-menu.is-submenu-open .module-menu__panel--sub.submenu-visible {
		display: flex;
	  }
	  /* Кнопка «Назад» в подменю */
	  .module-menu__back {
		display: flex;
		align-items: center;
		gap: 8px;
		width: 100%;
		min-height: 48px;
		padding: 14px 16px;
		margin: 0;
		border: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
		border-radius: 0;
		background: rgba(255, 255, 255, 0.08);
		color: rgba(255, 255, 255, 0.95);
		font-family: 'Roboto', sans-serif;
		font-size: 1rem;
		font-weight: 600;
		text-transform: uppercase;
		letter-spacing: 1px;
		cursor: pointer;
		-webkit-tap-highlight-color: transparent;
		transition: background 0.2s ease;
	  }
	  .module-menu__back::before {
		content: '←';
		font-size: 1.2em;
	  }
	  .module-menu__back:hover {
		background: rgba(255, 255, 255, 0.15);
	  }
	  /* На мобильных выпадающий список внутри основного меню не раскрывается */
	  .module-menu__panel--main .module-menu__dropdown-menu {
		display: none !important;
	  }
	  /* Пункты основного меню: каскад появления */
	  .module-menu__panel--main > .module-menu__btn,
	  .module-menu__panel--main > .module-menu__dropdown {
		opacity: 0;
		transform: translateY(-4px);
		transition: opacity 0.26s ease, transform 0.26s ease, background 0.2s ease;
	  }
	  .module-under-header__inner.is-open .module-menu__panel--main > .module-menu__btn,
	  .module-under-header__inner.is-open .module-menu__panel--main > .module-menu__dropdown {
		opacity: 1;
		transform: translateY(0);
	  }
	  .module-under-header__inner.is-open .module-menu__panel--main > .module-menu__btn:nth-child(1),
	  .module-under-header__inner.is-open .module-menu__panel--main > .module-menu__dropdown:nth-child(1) { transition-delay: 0.02s; }
	  .module-under-header__inner.is-open .module-menu__panel--main > .module-menu__btn:nth-child(2),
	  .module-under-header__inner.is-open .module-menu__panel--main > .module-menu__dropdown:nth-child(2) { transition-delay: 0.04s; }
	  .module-under-header__inner.is-open .module-menu__panel--main > .module-menu__btn:nth-child(3),
	  .module-under-header__inner.is-open .module-menu__panel--main > .module-menu__dropdown:nth-child(3) { transition-delay: 0.06s; }
	  .module-under-header__inner.is-open .module-menu__panel--main > .module-menu__btn:nth-child(4),
	  .module-under-header__inner.is-open .module-menu__panel--main > .module-menu__dropdown:nth-child(4) { transition-delay: 0.08s; }
	  .module-under-header__inner.is-open .module-menu__panel--main > .module-menu__btn:nth-child(5),
	  .module-under-header__inner.is-open .module-menu__panel--main > .module-menu__dropdown:nth-child(5) { transition-delay: 0.1s; }
	  .module-under-header__inner.is-open .module-menu__panel--main > .module-menu__btn:nth-child(6),
	  .module-under-header__inner.is-open .module-menu__panel--main > .module-menu__dropdown:nth-child(6) { transition-delay: 0.12s; }
	  .module-under-header__inner.is-open .module-menu__panel--main > .module-menu__btn:nth-child(7),
	  .module-under-header__inner.is-open .module-menu__panel--main > .module-menu__dropdown:nth-child(7) { transition-delay: 0.14s; }
	  .module-under-header__inner.is-open .module-menu__panel--main > .module-menu__btn:nth-child(8),
	  .module-under-header__inner.is-open .module-menu__panel--main > .module-menu__dropdown:nth-child(8) { transition-delay: 0.16s; }
	  .module-under-header__inner.is-open .module-menu__panel--main > .module-menu__btn:nth-child(9),
	  .module-under-header__inner.is-open .module-menu__panel--main > .module-menu__dropdown:nth-child(9) { transition-delay: 0.18s; }
	  .module-under-header__inner.is-open .module-menu__panel--main > .module-menu__btn:nth-child(10),
	  .module-under-header__inner.is-open .module-menu__panel--main > .module-menu__dropdown:nth-child(10) { transition-delay: 0.2s; }
	  .module-menu__panel--main > .module-menu__btn,
	  .module-menu__panel--main .module-menu__dropdown .module-menu__dropdown-toggle,
	  .module-menu__panel--sub > .module-menu__btn {
		min-width: 0;
		flex: 0 0 auto;
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
		border-radius: 0 !important;
		padding: 14px 16px;
		font-size: 1rem;
		justify-content: flex-start;
		-webkit-tap-highlight-color: transparent;
	  }
	  .module-menu__panel--sub > .module-menu__btn:not(.module-menu__brand-placeholder) {
		color: rgba(255, 255, 255, 0.98);
		font-weight: 600;
	  }
	  .module-menu__panel--sub > .module-menu__btn.module-menu__brand-placeholder {
		color: rgba(255, 255, 255, 0.55);
		font-weight: 500;
	  }
	  .module-menu__panel--sub > .module-menu__btn.module-menu__brand-placeholder:hover {
		background: rgba(255, 255, 255, 0.06);
		color: rgba(255, 255, 255, 0.72);
	  }
	  .module-menu__panel--main > .module-menu__btn:first-child {
		border-radius: 0 !important;
	  }
	  .module-menu__panel--main > .module-menu__btn:last-child,
	  .module-menu__panel--main > .module-menu__dropdown:last-child,
	  .module-menu__panel--main > *:last-child {
		border-bottom: none;
	  }
	  .module-menu__dropdown {
		flex: 0 0 auto;
		min-width: 0;
		flex-direction: column;
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	  }
	  .module-menu__dropdown .module-menu__dropdown-toggle {
		justify-content: flex-start;
		text-align: left;
	  }
	  .module-menu__dropdown .module-menu__dropdown-toggle span {
		text-align: left;
	  }
	  .module-menu__dropdown-menu {
		left: 0;
		right: 0;
		transform: none;
		position: static;
		opacity: 1;
		visibility: visible;
		max-height: 0;
		overflow: hidden;
		padding: 0;
		margin: 0;
		border: none;
		border-radius: 0;
		box-shadow: none;
		background: rgba(0, 0, 0, 0.25);
		transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	  }
	  .module-menu__dropdown.is-open .module-menu__dropdown-menu {
		max-height: 400px;
		padding: 6px 0 10px 0;
	  }
	  .module-menu__dropdown-menu::before {
		display: none;
	  }
	  .module-menu__dropdown-menu a {
		display: block;
		padding: 12px 16px 12px 32px;
		font-size: 0.95rem;
		text-align: left;
		border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	  }
	  .module-menu__dropdown-menu a:last-child {
		border-bottom: none;
	  }
	  .module-menu__dropdown-menu a:not(.module-menu__brand-placeholder) {
		color: rgba(255, 255, 255, 0.98);
		font-weight: 600;
	  }
	  .module-menu__dropdown-menu a.module-menu__brand-placeholder {
		color: rgba(255, 255, 255, 0.55);
		font-weight: 500;
	  }
	  .module-menu__dropdown-menu a.module-menu__brand-placeholder:hover {
		background: rgba(255, 255, 255, 0.06);
		color: rgba(255, 255, 255, 0.72);
	  }
	  .module-menu__dropdown:hover .module-menu__dropdown-menu,
	  .module-menu__dropdown:focus-within .module-menu__dropdown-menu {
		transform: none;
	  }
	}

	/* Hero New Section */
	.hero-new {
	  min-height: 70vh;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  padding: 80px 20px;
	  position: relative;
	}

	.hero-content {
	  width: 100%;
	  max-width: var(--layout-max-width);
	  text-align: center;
	}

	.hero-main {
	  background: rgba(0, 0, 0, 0.7);
	  padding: 60px 40px;
	  border-radius: 20px;
	  backdrop-filter: blur(10px);
	  border: 0.5px solid rgba(255, 255, 255, 0.1);
	}

	.hero-title {
	  font-size: 3rem;
	  font-weight: 700;
	  margin: 0 0 20px 0;
	  color: #fff;
	  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
	}

	.hero-subtitle {
	  font-size: 1.5rem;
	  color: #e30613;
	  margin: 0 0 30px 0;
	  font-weight: 500;
	}

	.hero-features {
	  display: flex;
	  justify-content: center;
	  gap: 20px;
	  flex-wrap: wrap;
	  margin: 30px 0;
	}

	.hero-feature {
	  background: rgba(227, 6, 19, 0.2);
	  color: #fff;
	  padding: 10px 20px;
	  border-radius: 25px;
	  font-size: 0.95rem;
	  border: 1px solid rgba(227, 6, 19, 0.4);
	}

	.btn-hero {
	  display: inline-block;
	  background: #e30613;
	  color: #fff;
	  padding: 15px 40px;
	  border-radius: 8px;
	  text-decoration: none;
	  font-size: 1.2rem;
	  font-weight: 600;
	  margin-top: 20px;
	  transition: all 0.3s ease;
	}

	.btn-hero:hover {
	  background: #ff1a2a;
	  transform: translateY(-2px);
	  box-shadow: 0 5px 20px rgba(227, 6, 19, 0.4);
	}

	/* Section New */
	.section-new {
	  padding: 0;
	  position: relative;
	}

	section.section-new {
	  padding-top: 10px;
	}

	.section-title {
	  font-size: 2.4rem;
	  font-weight: 700;
	  text-align: center;
	  margin: 0 0 50px 0;
	  color: #fff;
	  letter-spacing: 0.02em;
	  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.85);
	}

	/* Why Section */
	.why-grid {
	  display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	  gap: 30px;
	  margin-top: 40px;
	}

	.why-card {
	  background: rgba(20, 20, 20, 0.9);
	  padding: 30px;
	  border-radius: 15px;
	  text-align: center;
	  border: 0.5px solid rgba(255, 255, 255, 0.1);
	  transition: all 0.3s ease;
	}

	.why-card:hover {
	  transform: translateY(-5px);
	  border-color: rgba(227, 6, 19, 0.5);
	  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	}

	.why-icon {
	  margin-bottom: 15px;
	  display: flex;
	  justify-content: center;
	  align-items: center;
	}

	.why-icon svg {
	  width: 48px;
	  height: 48px;
	}

	.why-card h3 {
	  color: #e30613;
	  font-size: 1.3rem;
	  margin: 0 0 15px 0;
	}

	.why-card p {
	  color: #ddd;
	  line-height: 1.6;
	  margin: 0;
	}

	/* Services Section */
	.services-grid {
	  display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	  gap: 25px;
	  margin-top: 40px;
	}

	.service-card {
	  background: rgba(20, 20, 20, 0.9);
	  padding: 30px 20px;
	  border-radius: 15px;
	  text-align: center;
	  border: 0.5px solid rgba(255, 255, 255, 0.1);
	  transition: all 0.3s ease;
	}

	.service-card:hover {
	  transform: translateY(-8px);
	  border-color: rgba(227, 6, 19, 0.5);
	  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
	}

	.service-icon {
	  margin-bottom: 20px;
	}

	.service-icon img {
	  width: 80px;
	  height: 80px;
	  object-fit: contain;
	}

	.service-card h3 {
	  color: #fff;
	  font-size: 1.2rem;
	  margin: 0 0 15px 0;
	}

	.service-card p {
	  color: #ccc;
	  line-height: 1.5;
	  font-size: 0.95rem;
	  margin: 0;
	}

	/* Brands Section */
	.brands-grid {
	  display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	  gap: 30px;
	  margin-top: 40px;
	}

	.brand-card {
	  background: rgba(20, 20, 20, 0.9);
	  padding: 30px;
	  border-radius: 15px;
	  border: 0.5px solid rgba(255, 255, 255, 0.1);
	}

	.brand-card h3 {
	  color: #e30613;
	  font-size: 1.5rem;
	  margin: 0 0 20px 0;
	  text-align: center;
	}

	.brand-list {
	  display: flex;
	  flex-wrap: wrap;
	  gap: 10px;
	  justify-content: center;
	}

	.brand-list span {
	  background: rgba(227, 6, 19, 0.15);
	  color: #fff;
	  padding: 8px 15px;
	  border-radius: 8px;
	  font-size: 0.9rem;
	  border: 1px solid rgba(227, 6, 19, 0.3);
	}

	/* Form Section */
	.form-section {
	  padding: 80px 20px;
	  position: relative;
	  scroll-margin-top: 100px;
	}

	.form-content {
	  max-width: var(--layout-max-width);
	  margin: 0 auto;
	  background: rgba(0, 0, 0, 0.4);
	  padding: 50px 40px;
	  border-radius: 18px;
	  backdrop-filter: blur(2px);
	  border: 1px solid rgba(255, 255, 255, 0.12);
	  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
	}

	.form-section .section-title {
	  margin-bottom: 35px;
	}

	.form-wrapper {
	  max-width: 600px;
	  margin: 0 auto;
	}

	.form-row {
	  display: grid;
	  grid-template-columns: 1fr 1fr 1fr;
	  gap: 15px;
	  margin-bottom: 15px;
	}

	/* Главная: телефон, марка, модель, год — одна строка (доли колонок настроим отдельно) */
	.form-row.form-row--inline-4 {
	  grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	/* Porsche / Audi: телефон, модель, год — одна строка */
	.form-row.form-row--inline-3 {
	  grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.form-wrapper input,
	.form-wrapper select,
	.form-wrapper textarea {
	  width: 100%;
	  padding: 12px;
	  border-radius: 8px;
	  border: 2px solid rgba(255, 255, 255, 0.2);
	  background: rgba(255, 255, 255, 0.95);
	  color: #000;
	  font-size: 1rem;
	}

	.form-wrapper textarea {
	  grid-column: 1 / -1;
	  resize: vertical;
	}

	.form-wrapper input:focus,
	.form-wrapper select:focus,
	.form-wrapper textarea:focus {
	  outline: none;
	  border-color: #e30613;
	}

	.btn-submit {
	  width: 100%;
	  padding: 15px;
	  background: #e30613;
	  color: #fff;
	  border: none;
	  border-radius: 8px;
	  font-size: 1.2rem;
	  font-weight: 600;
	  cursor: pointer;
	  transition: all 0.3s ease;
	  margin-top: 15px;
	}

	.btn-submit:hover {
	  background: #ff1a2a;
	  transform: translateY(-2px);
	  box-shadow: 0 5px 20px rgba(227, 6, 19, 0.4);
	}

	/* Contact Section Styles */
	.contact-section {
	  width: 100%;
	  position: relative;
	  display: flex;
	  flex-direction: column;
	}

	.contact-content {
	  width: 100%;
	  background: rgba(0, 0, 0, 0.5);
	  padding: 50px 20px 0 20px;
	  margin: 0;
	}

	.contact-section .container {
	  margin-bottom: 0;
	  padding-bottom: 50px;
	}

	.contacts-grid {
	  display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	  gap: 30px;
	  margin-top: 40px;
	}

	.contact-card {
	  background: rgba(20, 20, 20, 0.9);
	  padding: 30px;
	  border-radius: 15px;
	  border: 0.5px solid rgba(255, 255, 255, 0.1);
	}

	.contact-card h2 {
	  color: #e30613;
	  font-size: 1.8rem;
	  margin: 0 0 25px 0;
	}

	.hours-list {
	  display: flex;
	  flex-direction: column;
	  gap: 15px;
	}

	.hours-item {
	  display: flex;
	  justify-content: space-between;
	  align-items: center;
	  padding: 15px;
	  background: rgba(0, 0, 0, 0.4);
	  border-radius: 8px;
	}

	.hours-item .day {
	  color: #fff;
	  font-weight: 500;
	}

	.hours-item .time {
	  color: #e30613;
	  font-weight: 600;
	}

	.contact-info {
	  display: flex;
	  flex-direction: column;
	  gap: 20px;
	}

	.contact-info .contact-item {
	  color: rgba(255, 255, 255, 0.9);
	  line-height: 1.6;
	  margin: 0;
	}

	.contact-info .contact-item strong {
	  color: #e30613;
	}

	.contact-info .contact-item a {
	  color: rgba(255, 255, 255, 0.9);
	  text-decoration: none;
	  transition: color 0.3s ease;
	}

	.contact-info .contact-item a:hover {
	  color: #e30613;
	}

	.contact-item--address strong {
	  display: block;
	  margin-bottom: 6px;
	}

	.contact-address-block {
	  display: flex;
	  flex-direction: column;
	  align-items: stretch;
	  gap: 10px;
	  width: 100%;
	}

	.contact-address-top {
	  display: flex;
	  align-items: flex-start;
	  gap: 12px;
	  width: 100%;
	}

	.contact-address-lines {
	  flex: 1;
	  min-width: 0;
	}

	.contact-address-maps {
	  display: none;
	}

	.contact-address-copy {
	  flex-shrink: 0;
	  display: inline-flex;
	  align-items: center;
	  justify-content: center;
	  width: 38px;
	  height: 38px;
	  padding: 0;
	  border: 1px solid rgba(255, 255, 255, 0.28);
	  border-radius: 8px;
	  background: rgba(255, 255, 255, 0.08);
	  color: rgba(255, 255, 255, 0.95);
	  cursor: pointer;
	  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
	}

	.contact-address-copy:hover {
	  background: rgba(227, 6, 19, 0.22);
	  border-color: rgba(227, 6, 19, 0.55);
	  color: #fff;
	}

	.contact-address-copy:focus-visible {
	  outline: 2px solid #e30613;
	  outline-offset: 2px;
	}

	.contact-address-copy.is-copied {
	  border-color: rgba(74, 222, 128, 0.75);
	  background: rgba(74, 222, 128, 0.12);
	  color: #86efac;
	}

	/* Кнопки Apple / Google Maps — только мобильная версия */
	.contact-address-maps-apple,
	.contact-address-maps-google {
	  display: none;
	  align-items: center;
	  justify-content: center;
	  min-height: 38px;
	  padding: 0 12px;
	  border: 1px solid rgba(255, 255, 255, 0.28);
	  border-radius: 8px;
	  background: rgba(255, 255, 255, 0.08);
	  color: rgba(255, 255, 255, 0.95);
	  font-size: 0.8rem;
	  font-weight: 600;
	  line-height: 1.2;
	  text-align: center;
	  text-decoration: none;
	  max-width: 118px;
	  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
	}

	.contact-address-maps-apple:hover,
	.contact-address-maps-google:hover {
	  background: rgba(227, 6, 19, 0.22);
	  border-color: rgba(227, 6, 19, 0.55);
	  color: #fff;
	}

	.contact-address-maps-apple:focus-visible,
	.contact-address-maps-google:focus-visible {
	  outline: 2px solid #e30613;
	  outline-offset: 2px;
	}

	@media (max-width: 768px) {
	  .contact-address-maps {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
		width: 100%;
	  }
	  .contact-address-maps-apple,
	  .contact-address-maps-google {
		display: flex;
		width: 100%;
		max-width: none;
		min-height: 44px;
		font-size: 0.8rem;
		padding: 10px 14px;
		box-sizing: border-box;
	  }
	}

	.map-wrapper {
	  width: 100%;
	  position: relative;
	  margin: 0 !important;
	  padding: 0 !important;
	  min-height: 400px;
	  background: #1a1a1a;
	  contain: layout style;
	}

	.map-wrapper iframe {
	  width: 100%;
	  height: 400px;
	  border: 0;
	  display: block;
	}

	.map-overlay {
	  position: absolute;
	  top: 0;
	  left: 0;
	  width: 100%;
	  height: 100%;
	  background: rgba(0, 0, 0, 0.2);
	  pointer-events: none;
	  z-index: 1;
	}

	/* Contacts Section */
	.contacts-grid {
	  display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	  gap: 30px;
	  margin-bottom: 40px;
	}

	.contact-card {
	  background: rgba(20, 20, 20, 0.9);
	  padding: 30px;
	  border-radius: 15px;
	  border: 0.5px solid rgba(255, 255, 255, 0.1);
	}

	.contact-card h2 {
	  color: #e30613;
	  font-size: 1.8rem;
	  margin: 0 0 25px 0;
	}

	.hours-list {
	  display: flex;
	  flex-direction: column;
	  gap: 15px;
	}

	.hours-item {
	  display: flex;
	  justify-content: space-between;
	  align-items: center;
	  padding: 15px;
	  background: rgba(0, 0, 0, 0.4);
	  border-radius: 8px;
	}

	.hours-item .day {
	  color: #fff;
	  font-weight: 500;
	}

	.hours-item .time {
	  color: #e30613;
	  font-weight: 600;
	}

	.hours-note {
	  margin-top: 20px;
	  padding: 15px;
	  background: rgba(227, 6, 19, 0.1);
	  border-left: 3px solid rgba(227, 6, 19, 0.5);
	  border-radius: 5px;
	  color: rgba(255, 255, 255, 0.9);
	  font-size: 0.95rem;
	  line-height: 1.5;
	}

	.contact-info {
	  display: flex;
	  flex-direction: column;
	  gap: 20px;
	}

	.contact-item {
	  color: #ddd;
	  line-height: 1.8;
	}

	.contact-item strong {
	  color: #fff;
	}

	.contact-item a {
	  color: #e30613;
	  text-decoration: none;
	}

	.contact-item a:hover {
	  text-decoration: underline;
	}

	/* Responsive */
	@media (max-width: 768px) {
	  .hero-title {
		font-size: 2rem;
	  }

	  .hero-subtitle {
		font-size: 1.2rem;
	  }

	  .hero-features {
		flex-direction: column;
		align-items: center;
	  }

	  .section-title {
		font-size: 2rem;
	  }

	  .why-grid,
	  .services-grid,
	  .brands-grid {
		grid-template-columns: 1fr;
	  }

	  .form-row {
		grid-template-columns: 1fr !important;
	  }
	  
	  /* Гарантируем одну колонку для всех строк формы на мобильных */
	  .form-row:first-child {
		grid-template-columns: 1fr !important;
	  }
	  
	  .form-row:has(select#brand) {
		grid-template-columns: 1fr !important;
	  }

	  .form-row:has(#brand[data-fixed-brand]) {
		grid-template-columns: 1fr !important;
	  }

	  .contacts-grid {
		grid-template-columns: 1fr;
	  }

	  .hero-main {
		padding: 40px 20px;
	  }
	}

	/* VAG Section Styles */
	.vag-section {
	  background: transparent;
	  position: relative;
	}

	.vag-content {
	  position: relative;
	  z-index: 1;
	  max-width: var(--layout-max-width);
	  margin: 0 auto;
	  text-align: center;
	}

	.vag-title {
	  font-size: 2.8rem;
	  font-weight: 700;
	  color: #fff;
	  margin: 0 0 40px 0;
	  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
	}

	.vag-brands-groups {
	  display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	  gap: 30px;
	  margin-bottom: 50px;
	}

	.brand-group-card {
	  background: rgba(20, 20, 20, 0.7);
	  border: 0.5px solid rgba(255, 255, 255, 0.1);
	  border-radius: 15px;
	  padding: 25px;
	  transition: all 0.3s ease;
	}

	.brand-group-card:hover {
	  border-color: rgba(227, 6, 19, 0.5);
	  box-shadow: 0 5px 20px rgba(227, 6, 19, 0.2);
	  transform: translateY(-3px);
	}

	.brand-group-title {
	  color: #e30613;
	  font-size: 1.2rem;
	  font-weight: 600;
	  margin: 0 0 20px 0;
	  text-align: center;
	  text-transform: uppercase;
	  letter-spacing: 1px;
	}

	.vag-brands {
	  display: flex;
	  flex-wrap: wrap;
	  justify-content: center;
	  gap: 12px;
	}

	.vag-brand {
	  background: rgba(227, 6, 19, 0.15);
	  border: 2px solid rgba(227, 6, 19, 0.4);
	  color: #fff;
	  padding: 12px 24px;
	  border-radius: 25px;
	  font-size: 1.1rem;
	  font-weight: 600;
	  transition: all 0.3s ease;
	  backdrop-filter: blur(10px);
	}

	.vag-brand:hover {
	  background: rgba(227, 6, 19, 0.3);
	  border-color: #e30613;
	  transform: translateY(-3px);
	  box-shadow: 0 5px 15px rgba(227, 6, 19, 0.3);
	}

	.vag-services {
	  display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	  gap: 30px;
	  margin-bottom: 40px;
	}

	.vag-service-item {
	  background: rgba(20, 20, 20, 0.9);
	  padding: 35px 25px;
	  border-radius: 15px;
	  border: 0.5px solid rgba(255, 255, 255, 0.1);
	  transition: all 0.3s ease;
	  text-align: center;
	}

	.vag-service-item:hover {
	  transform: translateY(-5px);
	  border-color: rgba(227, 6, 19, 0.5);
	  box-shadow: 0 10px 30px rgba(227, 6, 19, 0.2);
	  background: rgba(30, 30, 30, 0.95);
	}

	.vag-service-icon {
	  font-size: 3rem;
	  margin-bottom: 20px;
	  display: block;
	}

	.vag-service-item h3 {
	  color: #e30613;
	  font-size: 1.3rem;
	  font-weight: 600;
	  margin: 0 0 15px 0;
	}

	.vag-service-item p {
	  color: #ddd;
	  line-height: 1.6;
	  margin: 0;
	  font-size: 1rem;
	}

	.vag-year {
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  gap: 15px;
	  background: rgba(227, 6, 19, 0.1);
	  border: 2px solid rgba(227, 6, 19, 0.3);
	  padding: 20px 30px;
	  border-radius: 15px;
	  margin-bottom: 30px;
	  font-size: 1.1rem;
	  color: #fff;
	}

	.vag-year-badge {
	  background: #e30613;
	  color: #fff;
	  width: 35px;
	  height: 35px;
	  border-radius: 50%;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  font-size: 1.5rem;
	  font-weight: bold;
	  flex-shrink: 0;
	}

	.vag-year strong {
	  color: #e30613;
	  font-size: 1.3rem;
	}

	/* Responsive для VAG секции */
	@media (max-width: 768px) {
	  .vag-title {
		font-size: 2rem;
	  }

	  .vag-brands-groups {
		grid-template-columns: 1fr;
		gap: 20px;
	  }

	  .brand-group-card {
		padding: 20px;
	  }

	  .brand-group-title {
		font-size: 1rem;
		margin-bottom: 15px;
	  }

	  .vag-brands {
		gap: 10px;
	  }

	  .vag-brand {
		padding: 10px 18px;
		font-size: 0.95rem;
	  }

	  .vag-services {
		grid-template-columns: 1fr;
		gap: 20px;
	  }

	  .vag-service-item {
		padding: 25px 20px;
	  }

	  .vag-year {
		flex-direction: column;
		text-align: center;
		padding: 15px 20px;
		font-size: 1rem;
	  }
	}

	/* HERO Section Styles */
	.hero-section {
	  min-height: 70vh;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  padding: 80px 20px;
	  text-align: center;
	  position: relative;
	}

	.hero-content {
	  max-width: 900px;
	  margin: 0 auto;
	  background: rgba(0, 0, 0, 0.5);
	  padding: 60px 40px;
	  border-radius: 20px;
	  backdrop-filter: blur(10px);
	  border: 0.5px solid rgba(255, 255, 255, 0.1);
	}

	.hero-title {
	  font-size: 3.2rem;
	  font-weight: 700;
	  color: #fff;
	  margin: 0 0 25px 0;
	  line-height: 1.2;
	  text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.9);
	}

	.hero-title-accent {
	  color: #e30613;
	  display: block;
	  margin-top: 10px;
	}

	.hero-subtitle {
	  font-size: 1.3rem;
	  color: rgba(255, 255, 255, 0.9);
	  line-height: 1.6;
	  margin: 0 0 35px 0;
	  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
	}

	.btn-hero {
	  display: inline-block;
	  background: #e30613;
	  color: #fff;
	  padding: 18px 45px;
	  border-radius: 50px;
	  font-size: 1.2rem;
	  font-weight: 600;
	  text-decoration: none;
	  transition: all 0.3s ease;
	  box-shadow: 0 5px 20px rgba(227, 6, 19, 0.4);
	}

	.btn-hero:hover {
	  background: #ff1a2a;
	  transform: translateY(-3px);
	  box-shadow: 0 8px 30px rgba(227, 6, 19, 0.6);
	}

	/* About Section Styles */
	.about-section {
	  padding: 80px 20px;
	  background: rgba(0, 0, 0, 0.4);
	}

	.about-content {
	  max-width: 800px;
	  margin: 0 auto;
	  background: rgba(20, 20, 20, 0.7);
	  padding: 50px 40px;
	  border-radius: 15px;
	  border: 0.5px solid rgba(255, 255, 255, 0.1);
	}

	.about-intro {
	  font-size: 1.4rem;
	  color: #fff;
	  margin-bottom: 25px;
	}

	.about-intro strong {
	  color: #e30613;
	  font-size: 1.6rem;
	}

	.about-content p {
	  font-size: 1.1rem;
	  line-height: 1.8;
	  color: rgba(255, 255, 255, 0.9);
	  margin-bottom: 20px;
	}

	.about-highlight {
	  background: rgba(227, 6, 19, 0.1);
	  border-left: 4px solid #e30613;
	  padding: 20px 25px;
	  margin-top: 30px;
	  font-weight: 500;
	}

	/* Problems Section Styles */
	.problems-section {
	  padding: 80px 20px;
	}

	.section-subtitle {
	  text-align: center;
	  font-size: 1.3rem;
	  color: rgba(255, 255, 255, 0.9);
	  margin-bottom: 40px;
	}

	.problems-grid {
	  display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	  gap: 25px;
	  margin-top: 40px;
	}

	.problem-item {
	  background: rgba(20, 20, 20, 0.7);
	  padding: 30px 25px;
	  border-radius: 15px;
	  border: 0.5px solid rgba(255, 255, 255, 0.1);
	  text-align: center;
	  transition: all 0.3s ease;
	}

	.problem-item:hover {
	  transform: translateY(-5px);
	  border-color: rgba(227, 6, 19, 0.5);
	  box-shadow: 0 10px 30px rgba(227, 6, 19, 0.2);
	}

	.problem-icon {
	  font-size: 3rem;
	  margin-bottom: 15px;
	}

	.problem-item h3 {
	  color: #fff;
	  font-size: 1.1rem;
	  font-weight: 500;
	  margin: 0;
	  line-height: 1.4;
	}


	/* Brands Section Styles */
	.brands-section {
	  padding: 20px 20px 40px 20px;
	  position: relative;
	}

	.brands-content {
	  max-width: var(--layout-max-width);
	  margin: 0 auto;
	  background: rgba(0, 0, 0, 0.4);
	  padding: 30px 24px;
	  border-radius: 15px;
	  backdrop-filter: blur(1px);
	  border: 0.5px solid rgba(255, 255, 255, 0.1);
	  overflow: hidden;
	  max-height: 340px;
	}

	.brands-track {
	  display: flex;
	  flex-direction: column;
	  animation: brandsCredits 40s linear infinite;
	}
	.brands-track-inner {
	  flex-shrink: 0;
	}
	@keyframes brandsCredits {
	  0% { transform: translateY(0); }
	  100% { transform: translateY(-50%); }
	}

	.brands-list {
	  display: flex;
	  flex-wrap: wrap;
	  justify-content: center;
	  align-items: center;
	  width: 100%;
	  gap: 12px 0;
	}

	.brand-item {
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  color: rgba(255, 255, 255, 0.98);
	  padding: 8px 14px;
	  font-size: 1.2rem;
	  font-weight: 600;
	  letter-spacing: 1px;
	  text-transform: uppercase;
	  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
	  flex: 0 1 auto;
	  position: relative;
	}

	.brand-item:not(:first-child)::before {
	  content: '';
	  position: absolute;
	  left: 0;
	  top: 50%;
	  transform: translateY(-50%);
	  width: 1px;
	  height: 30px;
	  background: rgba(255, 255, 255, 0.2);
	}

	.brands-divider {
	  width: 80%;
	  height: 3px;
	  min-height: 3px;
	  background: linear-gradient(to right,
		transparent 0%,
		rgba(255, 255, 255, 0.08) 8%,
		rgba(255, 255, 255, 0.22) 25%,
		rgba(255, 255, 255, 0.22) 75%,
		rgba(255, 255, 255, 0.08) 92%,
		transparent 100%);
	  margin: 0 auto;
	}

	/* Specialization Section Styles */
	.specialization-section {
	  padding: 80px 20px;
	  position: relative;
	}

	.specialization-content {
	  max-width: var(--layout-max-width);
	  margin: 0 auto;
	  background: rgba(0, 0, 0, 0.4);
	  padding: 50px 40px;
	  border-radius: 15px;
	  backdrop-filter: blur(2px);
	  border: 0.5px solid rgba(255, 255, 255, 0.1);
	}

	.specialization-intro {
	  text-align: center;
	  font-size: 1.3rem;
	  color: rgba(255, 255, 255, 0.95);
	  margin: 0 0 35px 0;
	  line-height: 1.6;
	  font-weight: 500;
	}

	.specialization-footer {
	  text-align: center;
	  font-size: 1.1rem;
	  color: rgba(255, 255, 255, 0.8);
	  margin: 30px 0 0 0;
	  font-style: italic;
	}

	.problems-list {
	  list-style: none;
	  padding: 0;
	  margin: 0 auto;
	  width: 100%;
	  max-width: 100%;
	  display: grid;
	  grid-template-columns: repeat(2, 1fr);
	  gap: 12px;
	}

	.problems-list li {
	  font-size: 1.05rem;
	  color: rgba(255, 255, 255, 0.9);
	  line-height: 1.3;
	  padding: 6px 10px 6px 14px;
	  position: relative;
	  display: flex;
	  align-items: center;
	  text-align: left;
	  overflow-wrap: break-word;
	  word-break: break-word;
	}

	/* Шахматный порядок: 1 и 4 — светлые, 2 и 3 — тёмные в каждой строке из 4 */
	.problems-list li:nth-child(4n+1),
	.problems-list li:nth-child(4n+4) {
	  background: rgba(255, 255, 255, 0.1);
	  border-radius: 4px;
	}

	.problems-list li:nth-child(4n+2),
	.problems-list li:nth-child(4n+3) {
	  background: rgba(227, 6, 19, 0.15);
	  border-radius: 4px;
	}

	.problems-list li::before {
	  content: "";
	  position: absolute;
	  left: 0;
	  top: 0;
	  width: 12px;
	  height: 12px;
	  border-left: 2px solid rgba(255, 255, 255, 0.35);
	  border-top: 2px solid rgba(255, 255, 255, 0.35);
	  border-radius: 2px 0 0 0;
	}

	.problems-list li:nth-child(4n+2)::before,
	.problems-list li:nth-child(4n+3)::before {
	  border-left-color: rgba(227, 6, 19, 0.5);
	  border-top-color: rgba(227, 6, 19, 0.5);
	}

	.problems-list li::after {
	  content: "";
	  position: absolute;
	  right: 0;
	  bottom: 0;
	  width: 12px;
	  height: 12px;
	  border-right: 2px solid rgba(255, 255, 255, 0.35);
	  border-bottom: 2px solid rgba(255, 255, 255, 0.35);
	  border-radius: 0 0 2px 0;
	}

	.problems-list li:nth-child(4n+2)::after,
	.problems-list li:nth-child(4n+3)::after {
	  border-right-color: rgba(227, 6, 19, 0.5);
	  border-bottom-color: rgba(227, 6, 19, 0.5);
	}

	/* Diagnosis Section Styles */
	.diagnosis-section {
	  padding: 80px 20px;
	  position: relative;
	}

	.diagnosis-content {
	  max-width: var(--layout-max-width);
	  margin: 0 auto;
	  background: rgba(0, 0, 0, 0.4);
	  padding: 50px 40px;
	  border-radius: 15px;
	  backdrop-filter: blur(2px);
	  border: 0.5px solid rgba(255, 255, 255, 0.1);
	}

	.diagnosis-title {
	  text-align: center;
	  font-size: 2rem;
	  font-weight: 700;
	  color: #fff;
	  margin: 0 0 25px 0;
	}

	.diagnosis-text {
	  text-align: center;
	  font-size: 1.1rem;
	  line-height: 1.8;
	  color: rgba(255, 255, 255, 0.9);
	  margin: 0;
	}

	.specialization-grid {
	  display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	  gap: 25px;
	  margin: 40px 0;
	}

	.specialization-item {
	  background: rgba(20, 20, 20, 0.7);
	  padding: 35px 25px;
	  border-radius: 15px;
	  border: 0.5px solid rgba(255, 255, 255, 0.1);
	  text-align: center;
	  transition: all 0.3s ease;
	}

	.specialization-item:hover {
	  transform: translateY(-5px);
	  border-color: rgba(227, 6, 19, 0.5);
	  box-shadow: 0 10px 30px rgba(227, 6, 19, 0.2);
	}

	.specialization-icon {
	  font-size: 3rem;
	  margin-bottom: 20px;
	}

	.specialization-item h3 {
	  color: #e30613;
	  font-size: 1.2rem;
	  font-weight: 600;
	  margin: 0;
	}

	.specialization-note {
	  text-align: center;
	  font-size: 1.2rem;
	  color: rgba(255, 255, 255, 0.9);
	  margin-top: 50px;
	  font-style: italic;
	}

	/* Form Section Updates */
	.form-intro {
	  text-align: center;
	  font-size: 1.2rem;
	  color: rgba(255, 255, 255, 0.9);
	  margin-bottom: 15px;
	}

	.form-note {
	  text-align: center;
	  font-size: 1rem;
	  color: rgba(255, 255, 255, 0.7);
	  margin-bottom: 30px;
	}

	p.form-hint {
	  text-align: center;
	}

	/* Responsive для новых секций */
	@media (max-width: 768px) {
	  .hero-title {
		font-size: 2rem;
	  }

	  .hero-title-accent {
		font-size: 1.5rem;
	  }

	  .hero-subtitle {
		font-size: 1.1rem;
	  }

	  .hero-content {
		padding: 40px 25px;
	  }

	  .about-content {
		padding: 35px 25px;
	  }

	  .about-intro {
		font-size: 1.2rem;
	  }

	  .about-intro strong {
		font-size: 1.4rem;
	  }

	  .about-content p {
		font-size: 1rem;
	  }

	  .problems-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	  }

	  .specialization-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	  }

	  .form-intro {
		font-size: 1.1rem;
	  }
	}

	/* Greeting Section Styles — карточка под шапкой; форма использует полную её ширину */
	.greeting-section {
	  padding: 200px 20px 80px 20px;
	  position: relative;
	  display: flex;
	  align-items: center;
	}
	.greeting-section .container {
	  width: 100%;
	  box-sizing: border-box;
	}
	.greeting-content {
	  width: 100%;
	  max-width: var(--layout-max-width);
	  margin: 0 auto;
	  box-sizing: border-box;
	  background: rgba(0, 0, 0, 0.4);
	  padding: 50px 40px;
	  border-radius: 18px;
	  backdrop-filter: blur(2px);
	  border: 1px solid rgba(255, 255, 255, 0.1);
	  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	}

	.greeting-lead {
	  color: rgba(255, 255, 255, 0.88);
	  font-size: 1.05rem;
	  line-height: 1.65;
	  margin: 0 0 14px 0;
	  text-align: center;
	}
	/* Форма в hero — сразу под H1; линия раздела — между формой и текстом (.greeting-body) */
	.greeting-content .greeting-title + .home-hero-form.form-content {
	  margin-top: 18px;
	  padding: 0;
	  max-width: 100%;
	  box-sizing: border-box;
	  background: transparent;
	  border: none;
	  border-radius: 0;
	  box-shadow: none;
	  backdrop-filter: none;
	  border-top: none;
	}
	.greeting-content .greeting-body {
	  margin-top: 28px;
	  padding-top: 26px;
	  border-top: 1px solid rgba(255, 255, 255, 0.14);
	}
	.greeting-content .greeting-body .greeting-subtitle {
	  margin-top: 0;
	}
	.greeting-content .home-hero-form#form {
	  scroll-margin-top: 100px;
	}
	.greeting-content .home-hero-form .form-wrapper {
	  max-width: 100%;
	  width: 100%;
	}
	/* Глобально form { max-width:500px; margin:0 auto } — снимаем для hero, иначе ~280px «полей» по бокам */
	.greeting-content .home-hero-form form#contactForm {
	  max-width: none;
	  width: 100%;
	  margin: 0;
	}
	/* Крупная строка CTA над формой: текст + кнопка «позвоните мне» */
	.greeting-content .home-hero-form .form-cta-block {
	  margin: 0 0 22px 0;
	  text-align: center;
	}
	.greeting-content .home-hero-form .hero-form-cta-line {
	  margin: 0;
	  display: flex;
	  flex-wrap: wrap;
	  align-items: center;
	  justify-content: center;
	  gap: 12px 16px;
	  font-size: clamp(1.25rem, 3.4vw, 1.95rem);
	  font-weight: 600;
	  line-height: 1.35;
	  text-align: center;
	}
	.greeting-content .home-hero-form .hero-form-cta-lead {
	  color: rgba(255, 255, 255, 0.96);
	}
	.greeting-content .home-hero-form .hero-form-cta-call {
	  display: inline-flex;
	  align-items: center;
	  justify-content: center;
	  background: rgba(227, 6, 19, 0.96);
	  color: #fff !important;
	  padding: 14px 24px;
	  border-radius: 12px;
	  font-weight: 700;
	  text-decoration: none;
	  font-size: clamp(1.1rem, 2.9vw, 1.7rem);
	  line-height: 1.2;
	  transition: filter 0.2s ease, transform 0.15s ease;
	  box-shadow: 0 4px 18px rgba(227, 6, 19, 0.35);
	}
	.greeting-content .home-hero-form .hero-form-cta-call:hover {
	  filter: brightness(1.08);
	}
	.greeting-content .home-hero-form .form-hint {
	  margin-top: 0;
	  margin-bottom: 22px;
	}
	@media (max-width: 480px) {
	  .greeting-content .home-hero-form .hero-form-cta-line {
		flex-direction: column;
		gap: 14px;
	  }
	  .greeting-content .home-hero-form .hero-form-cta-call {
		width: 100%;
		max-width: 320px;
		box-sizing: border-box;
	  }
	}
	.home-brands-section {
	  padding: 36px 20px 48px;
	  position: relative;
	}
	.home-brands-card,
	.home-social-card {
	  width: 100%;
	  max-width: var(--layout-max-width);
	  margin: 0 auto;
	  box-sizing: border-box;
	  background: rgba(0, 0, 0, 0.4);
	  padding: 50px 40px;
	  border-radius: 18px;
	  backdrop-filter: blur(2px);
	  border: 1px solid rgba(255, 255, 255, 0.1);
	  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	}
	.home-brands-card .section-title {
	  margin-bottom: 14px;
	}
	.home-brands-card .home-brands-lead {
	  margin: 0 0 18px 0;
	  color: rgba(255, 255, 255, 0.85);
	  font-size: 1.02rem;
	  line-height: 1.55;
	}
	.home-brands-section .brand-list {
	  margin-top: 0;
	}
	.home-social-section {
	  padding: 36px 20px 48px;
	  position: relative;
	}
	.home-social-links {
	  display: flex;
	  flex-wrap: wrap;
	  gap: 56px;
	  row-gap: 28px;
	  justify-content: center;
	  align-items: flex-start;
	  margin-top: 0;
	}
	.home-social-link {
	  display: inline-flex;
	  flex-direction: column;
	  align-items: center;
	  justify-content: flex-start;
	  gap: 12px;
	  padding: 0;
	  margin: 0;
	  text-decoration: none;
	  background: none;
	  border: none;
	  box-shadow: none;
	  flex-shrink: 0;
	  transition: opacity 0.2s ease, transform 0.2s ease;
	}
	.home-social-link:hover {
	  opacity: 0.88;
	  transform: scale(1.03);
	}
	.home-social-icon {
	  width: 88px;
	  height: 88px;
	  display: block;
	  object-fit: contain;
	}
	.home-social-label {
	  display: block;
	  font-size: 0.95rem;
	  font-weight: 600;
	  letter-spacing: 0.04em;
	  color: rgba(255, 255, 255, 0.88);
	  text-align: center;
	  line-height: 1.25;
	}

	.greeting-title {
	  font-size: 2.35rem;
	  font-weight: 700;
	  color: #fff;
	  margin: 0 0 15px 0;
	  line-height: 1.35;
	  letter-spacing: 0.02em;
	  text-align: center;
	  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.85);
	}
	.greeting-title__brand,
	.greeting-title__rest {
	  display: block;
	}
	.greeting-title--three-lines .greeting-title__brand,
	.greeting-title--three-lines .greeting-title__line2,
	.greeting-title--three-lines .greeting-title__line3 {
	  display: block;
	}
	.greeting-title--three-lines .greeting-title__brand {
	  margin-bottom: 0.2em;
	}
	.greeting-title--three-lines .greeting-title__line2 {
	  margin-bottom: 0.15em;
	  font-size: 0.95em;
	  font-weight: 600;
	}
	.greeting-title--three-lines .greeting-title__line3 {
	  font-size: 0.9em;
	  font-weight: 500;
	  opacity: 0.95;
	}

	.greeting-subtitle {
	  font-size: 1.1rem;
	  font-weight: 400;
	  color: rgba(255, 255, 255, 0.85);
	  margin: 0 0 25px 0;
	  text-align: center;
	  letter-spacing: 0.5px;
	  text-align: center;
	  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
	}

	.greeting-hello {
	  font-size: 1.3rem;
	  font-weight: 400;
	  color: rgba(255, 255, 255, 0.9);
	  margin: 0 0 30px 0;
	  text-align: center;
	  line-height: 1.5;
	}

	.greeting-text-wrapper {
	  position: relative;
	}

	.read-more-checkbox {
	  display: none;
	}

	.greeting-text {
	  display: grid;
	  grid-template-columns: 1fr;
	  gap: 0;
	  position: relative;
	  overflow: hidden;
	  transition: max-height 0.3s ease;
	  max-height: none;
	}

	/* Базовые стили для кнопки (скрыта по умолчанию) */
	.read-more-btn {
	  display: none;
	  text-align: right;
	  margin-top: 5px;
	  margin-bottom: 10px;
	  cursor: pointer;
	  color: rgba(255, 255, 255, 0.9);
	  font-size: 0.95rem;
	  text-decoration: underline;
	  transition: color 0.3s ease;
	}
	.read-more-btn:hover {
	  color: rgba(255, 255, 255, 1);
	}

	/* ДЕСКТОП (ширина ≥ 850px): приветствие — отступ и обрезка текста в одних блоках по высоте */
	@media (min-width: 850px) {
	  /* 400px — 789px: отступ 6vh, обрезка 10vh */
	  @media (min-height: 400px) and (max-height: 789px) {
		section.section-new.greeting-section,
		.greeting-section { padding-top: 5vh !important; }
		.greeting-text-wrapper .greeting-text { max-height: 10vh; }
		.greeting-text-wrapper .greeting-text { -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0.9) 65%, rgba(0,0,0,0.7) 75%, rgba(0,0,0,0.4) 85%, rgba(0,0,0,0) 100%); mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0.9) 65%, rgba(0,0,0,0.7) 75%, rgba(0,0,0,0.4) 85%, rgba(0,0,0,0) 100%); mask-mode: alpha; -webkit-mask-size: 100% 100%; mask-size: 100% 100%; mask-repeat: no-repeat; -webkit-mask-repeat: no-repeat; }
		.read-more-btn { display: block; }
	  }
	  /* 790px — 849px: отступ 10vh, обрезка 20vh */
	  @media (min-height: 790px) and (max-height: 849px) {
		section.section-new.greeting-section,
		.greeting-section { padding-top: 9vh !important; }
		.greeting-text-wrapper .greeting-text { max-height: 20vh; }
		.greeting-text-wrapper .greeting-text { -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0.9) 65%, rgba(0,0,0,0.7) 75%, rgba(0,0,0,0.4) 85%, rgba(0,0,0,0) 100%); mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0.9) 65%, rgba(0,0,0,0.7) 75%, rgba(0,0,0,0.4) 85%, rgba(0,0,0,0) 100%); mask-mode: alpha; -webkit-mask-size: 100% 100%; mask-size: 100% 100%; mask-repeat: no-repeat; -webkit-mask-repeat: no-repeat; }
		.read-more-btn { display: block; }
	  }
	  /* 850px — 879px: отступ 19vh, обрезка 25vh */
	  @media (min-height: 850px) and (max-height: 879px) {
		section.section-new.greeting-section,
		.greeting-section { padding-top: 19vh !important; }
		.greeting-text-wrapper .greeting-text { max-height: 23vh; }
		.greeting-text-wrapper .greeting-text { -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0.9) 65%, rgba(0,0,0,0.7) 75%, rgba(0,0,0,0.4) 85%, rgba(0,0,0,0) 100%); mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0.9) 65%, rgba(0,0,0,0.7) 75%, rgba(0,0,0,0.4) 85%, rgba(0,0,0,0) 100%); mask-mode: alpha; -webkit-mask-size: 100% 100%; mask-size: 100% 100%; mask-repeat: no-repeat; -webkit-mask-repeat: no-repeat; }
		.read-more-btn { display: block; }
	  }
	  /* 880px — 889px: отступ 20vh, обрезка 29vh */
	  @media (min-height: 880px) and (max-height: 889px) {
		section.section-new.greeting-section,
		.greeting-section { padding-top: 18vh !important; }
		.greeting-text-wrapper .greeting-text { max-height: 29vh; }
		.greeting-text-wrapper .greeting-text { -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0.9) 65%, rgba(0,0,0,0.7) 75%, rgba(0,0,0,0.4) 85%, rgba(0,0,0,0) 100%); mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0.9) 65%, rgba(0,0,0,0.7) 75%, rgba(0,0,0,0.4) 85%, rgba(0,0,0,0) 100%); mask-mode: alpha; -webkit-mask-size: 100% 100%; mask-size: 100% 100%; mask-repeat: no-repeat; -webkit-mask-repeat: no-repeat; }
		.read-more-btn { display: block; }
	  }
	  /* ≥890px: отступ 20vh, обрезки нет */
	  @media (min-height: 890px) and (max-height: 1099px) {
		section.section-new.greeting-section,
		.greeting-section { padding-top: 18vh !important; }
		.greeting-text-wrapper .greeting-text { max-height: none !important; }
		.read-more-checkbox:not(:checked) ~ .greeting-text { -webkit-mask-image: none; mask-image: none; }
		.read-more-btn { display: none; }
	  }
	  /* ≥1100px: отступ 20vh, обрезки нет */
	  @media (min-height: 1100px) {
		section.section-new.greeting-section,
		.greeting-section { padding-top: 22vh !important; }
		.greeting-text-wrapper .greeting-text { max-height: none !important; }
		.read-more-checkbox:not(:checked) ~ .greeting-text { -webkit-mask-image: none; mask-image: none; }
		.read-more-btn { display: none; }
	  }
	  /* Фиксированный верхний отступ hero (перекрывает vh выше) */
	  section.section-new.greeting-section,
	  .greeting-section {
		padding-top: 200px !important;
	  }
	}

	/* ПЛАНШЕТЫ (769px – 849px): обрезка по высоте */
	@media (min-width: 769px) and (max-width: 849px) {
	  @media (max-height: 1199px) {
		.greeting-text-wrapper .greeting-text { -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0.9) 65%, rgba(0,0,0,0.7) 75%, rgba(0,0,0,0.4) 85%, rgba(0,0,0,0) 100%); mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0.9) 65%, rgba(0,0,0,0.7) 75%, rgba(0,0,0,0.4) 85%, rgba(0,0,0,0) 100%); mask-mode: alpha; -webkit-mask-size: 100% 100%; mask-size: 100% 100%; mask-repeat: no-repeat; -webkit-mask-repeat: no-repeat; }
		.read-more-btn { display: block; }
	  }
	  @media (min-height: 400px) { .greeting-text-wrapper .greeting-text { max-height: 10vh; } }
	  @media (min-height: 790px) { .greeting-text-wrapper .greeting-text { max-height: 20vh; } }
	  @media (min-height: 850px) { .greeting-text-wrapper .greeting-text { max-height: 25vh; } }
	  @media (min-height: 880px) { .greeting-text-wrapper .greeting-text { max-height: 29vh; } }
	  /* 1100–1199px (11" портрет): отступ 10%, текст виден 30% */
	  @media (min-height: 1100px) and (max-height: 1199px) {
		section.section-new.greeting-section,
		.greeting-section { padding-top: 27vh !important; }
		.greeting-text-wrapper .greeting-text { max-height: 22vh; }
		.greeting-text-wrapper .greeting-text { -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0.9) 65%, rgba(0,0,0,0.7) 75%, rgba(0,0,0,0.4) 85%, rgba(0,0,0,0) 100%); mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0.9) 65%, rgba(0,0,0,0.7) 75%, rgba(0,0,0,0.4) 85%, rgba(0,0,0,0) 100%); mask-mode: alpha; -webkit-mask-size: 100% 100%; mask-size: 100% 100%; mask-repeat: no-repeat; -webkit-mask-repeat: no-repeat; }
		.read-more-btn { display: block; }
	  }
	  @media (min-height: 1200px) {
		.greeting-text-wrapper .greeting-text { max-height: none !important; }
		.read-more-checkbox:not(:checked) ~ .greeting-text { -webkit-mask-image: none; mask-image: none; }
		.read-more-btn { display: none; }
	  }
	  /* Отступ приветствия по высоте — планшеты (до 999px; 1000+ и 1100–1199 — свои блоки) */
	  @media (min-height: 400px) and (max-height: 999px) {
		section.section-new.greeting-section,
		.greeting-section { padding-top: 4vh !important; }
	  }
	  @media (min-height: 1000px) and (max-height: 1099px) {
		section.section-new.greeting-section,
		.greeting-section { padding-top: 1vh !important; }
	  }
	  /* 1100–1199px: отступ только в блоке «11" портрет» выше */
	  @media (min-height: 1200px) {
		section.section-new.greeting-section,
		.greeting-section { padding-top: 2vh !important; }
	  }
	  section.section-new.greeting-section,
	  .greeting-section {
		padding-top: 200px !important;
	  }
	}

	/* Когда текст развернут - убираем ограничения */
	.read-more-checkbox:checked ~ .greeting-text {
	  max-height: none !important;
	  -webkit-mask-image: none;
	  mask-image: none;
	}

	/* Текст кнопки на разных языках */
	.read-more-btn::before {
	  content: 'Показать текст';
	}

	.read-more-checkbox:checked ~ .read-more-btn::before {
	  content: 'Скрыть текст';
	}

	/* Английская версия */
	html[lang="en"] .read-more-btn::before {
	  content: 'Show text';
	}

	html[lang="en"] .read-more-checkbox:checked ~ .read-more-btn::before {
	  content: 'Hide text';
	}

	/* Украинская версия */
	html[lang="uk"] .read-more-btn::before {
	  content: 'Показати текст';
	}

	html[lang="uk"] .read-more-checkbox:checked ~ .read-more-btn::before {
	  content: 'Сховати текст';
	}

	.greeting-intro {
	  font-size: 1.2rem;
	  color: rgba(255, 255, 255, 0.95);
	  font-weight: 500;
	  margin: 0;
	  line-height: 1.6;
	  text-align: center;
	}

	.greeting-text p {
	  font-size: 1rem;
	  color: rgba(255, 255, 255, 0.9);
	  line-height: 1.6;
	  margin: 0 0 1em 0;
	  text-align: left;
	}
	
	.greeting-text p:last-child {
	  margin-bottom: 0;
	}

	.greeting-highlight {
	  background: rgba(255, 255, 255, 0.05);
	  border: 1px solid rgba(255, 255, 255, 0.2);
	  border-radius: 10px;
	  padding: 25px 30px;
	  margin-top: 10px;
	  font-size: 1.15rem;
	  font-weight: 500;
	  color: rgba(255, 255, 255, 0.95);
	  line-height: 1.7;
	  text-align: center;
	}

	.greeting-services-cells {
	  display: grid;
	  grid-template-columns: repeat(auto-fill, 291px);
	  gap: 14px;
	  margin-top: 24px;
	  justify-content: center;
	}
	.greeting-service-cell {
	  width: 291px;
	  align-self: start;
	  box-sizing: border-box;
	  background: rgba(255, 255, 255, 0.08);
	  border: 1px solid rgba(255, 255, 255, 0.15);
	  border-radius: 10px;
	  padding: 0 0 6px 0;
	  min-height: 0;
	  display: flex;
	  flex-direction: column;
	  align-items: center;
	  text-align: center;
	  transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
	}
	.greeting-service-cell:hover {
	  border-color: rgba(227, 6, 19, 0.92);
	  box-shadow: 0 0 0 1px rgba(227, 6, 19, 0.35), 0 6px 20px rgba(227, 6, 19, 0.12);
	}
	.greeting-service-img {
	  width: 291px;
	  height: 180px;
	  object-fit: contain;
	  object-position: center;
	  margin-bottom: 4px;
	  display: block;
	  vertical-align: bottom;
	}
	.greeting-service-label {
	  color: rgba(255, 255, 255, 0.95);
	  font-size: 1.5rem;
	  line-height: 1.35;
	  min-height: 2.7em;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  text-align: center;
	  text-shadow: 0 1px 3px rgba(0, 0, 0, 1), 0 2px 8px rgba(0, 0, 0, 0.85), 0 0 24px rgba(0, 0, 0, 0.65);
	  letter-spacing: 0.02em;
	}

	button.greeting-service-cell {
	  font: inherit;
	  color: inherit;
	  margin: 0;
	  appearance: none;
	  cursor: pointer;
	  text-align: center;
	}
	button.greeting-service-cell:focus-visible {
	  outline: 2px solid rgba(227, 6, 19, 0.95);
	  outline-offset: 3px;
	}
	button.greeting-service-cell:hover {
	  background: rgba(227, 6, 19, 0.1);
	}

	/* Тач: подсветка ячейки под пальцем (JS: .greeting-service-cell--touch-active). Откат — убрать этот блок и скрипт в porsche/index.php */
	.greeting-service-cell.greeting-service-cell--touch-active {
	  border-color: rgba(227, 6, 19, 0.92);
	  box-shadow: 0 0 0 1px rgba(227, 6, 19, 0.35), 0 6px 20px rgba(227, 6, 19, 0.12);
	}
	button.greeting-service-cell.greeting-service-cell--touch-active {
	  background: rgba(227, 6, 19, 0.1);
	}

	/* Porsche: модалка записи по услуге */
	body.service-booking-modal-open {
	  overflow: hidden;
	}
	.service-booking-modal {
	  position: fixed;
	  inset: 0;
	  z-index: 10050;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  padding: 20px;
	  box-sizing: border-box;
	}
	.service-booking-modal[hidden] {
	  display: none !important;
	}
	.service-booking-modal__backdrop {
	  position: absolute;
	  inset: 0;
	  background: rgba(0, 0, 0, 0.65);
	  cursor: pointer;
	}
	.service-booking-modal__panel {
	  position: relative;
	  z-index: 1;
	  max-width: 420px;
	  width: 100%;
	  background: rgba(18, 18, 22, 0.97);
	  border: 1px solid rgba(255, 255, 255, 0.15);
	  border-radius: 14px;
	  padding: 28px 24px 22px;
	  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
	}
	.service-booking-modal__close {
	  position: absolute;
	  top: 10px;
	  right: 12px;
	  width: 36px;
	  height: 36px;
	  border: none;
	  background: transparent;
	  color: rgba(255, 255, 255, 0.75);
	  font-size: 1.6rem;
	  line-height: 1;
	  cursor: pointer;
	  border-radius: 8px;
	}
	.service-booking-modal__close:hover {
	  color: #fff;
	  background: rgba(255, 255, 255, 0.08);
	}
	.service-booking-modal__question {
	  margin: 0 32px 22px 0;
	  font-size: 1.15rem;
	  line-height: 1.45;
	  color: rgba(255, 255, 255, 0.95);
	}
	.service-booking-modal__actions {
	  display: flex;
	  flex-wrap: wrap;
	  gap: 10px;
	  justify-content: stretch;
	  align-items: stretch;
	}
	.service-booking-modal__btn-yes {
	  flex: 1 1 140px;
	  min-height: 48px;
	  padding: 0 22px;
	  font-size: 1.05rem;
	  font-weight: 700;
	  font-family: inherit;
	  letter-spacing: 0.03em;
	  color: #fff;
	  border: none;
	  border-radius: 10px;
	  cursor: pointer;
	  background: linear-gradient(165deg, #ff2a3a 0%, #c50512 45%, #9a040e 100%);
	  box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.22) inset,
		0 4px 14px rgba(227, 6, 19, 0.45),
		0 2px 4px rgba(0, 0, 0, 0.35);
	  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
	}
	.service-booking-modal__btn-yes:hover {
	  filter: brightness(1.06);
	  box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.28) inset,
		0 6px 22px rgba(227, 6, 19, 0.55),
		0 3px 8px rgba(0, 0, 0, 0.35);
	  transform: translateY(-1px);
	}
	.service-booking-modal__btn-yes:active {
	  transform: translateY(0);
	  filter: brightness(0.96);
	  box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.15) inset,
		0 2px 8px rgba(227, 6, 19, 0.35);
	}
	.service-booking-modal__btn-yes:focus-visible {
	  outline: 2px solid rgba(255, 255, 255, 0.85);
	  outline-offset: 3px;
	}
	.service-booking-modal__btn-no {
	  flex: 1 1 100px;
	  min-height: 48px;
	  padding: 0 18px;
	  font-size: 1rem;
	  font-weight: 600;
	  font-family: inherit;
	  color: rgba(255, 255, 255, 0.88);
	  background: rgba(255, 255, 255, 0.06);
	  border: 1px solid rgba(255, 255, 255, 0.22);
	  border-radius: 10px;
	  cursor: pointer;
	  transition: background 0.18s ease, border-color 0.18s ease;
	}
	.service-booking-modal__btn-no:hover {
	  background: rgba(255, 255, 255, 0.12);
	  border-color: rgba(255, 255, 255, 0.32);
	}

	.form-service-followup-hint {
	  margin: 0 0 16px 0;
	  padding: 12px 16px;
	  border-radius: 10px;
	  background: rgba(227, 6, 19, 0.15);
	  border: 1px solid rgba(227, 6, 19, 0.45);
	  color: rgba(255, 255, 255, 0.95);
	  font-size: 1rem;
	  line-height: 1.45;
	  text-align: center;
	}
	.form-service-followup-hint[hidden] {
	  display: none !important;
	}

	.greeting-button-wrapper {
	  text-align: center;
	  margin-top: 35px;
	}

	.btn-greeting {
	  display: inline-block;
	  background: #e30613;
	  color: #fff;
	  padding: 18px 45px;
	  border-radius: 50px;
	  font-size: 1.2rem;
	  font-weight: 600;
	  text-decoration: none;
	  transition: all 0.3s ease;
	  box-shadow: 0 5px 20px rgba(227, 6, 19, 0.4);
	}

	.btn-greeting:hover {
	  background: #ff1a2a;
	  transform: translateY(-3px);
	  box-shadow: 0 8px 30px rgba(227, 6, 19, 0.6);
	}



	/* ТЕЛЕФОНЫ (≤768px): приветствие — отступ и обрезка текста в одних блоках по высоте */
	@media (max-width: 768px) {
	  .greeting-section {
		display: flex;
		align-items: center;
		padding-left: 20px;
		padding-right: 20px;
		padding-bottom: 80px;
	  }
	  /* 400px — 599px: отступ 4vh, обрезка 10vh */
	  @media (min-height: 400px) and (max-height: 599px) {
		section.section-new.greeting-section,
		.greeting-section { padding-top: 4vh !important; }
		.greeting-text-wrapper .greeting-text { max-height: 10vh; }
		.greeting-text-wrapper .greeting-text { -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0.9) 65%, rgba(0,0,0,0.7) 75%, rgba(0,0,0,0.4) 85%, rgba(0,0,0,0) 100%); mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0.9) 65%, rgba(0,0,0,0.7) 75%, rgba(0,0,0,0.4) 85%, rgba(0,0,0,0) 100%); mask-mode: alpha; -webkit-mask-size: 100% 100%; mask-size: 100% 100%; mask-repeat: no-repeat; -webkit-mask-repeat: no-repeat; }
		.read-more-btn { display: block; margin-top: 5px; font-size: 0.9rem; text-align: right; }
	  }
	  /* 600px — 759px: отступ 9vh, обрезка 10vh */
	  @media (min-height: 600px) and (max-height: 759px) {
		section.section-new.greeting-section,
		.greeting-section { padding-top: 8vh !important; }
		.greeting-text-wrapper .greeting-text { max-height: 10vh; }
		.greeting-text-wrapper .greeting-text { -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0.9) 65%, rgba(0,0,0,0.7) 75%, rgba(0,0,0,0.4) 85%, rgba(0,0,0,0) 100%); mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0.9) 65%, rgba(0,0,0,0.7) 75%, rgba(0,0,0,0.4) 85%, rgba(0,0,0,0) 100%); mask-mode: alpha; -webkit-mask-size: 100% 100%; mask-size: 100% 100%; mask-repeat: no-repeat; -webkit-mask-repeat: no-repeat; }
		.read-more-btn { display: block; margin-top: 5px; font-size: 0.9rem; text-align: right; }
	  }
	  /* 760px — 789px: отступ 17vh, обрезка 10vh */
	  @media (min-height: 760px) and (max-height: 789px) {
		section.section-new.greeting-section,
		.greeting-section { padding-top: 15vh !important; }
		.greeting-text-wrapper .greeting-text { max-height: 10vh; }
		.greeting-text-wrapper .greeting-text { -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0.9) 65%, rgba(0,0,0,0.7) 75%, rgba(0,0,0,0.4) 85%, rgba(0,0,0,0) 100%); mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0.9) 65%, rgba(0,0,0,0.7) 75%, rgba(0,0,0,0.4) 85%, rgba(0,0,0,0) 100%); mask-mode: alpha; -webkit-mask-size: 100% 100%; mask-size: 100% 100%; mask-repeat: no-repeat; -webkit-mask-repeat: no-repeat; }
		.read-more-btn { display: block; margin-top: 5px; font-size: 0.9rem; text-align: right; }
	  }
	  /* 790px — 849px: отступ 17vh, обрезка 20vh */
	  @media (min-height: 790px) and (max-height: 849px) {
		section.section-new.greeting-section,
		.greeting-section { padding-top: 15vh !important; }
		.greeting-text-wrapper .greeting-text { max-height: 20vh; }
		.greeting-text-wrapper .greeting-text { -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0.9) 65%, rgba(0,0,0,0.7) 75%, rgba(0,0,0,0.4) 85%, rgba(0,0,0,0) 100%); mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0.9) 65%, rgba(0,0,0,0.7) 75%, rgba(0,0,0,0.4) 85%, rgba(0,0,0,0) 100%); mask-mode: alpha; -webkit-mask-size: 100% 100%; mask-size: 100% 100%; mask-repeat: no-repeat; -webkit-mask-repeat: no-repeat; }
		.read-more-btn { display: block; margin-top: 5px; font-size: 0.9rem; text-align: right; }
	  }
	  /* 850px — 879px: отступ 17vh, обрезка 25vh */
	  @media (min-height: 850px) and (max-height: 879px) {
		section.section-new.greeting-section,
		.greeting-section { padding-top: 15vh !important; }
		.greeting-text-wrapper .greeting-text { max-height: 25vh; }
		.greeting-text-wrapper .greeting-text { -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0.9) 65%, rgba(0,0,0,0.7) 75%, rgba(0,0,0,0.4) 85%, rgba(0,0,0,0) 100%); mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0.9) 65%, rgba(0,0,0,0.7) 75%, rgba(0,0,0,0.4) 85%, rgba(0,0,0,0) 100%); mask-mode: alpha; -webkit-mask-size: 100% 100%; mask-size: 100% 100%; mask-repeat: no-repeat; -webkit-mask-repeat: no-repeat; }
		.read-more-btn { display: block; margin-top: 5px; font-size: 0.9rem; text-align: right; }
	  }
	  /* 880px — 899px: отступ 17vh, обрезка 29vh */
	  @media (min-height: 880px) and (max-height: 899px) {
		section.section-new.greeting-section,
		.greeting-section { padding-top: 15vh !important; }
		.greeting-text-wrapper .greeting-text { max-height: 29vh; }
		.greeting-text-wrapper .greeting-text { -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0.9) 65%, rgba(0,0,0,0.7) 75%, rgba(0,0,0,0.4) 85%, rgba(0,0,0,0) 100%); mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0.9) 65%, rgba(0,0,0,0.7) 75%, rgba(0,0,0,0.4) 85%, rgba(0,0,0,0) 100%); mask-mode: alpha; -webkit-mask-size: 100% 100%; mask-size: 100% 100%; mask-repeat: no-repeat; -webkit-mask-repeat: no-repeat; }
		.read-more-btn { display: block; margin-top: 5px; font-size: 0.9rem; text-align: right; }
	  }
	  /* 900px — 1049px: отступ 10vh, обрезка 29vh */
	  @media (min-height: 900px) and (max-height: 1049px) {
		section.section-new.greeting-section,
		.greeting-section { padding-top: 9vh !important; }
		.greeting-text-wrapper .greeting-text { max-height: 29vh; }
		.greeting-text-wrapper .greeting-text { -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0.9) 65%, rgba(0,0,0,0.7) 75%, rgba(0,0,0,0.4) 85%, rgba(0,0,0,0) 100%); mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0.9) 65%, rgba(0,0,0,0.7) 75%, rgba(0,0,0,0.4) 85%, rgba(0,0,0,0) 100%); mask-mode: alpha; -webkit-mask-size: 100% 100%; mask-size: 100% 100%; mask-repeat: no-repeat; -webkit-mask-repeat: no-repeat; }
		.read-more-btn { display: block; margin-top: 5px; font-size: 0.9rem; text-align: right; }
	  }
	  /* 1050px — 1099px: отступ 25vh, обрезки нет */
	  @media (min-height: 1050px) and (max-height: 1099px) {
		section.section-new.greeting-section,
		.greeting-section { padding-top: 22vh !important; }
		.greeting-text-wrapper .greeting-text { max-height: none !important; }
		.read-more-checkbox:not(:checked) ~ .greeting-text { -webkit-mask-image: none; mask-image: none; }
		.read-more-btn { display: none; }
	  }
	  /* 1100px — 1199px: отступ 20vh, обрезки нет */
	  @media (min-height: 1100px) and (max-height: 1199px) {
		section.section-new.greeting-section,
		.greeting-section { padding-top: 18vh !important; }
		.greeting-text-wrapper .greeting-text { max-height: none !important; }
		.read-more-checkbox:not(:checked) ~ .greeting-text { -webkit-mask-image: none; mask-image: none; }
		.read-more-btn { display: none; }
	  }
	  /* ≥1200px: отступ 2vh, обрезки нет */
	  @media (min-height: 1200px) {
		section.section-new.greeting-section,
		.greeting-section { padding-top: 2vh !important; }
		.greeting-text-wrapper .greeting-text { max-height: none !important; }
		.read-more-checkbox:not(:checked) ~ .greeting-text { -webkit-mask-image: none; mask-image: none; }
		.read-more-btn { display: none; }
	  }

	  .greeting-content {
		padding: 35px 25px;
	  }
	  .home-brands-card,
	  .home-social-card {
		padding: 35px 25px;
	  }
	  /* Сетка услуг: не фиксированные 291px — убираем overflow и смещение вправо на мобильных */
	  .greeting-services-cells {
		grid-template-columns: 1fr;
		max-width: 100%;
	  }
	  .greeting-service-cell {
		width: 100%;
		max-width: 291px;
		margin-left: auto;
		margin-right: auto;
	  }
	  .greeting-service-img {
		width: 100%;
		max-width: 291px;
		height: auto;
		min-height: 140px;
		object-fit: contain;
	  }

	  .greeting-hello {
		font-size: 1.1rem;
		margin-bottom: 12px;
	  }

	  .greeting-title {
		font-size: 1.8rem;
		margin-bottom: 12px;
		line-height: 1.2;
	  }
	  body.page-porsche .greeting-section .greeting-title {
		font-size: 1.35rem;
		line-height: 1.25;
	  }

	  .greeting-subtitle {
		font-size: 0.95rem;
		margin-bottom: 20px;
	  }

	  .greeting-text {
		gap: 0;
	  }

	  .read-more-btn {
		margin-top: 12px;
		font-size: 0.9rem;
	  }

	  .greeting-intro {
		font-size: 1.1rem;
	  }

	  .greeting-text p {
		font-size: 0.9rem;
		line-height: 1.3;
		margin: 0;
	  }

	  .greeting-highlight {
		font-size: 1.05rem;
		padding: 20px 25px;
		margin-top: 5px;
	  }

	  .greeting-button-wrapper {
		margin-top: 25px;
	  }

	  .btn-greeting {
		padding: 15px 35px;
		font-size: 1.1rem;
	  }

	  .brands-section {
		padding: 15px 20px 30px 20px;
	  }

	  .brands-content {
		padding: 25px 20px;
		max-height: 320px;
	  }

	  .brands-list {
		justify-content: center;
		gap: 10px 0;
		flex-wrap: wrap;
	  }

	  .brand-item {
		padding: 6px 15px;
		font-size: 1rem;
		flex: 0 1 auto;
		position: relative;
	  }

	  /* Меняем порядок Lamborghini и Audi только в первой строке (VAG) */
	  .brands-track-inner > .brands-list:first-child .brand-item:nth-child(3) {
		order: 4;
	  }
	  .brands-track-inner > .brands-list:first-child .brand-item:nth-child(4) {
		order: 3;
	  }

	  .brand-item:not(:first-child)::before {
		display: none;
	  }

	  .brands-divider {
		width: 60%;
		height: 3px;
		min-height: 3px;
		background: linear-gradient(to right,
		  transparent 0%,
		  rgba(255, 255, 255, 0.08) 8%,
		  rgba(255, 255, 255, 0.22) 25%,
		  rgba(255, 255, 255, 0.22) 75%,
		  rgba(255, 255, 255, 0.08) 92%,
		  transparent 100%);
		margin: 0 auto;
	  }


	  .specialization-section {
		padding: 50px 20px;
	  }

	  .specialization-content {
		padding: 35px 25px;
	  }

	  .specialization-intro {
		font-size: 1.1rem;
		margin-bottom: 25px;
		line-height: 1.4;
	  }

	  .problems-list {
		grid-template-columns: 1fr;
		gap: 10px;
		padding: 0;
		width: 100%;
		max-width: 100%;
	  }

	  .problems-list li {
		font-size: 1rem;
		padding: 6px 10px 6px 14px;
		line-height: 1.2;
		overflow-wrap: break-word;
		word-break: break-word;
	  }

	  .problems-list li:nth-child(odd) {
		background: rgba(255, 255, 255, 0.1);
		border-radius: 4px;
	  }

	  .problems-list li:nth-child(even) {
		background: rgba(227, 6, 19, 0.15);
		border-radius: 4px;
	  }

	  .problems-list li:nth-child(even)::before,
	  .problems-list li:nth-child(even)::after {
		border-left-color: rgba(227, 6, 19, 0.5);
		border-top-color: rgba(227, 6, 19, 0.5);
		border-right-color: rgba(227, 6, 19, 0.5);
		border-bottom-color: rgba(227, 6, 19, 0.5);
	  }

	  .specialization-footer {
		font-size: 1rem;
		margin-top: 25px;
		line-height: 1.4;
	  }

	  .diagnosis-section {
		padding: 50px 20px;
	  }

	  .diagnosis-content {
		padding: 35px 25px;
	  }

	  .diagnosis-title {
		font-size: 1.6rem;
		margin-bottom: 20px;
	  }

	  .diagnosis-text {
		font-size: 1rem;
		line-height: 1.4;
	  }

	  .form-section {
		padding: 50px 20px;
	  }

	  .form-content {
		padding: 35px 25px;
	  }

	  .form-section .section-title {
		font-size: 2rem;
		margin-bottom: 25px;
	  }

	  .form-row {
		grid-template-columns: 1fr !important;
		gap: 12px;
	  }
	  
	  /* Гарантируем одну колонку для всех строк формы на мобильных */
	  .form-row:first-child {
		grid-template-columns: 1fr !important;
	  }
	  
	  .form-row:has(select#brand) {
		grid-template-columns: 1fr !important;
	  }

	  .form-row:has(#brand[data-fixed-brand]) {
		grid-template-columns: 1fr !important;
	  }

	  .contact-section {
		padding: 0;
	  }

	  .contact-content {
		padding: 35px 20px 0 20px;
	  }

	  .contact-section .container {
		padding-bottom: 35px;
	  }

	  .contacts-grid {
		grid-template-columns: 1fr;
		gap: 20px;
		margin-top: 30px;
	  }

	  .contact-card {
		padding: 25px;
	  }

	  .contact-card h2 {
		font-size: 1.5rem;
		margin-bottom: 20px;
	  }

	  .hours-item {
		padding: 12px;
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	  }

	  .hours-item .day,
	  .hours-item .time {
		font-size: 0.95rem;
	  }

	  .contact-info {
		gap: 15px;
	  }

	  .contact-info .contact-item {
		font-size: 0.95rem;
		line-height: 1.4;
	  }

	  .hours-note {
		margin-top: 15px;
		padding: 12px;
		font-size: 0.9rem;
		line-height: 1.4;
	  }

	  .map-wrapper {
		min-height: 300px;
	  }

	  .map-wrapper iframe {
		height: 300px;
	  }
	}

	/* Services Section - New */
	.services-section {
	  padding: 80px 20px;
	  position: relative;
	}

	.services-content {
	  max-width: var(--layout-max-width);
	  margin: 0 auto;
	  background: rgba(0, 0, 0, 0.4);
	  padding: 50px 40px;
	  border-radius: 15px;
	  backdrop-filter: blur(1px);
	  border: 0.5px solid rgba(255, 255, 255, 0.1);
	}

	.services-grid {
	  display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	  gap: 25px;
	  margin-top: 40px;
	}

	.service-item {
	  background: rgba(0, 0, 0, 0.2);
	  padding: 25px 20px;
	  border-radius: 10px;
	  border: 0.5px solid rgba(255, 255, 255, 0.05);
	}

	.service-item h3 {
	  color: #fff;
	  font-size: 1.2rem;
	  margin-bottom: 12px;
	  font-weight: 600;
	}

	.service-item p {
	  color: #ddd;
	  line-height: 1.6;
	  margin: 0;
	  font-size: 0.95rem;
	}

	@media (max-width: 768px) {
	  .services-section {
		padding: 50px 20px;
	  }

	  .services-content {
		padding: 35px 25px;
	  }

	  .services-grid {
		grid-template-columns: 1fr;
		gap: 20px;
		margin-top: 30px;
	  }
	}

	/* ---------- Страница ECU Repair (/ecurepair) ---------- */
	body.page-ecurepair .fixed-bg {
	  background-image: url('/site_core/image.php?file=ecu_fon1_low-q.jpeg');
	  background-size: cover;
	  background-position: center center;
	}
	body.page-ecurepair .fixed-bg::before {
	  content: '';
	  position: absolute;
	  inset: 0;
	  background: rgba(0, 0, 0, 0.3);
	  z-index: 0;
	  pointer-events: none;
	}
	body.page-ecurepair .greeting-title .greeting-title__line3 {
	  display: block;
	  margin-top: 0.35em;
	  font-size: 0.9em;
	  font-weight: 500;
	  opacity: 0.95;
	}
	/* Три услуги в одной подложке greeting-content (как Porsche / Audi) */
	body.page-ecurepair .ecurepair-services-cells {
	  display: grid;
	  grid-template-columns: repeat(3, minmax(0, 1fr));
	  gap: 10px 12px;
	  margin-top: 22px;
	  width: 100%;
	}
	body.page-ecurepair .ecurepair-service-cell {
	  box-sizing: border-box;
	  min-width: 0;
	  background: rgba(255, 255, 255, 0.08);
	  border: 1px solid rgba(255, 255, 255, 0.15);
	  border-radius: 10px;
	  padding: 12px 8px 14px;
	  display: flex;
	  flex-direction: column;
	  align-items: center;
	  text-align: center;
	  transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
	}
	body.page-ecurepair .ecurepair-service-cell:hover {
	  border-color: rgba(227, 6, 19, 0.85);
	  box-shadow: 0 0 0 1px rgba(227, 6, 19, 0.25), 0 6px 18px rgba(227, 6, 19, 0.1);
	}
	body.page-ecurepair .ecurepair-service-cell__icon {
	  width: 100%;
	  max-width: 291px;
	  margin-bottom: 0;
	  flex-shrink: 0;
	}
	/* Как .greeting-service-img (Porsche / Audi) */
	body.page-ecurepair .ecurepair-service-cell__icon img {
	  width: 291px;
	  max-width: 100%;
	  height: 180px;
	  object-fit: contain;
	  object-position: center;
	  margin-bottom: 4px;
	  display: block;
	  vertical-align: bottom;
	}
	body.page-ecurepair .ecurepair-service-cell__title {
	  color: #fff;
	  font-size: 0.95rem;
	  font-weight: 600;
	  margin: 0 0 6px 0;
	  line-height: 1.22;
	}
	body.page-ecurepair .ecurepair-service-cell__text {
	  color: rgba(255, 255, 255, 0.78);
	  font-size: 0.78rem;
	  line-height: 1.38;
	  margin: 0;
	}
	@media (max-width: 768px) {
	  body.page-ecurepair .greeting-title {
		font-size: 1.35rem;
	  }
	  body.page-ecurepair .ecurepair-services-cells {
		grid-template-columns: 1fr;
		gap: 12px;
		margin-top: 20px;
	  }
	  body.page-ecurepair .ecurepair-service-cell {
		padding: 14px 14px 16px;
	  }
	  /* Как .greeting-service-img в @media (max-width: 768px) для Porsche / Audi */
	  body.page-ecurepair .ecurepair-service-cell__icon img {
		width: 100%;
		max-width: 291px;
		height: auto;
		min-height: 140px;
		object-fit: contain;
	  }
	  body.page-ecurepair .ecurepair-service-cell__text {
		font-size: 0.85rem;
	  }
	}
	body.page-ecurepair .ecurepair-form-wrap form {
	  width: 100%;
	  text-align: left;
	}
	body.page-ecurepair .ecurepair-form-wrap .ecurepair-form-hint {
	  font-size: 0.95rem;
	  color: rgba(255, 255, 255, 0.72);
	  margin: 0 0 12px 0;
	}
	body.page-ecurepair .ecurepair-form-wrap .form-group {
	  margin: 20px 0;
	  padding: 18px;
	  background: rgba(0, 0, 0, 0.25);
	  border-radius: 12px;
	  border: 1px solid rgba(255, 255, 255, 0.12);
	  position: relative;
	}
	body.page-ecurepair .ecurepair-form-wrap .form-group h3 {
	  font-size: 1.05rem;
	  color: #e30613;
	  margin: 0 0 12px 0;
	  font-weight: 700;
	}
	body.page-ecurepair .ecurepair-form-wrap .radio-group {
	  display: flex;
	  flex-wrap: wrap;
	  gap: 10px;
	  margin-top: 10px;
	  justify-content: center;
	}
	body.page-ecurepair .ecurepair-form-wrap .radio-group label {
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  cursor: pointer;
	  padding: 12px 20px;
	  background: rgba(255, 255, 255, 0.1);
	  border: 2px solid rgba(255, 255, 255, 0.2);
	  border-radius: 5px;
	  color: #fff;
	  font-size: 1rem;
	  flex: 1;
	  position: relative;
	}
	body.page-ecurepair .ecurepair-form-wrap .radio-group input[type="radio"] {
	  display: none;
	}
	body.page-ecurepair .ecurepair-form-wrap .radio-group label:has(input[type="radio"]:checked) {
	  background: rgba(227, 6, 19, 0.3);
	  border-color: #e30613;
	  color: #fff;
	}
	body.page-ecurepair .ecurepair-form-wrap .device-switch {
	  display: flex;
	  gap: 10px;
	  margin-bottom: 20px;
	  justify-content: center;
	}
	body.page-ecurepair .ecurepair-form-wrap .device-option {
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  cursor: pointer;
	  padding: 12px 20px;
	  background: rgba(255, 255, 255, 0.1);
	  border: 2px solid rgba(255, 255, 255, 0.2);
	  border-radius: 5px;
	  color: #fff;
	  font-size: 1rem;
	  flex: 1;
	  position: relative;
	}
	body.page-ecurepair .ecurepair-form-wrap .device-option span {
	  pointer-events: none;
	}
	body.page-ecurepair .ecurepair-form-wrap .device-option input[type="radio"] {
	  display: none;
	}
	body.page-ecurepair .ecurepair-form-wrap .device-option:has(input[type="radio"]:checked) {
	  background: rgba(227, 6, 19, 0.3);
	  border-color: #e30613;
	  color: #fff;
	}
	body.page-ecurepair .ecurepair-form-wrap .device-info {
	  margin-top: 15px;
	  padding-top: 15px;
	  border-top: 1px solid rgba(255, 255, 255, 0.1);
	}
	body.page-ecurepair .ecurepair-form-wrap .field-error {
	  color: #e30613;
	  font-weight: bold;
	  text-align: left;
	  font-size: 0.9rem;
	  display: none;
	  margin-top: 5px;
	  margin-bottom: 10px;
	  min-height: 20px;
	  padding: 5px 0;
	}
	body.page-ecurepair .ecurepair-form-wrap #phoneError {
	  color: #e30613;
	  font-weight: bold;
	  text-align: center;
	  font-size: 1.1rem;
	  display: none;
	}
	body.page-ecurepair .ecurepair-form-wrap input.error-field,
	body.page-ecurepair .ecurepair-form-wrap select.error-field,
	body.page-ecurepair .ecurepair-form-wrap textarea.error-field {
	  border: 2px solid #e30613 !important;
	  background-color: #fff !important;
	}
	body.page-ecurepair .ecurepair-form-wrap .radio-group.error-group,
	body.page-ecurepair .ecurepair-form-wrap .device-switch.error-group {
	  border: 2px solid #e30613 !important;
	  border-radius: 8px;
	  padding: 5px;
	  background-color: rgba(227, 6, 19, 0.15) !important;
	}
	body.page-ecurepair .ecurepair-form-wrap .radio-group label,
	body.page-ecurepair .ecurepair-form-wrap .device-option {
	  border-radius: 8px;
	}
	body.page-ecurepair .ecurepair-form-wrap .autocomplete-list {
	  position: absolute;
	  top: 100%;
	  left: 0;
	  right: 0;
	  z-index: 1000;
	  max-height: 200px;
	  overflow-y: auto;
	  background: #fff;
	  border: 1px solid rgba(0, 0, 0, 0.12);
	  border-radius: 8px;
	  margin-top: 2px;
	  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	  display: none;
	}
	body.page-ecurepair .ecurepair-form-wrap .autocomplete-item {
	  padding: 10px;
	  cursor: pointer;
	  color: #000;
	  border-bottom: 1px solid #eee;
	}
	body.page-ecurepair .ecurepair-form-wrap .autocomplete-item:hover,
	body.page-ecurepair .ecurepair-form-wrap .autocomplete-item.autocomplete-active {
	  background-color: #e30613;
	  color: #fff;
	}