.site-header--full {
  overflow: visible;
}

.site-nav--desktop,
.header-actions--public {
  gap: 14px;
}

.site-header--full .header-inner {
  display: grid;
  grid-template-columns: minmax(280px, auto) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(10px, 1vw, 22px);
}

.site-header--full .container {
  width: min(96vw, var(--container));
}

.site-header--full .brand {
  flex-shrink: 0;
  min-width: min(420px, 28vw);
}

.site-header--full .brand-copy {
  min-width: 0;
  width: clamp(260px, 22vw, 360px);
}

.site-header--full .brand-copy strong,
.site-header--full .brand-copy span {
  display: block;
  max-width: 100%;
  white-space: normal;
}

.site-header--full .site-nav--desktop {
  justify-content: center;
  flex-wrap: nowrap;
  min-width: 0;
  overflow: visible;
  gap: clamp(6px, 0.6vw, 14px);
}

.site-header--full .site-nav--desktop > a,
.site-header--full .nav-dropdown {
  flex: 0 0 auto;
  white-space: nowrap;
}

.site-header--full .header-actions--public {
  flex-wrap: nowrap;
  white-space: nowrap;
  gap: clamp(8px, 0.7vw, 12px);
  min-width: fit-content;
}

.header-max-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 43px;
  padding: 0;
  border-radius: 16px;
  border: 0;
  background: transparent;
  text-decoration: none;
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 42%, transparent);
  animation: maxMessengerPulse 1.55s ease-in-out infinite;
}

.header-max-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mobile-nav-max {
  width: max-content;
}

@keyframes maxMessengerPulse {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 42%, transparent);
  }
  50% {
    transform: translateY(-1px) scale(1.05);
    box-shadow: 0 0 0 10px color-mix(in srgb, var(--accent) 0%, transparent);
  }
}

.site-nav--desktop > a,
.nav-dropdown__bar {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border-radius: 999px;
  color: var(--nav-text);
  background: transparent;
  border: 1px solid transparent;
}

.site-nav--desktop > a.is-current,
.nav-dropdown.is-current .nav-dropdown__bar,
.site-nav--desktop > a:hover,
.nav-dropdown:hover .nav-dropdown__bar,
.nav-dropdown:focus-within .nav-dropdown__bar {
  color: var(--text);
  background: var(--surface-soft);
  border-color: var(--line);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__link,
.nav-dropdown__label,
.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px clamp(10px, 0.75vw, 14px);
  color: inherit;
  background: transparent;
  border: 0;
}

.nav-dropdown__link,
.nav-dropdown__label {
  padding-right: 8px;
}

.nav-dropdown__trigger {
  padding-left: 6px;
  cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
  .nav-dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 6px;
  }
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  min-width: 260px;
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 96%, transparent);
  box-shadow: var(--panel-shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-dropdown__link.is-current {
  color: var(--text);
}

.nav-dropdown.open .nav-dropdown__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
  .nav-dropdown:hover .nav-dropdown__menu,
  .nav-dropdown:focus-within .nav-dropdown__menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}


.nav-dropdown--empty .nav-dropdown__menu,
.nav-dropdown__menu[hidden] {
  display: none !important;
}

.nav-dropdown--empty::after {
  display: none;
}
.nav-dropdown__menu a {
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--nav-text);
  border: 1px solid transparent;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a.is-current {
  color: var(--text);
  background: var(--surface-soft);
  border-color: var(--line);
}

.header-phone,
.header-cta,
.button-primary,
.button-secondary,
.footer-cta,
.mobile-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  transition: transform 0.24s ease, background-color 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.site-header--full .header-phone,
.site-header--full .header-cta {
  padding-inline: clamp(14px, 0.95vw, 18px);
}

body a:not(.button-primary):not(.button-secondary):not(.header-cta):not(.footer-cta):not(.mobile-nav-cta):not(.feedback-widget__cta):not(.admin-action):not(.admin-button) {
  color: var(--global-link-color, currentColor);
  font-family: var(--global-link-font-family, inherit);
  font-size: var(--global-link-font-size, inherit);
  position: relative;
  transition: color .2s ease, opacity .2s ease, text-decoration-color .2s ease, text-shadow .2s ease, top .2s ease;
}

body a:not(.button-primary):not(.button-secondary):not(.header-cta):not(.footer-cta):not(.mobile-nav-cta):not(.feedback-widget__cta):not(.admin-action):not(.admin-button):hover,
body a:not(.button-primary):not(.button-secondary):not(.header-cta):not(.footer-cta):not(.mobile-nav-cta):not(.feedback-widget__cta):not(.admin-action):not(.admin-button):focus-visible {
  color: var(--global-link-hover-color, var(--global-link-color, currentColor));
}

body[data-global-link-hover-effect="none"] a:not(.button-primary):not(.button-secondary):not(.header-cta):not(.footer-cta):not(.mobile-nav-cta):not(.feedback-widget__cta):not(.admin-action):not(.admin-button) {
  text-decoration: inherit;
}

body[data-global-link-hover-effect="underline"] a:not(.button-primary):not(.button-secondary):not(.header-cta):not(.footer-cta):not(.mobile-nav-cta):not(.feedback-widget__cta):not(.admin-action):not(.admin-button):hover,
body[data-global-link-hover-effect="underline"] a:not(.button-primary):not(.button-secondary):not(.header-cta):not(.footer-cta):not(.mobile-nav-cta):not(.feedback-widget__cta):not(.admin-action):not(.admin-button):focus-visible {
  text-decoration-line: underline;
  text-decoration-thickness: .08em;
  text-underline-offset: .22em;
}

body[data-global-link-hover-effect="fade"] a:not(.button-primary):not(.button-secondary):not(.header-cta):not(.footer-cta):not(.mobile-nav-cta):not(.feedback-widget__cta):not(.admin-action):not(.admin-button):hover,
body[data-global-link-hover-effect="fade"] a:not(.button-primary):not(.button-secondary):not(.header-cta):not(.footer-cta):not(.mobile-nav-cta):not(.feedback-widget__cta):not(.admin-action):not(.admin-button):focus-visible {
  opacity: .74;
}

body[data-global-link-hover-effect="lift"] a:not(.button-primary):not(.button-secondary):not(.header-cta):not(.footer-cta):not(.mobile-nav-cta):not(.feedback-widget__cta):not(.admin-action):not(.admin-button):hover,
body[data-global-link-hover-effect="lift"] a:not(.button-primary):not(.button-secondary):not(.header-cta):not(.footer-cta):not(.mobile-nav-cta):not(.feedback-widget__cta):not(.admin-action):not(.admin-button):focus-visible {
  top: -1px;
}

body[data-global-link-hover-effect="glow"] a:not(.button-primary):not(.button-secondary):not(.header-cta):not(.footer-cta):not(.mobile-nav-cta):not(.feedback-widget__cta):not(.admin-action):not(.admin-button):hover,
body[data-global-link-hover-effect="glow"] a:not(.button-primary):not(.button-secondary):not(.header-cta):not(.footer-cta):not(.mobile-nav-cta):not(.feedback-widget__cta):not(.admin-action):not(.admin-button):focus-visible {
  text-shadow: 0 0 14px color-mix(in srgb, var(--global-link-hover-color, var(--accent)) 42%, transparent);
}

.site-header--full .brand-copy strong,
.site-header--full .brand-copy span,
.site-header--full .site-nav--desktop > a,
.site-header--full .nav-dropdown__trigger,
.site-header--full .header-phone,
.site-header--full .header-cta {
  transition: font-size 0.2s ease, padding 0.2s ease, gap 0.2s ease;
}

@media (max-width: 1560px) {
  .site-header--full .header-inner {
    grid-template-columns: minmax(240px, auto) minmax(0, 1fr) auto;
    gap: 10px;
  }

  .site-header--full .brand {
    min-width: min(360px, 25vw);
  }

  .site-header--full .brand-copy {
    width: clamp(220px, 19vw, 300px);
  }

  .site-header--full .brand-copy strong {
    font-size: 14px;
  }

  .site-header--full .brand-copy span {
    font-size: 12px;
  }

  .site-header--full .site-nav--desktop > a,
  .site-header--full .nav-dropdown__trigger {
    padding: 10px 11px;
    font-size: 15px;
    gap: 6px;
  }

  .site-header--full .header-phone,
  .site-header--full .header-cta {
    padding: 12px 14px;
    font-size: 15px;
    gap: 8px;
  }

  .site-header--full .header-search-toggle {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }
}

.nav-overflow__toggle-icon,
.header-search-toggle__icon,
.header-search-submit__icon,
.mobile-nav-phone__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  line-height: 1;
}

.nav-overflow__toggle-icon > i,
.nav-overflow__toggle-icon > svg,
.nav-overflow__toggle-icon > img,
.header-search-toggle__icon > i,
.header-search-toggle__icon > svg,
.header-search-toggle__icon > img,
.header-search-submit__icon > i,
.header-search-submit__icon > svg,
.header-search-submit__icon > img,
.mobile-nav-phone__icon > i,
.mobile-nav-phone__icon > svg,
.mobile-nav-phone__icon > img {
  display: block;
  width: 1em;
  height: 1em;
}

.nav-overflow__toggle-icon.front-icon--empty,
.header-search-toggle__icon.front-icon--empty,
.header-search-submit__icon.front-icon--empty,
.mobile-nav-phone__icon.front-icon--empty {
  width: auto;
  height: auto;
  max-width: 100%;
  font-size: 10px;
  line-height: 1.1;
  text-align: center;
}

.nav-overflow__toggle-icon .front-icon-placeholder,
.header-search-toggle__icon .front-icon-placeholder,
.header-search-submit__icon .front-icon-placeholder,
.mobile-nav-phone__icon .front-icon-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-wrap: balance;
}

@media (max-width: 1280px) {
  .site-header--full .header-inner {
    grid-template-columns: minmax(210px, auto) minmax(0, 1fr) auto;
    gap: 8px;
  }

  .site-header--full .brand {
    min-width: min(320px, 23vw);
    gap: 10px;
  }

  .site-header--full .brand-mark {
    width: 40px;
    height: 40px;
  }

  .site-header--full .brand-copy {
    width: clamp(190px, 17vw, 260px);
  }

  .site-header--full .brand-copy strong {
    font-size: 13px;
  }

  .site-header--full .brand-copy span {
    font-size: 11px;
  }

  .site-header--full .site-nav--desktop {
    gap: 4px;
  }

  .site-header--full .site-nav--desktop > a,
  .site-header--full .nav-dropdown__trigger {
    padding: 9px 9px;
    font-size: 14px;
  }

  .site-header--full .header-actions--public {
    gap: 8px;
  }

  .site-header--full .header-phone,
  .site-header--full .header-cta {
    padding: 11px 12px;
    font-size: 14px;
  }

  .site-header--full .header-search-toggle {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
}

@media (max-width: 1460px) {
  .site-header--full .container {
    width: min(98vw, var(--container));
  }

  .site-header--full .header-inner {
    grid-template-columns: minmax(220px, auto) minmax(0, 1fr) auto;
    gap: 8px;
  }

  .site-header--full .brand {
    min-width: min(330px, 22vw);
  }

  .site-header--full .brand-copy {
    width: clamp(180px, 16vw, 250px);
  }

  .site-header--full .brand-copy strong {
    font-size: 13px;
  }

  .site-header--full .brand-copy span {
    font-size: 11px;
    line-height: 1.35;
  }

  .site-header--full .site-nav--desktop {
    gap: 3px;
  }

  .site-header--full .site-nav--desktop > a,
  .site-header--full .nav-dropdown__trigger {
    padding: 9px 8px;
    font-size: 14px;
    gap: 5px;
  }

  .site-header--full .header-actions--public {
    gap: 6px;
  }

  .site-header--full .header-phone,
  .site-header--full .header-cta {
    padding: 10px 11px;
    font-size: 14px;
    gap: 7px;
  }
}

@media (max-width: 1360px) {
  .site-header--full .header-inner {
    grid-template-columns: minmax(200px, auto) minmax(0, 1fr) auto;
    gap: 6px;
  }

  .site-header--full .brand {
    min-width: min(280px, 20vw);
    gap: 8px;
  }

  .site-header--full .brand-mark {
    width: 38px;
    height: 38px;
  }

  .site-header--full .brand-copy {
    width: clamp(145px, 13vw, 210px);
  }

  .site-header--full .brand-copy strong {
    font-size: 12px;
  }

  .site-header--full .brand-copy span {
    font-size: 10px;
  }

  .site-header--full .site-nav--desktop {
    gap: 2px;
  }

  .site-header--full .site-nav--desktop > a,
  .site-header--full .nav-dropdown__trigger {
    padding: 8px 7px;
    font-size: 13px;
    gap: 4px;
  }

  .site-header--full .header-phone,
  .site-header--full .header-cta {
    padding: 9px 10px;
    font-size: 13px;
    gap: 6px;
  }

  .site-header--full .header-search-toggle {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }
}

body[data-button-shape="rect"] .header-phone,
body[data-button-shape="rect"] .header-cta,
body[data-button-shape="rect"] .button-primary,
body[data-button-shape="rect"] .button-secondary,
body[data-button-shape="rect"] .footer-cta,
body[data-button-shape="rect"] .mobile-nav-cta { border-radius: 4px; }

body[data-button-shape="rounded"] .header-phone,
body[data-button-shape="rounded"] .header-cta,
body[data-button-shape="rounded"] .button-primary,
body[data-button-shape="rounded"] .button-secondary,
body[data-button-shape="rounded"] .footer-cta,
body[data-button-shape="rounded"] .mobile-nav-cta { border-radius: 16px; }

.site-header--sticky { position: sticky; top: 0; }
.site-header--center .header-inner { grid-template-columns: 1fr auto 1fr; }
.site-header--center .brand { grid-column: 2; }
.site-header--center .site-nav { justify-content: center; }
.header-html { border-top: 1px solid var(--line); padding: 10px 0; color: inherit; }
.header-html--surface { background: rgba(255,255,255,0.06); }
.header-html--border .container { border: 1px solid var(--line); border-radius: 18px; padding: 12px 18px; }

.header-phone,
.button-secondary {
  background: color-mix(in srgb, var(--surface-soft) 84%, transparent);
  color: var(--text);
}

.header-cta,
.button-primary,
.footer-cta,
.mobile-nav-cta {
  color: var(--button-text, #fff9f2);
  background-color: transparent;
  background-image:
    linear-gradient(135deg, var(--primary), var(--accent)),
    linear-gradient(
      115deg,
      transparent 0%,
      transparent 34%,
      rgba(255, 255, 255, 0.06) 42%,
      rgba(255, 255, 255, 0.34) 50%,
      rgba(255, 255, 255, 0.08) 58%,
      transparent 66%,
      transparent 100%
    );
  background-repeat: no-repeat;
  background-size: 100% 100%, 240% 100%;
  background-position: 0 0, 150% 0;
  box-shadow: 0 18px 38px color-mix(in srgb, var(--primary) 30%, transparent);
  animation: accentSheen 4.4s ease-in-out infinite;
}

body[data-global-button-style="custom"] .header-cta,
body[data-global-button-style="custom"] .button-primary,
body[data-global-button-style="custom"] .button-secondary,
body[data-global-button-style="custom"] .footer-cta,
body[data-global-button-style="custom"] .mobile-nav-cta {
  font-family: var(--global-button-font-family, inherit);
  font-size: var(--global-button-font-size, inherit);
  color: var(--global-button-text-color, var(--button-text, #fff9f2));
  padding: var(--global-button-padding-y, 14px) var(--global-button-padding-x, 18px);
  min-width: var(--global-button-min-width, auto);
  height: var(--global-button-height, auto);
  border-radius: var(--global-button-radius, 999px);
  border-width: var(--global-button-border-width, 1px);
  border-color: var(--global-button-border-color, var(--line));
  border-style: solid;
  letter-spacing: var(--global-button-letter-spacing, normal);
  background: var(--global-button-background, linear-gradient(135deg, var(--primary), var(--accent))) !important;
}

body[data-global-button-animation=""] .header-cta,
body[data-global-button-animation=""] .button-primary,
body[data-global-button-animation=""] .button-secondary,
body[data-global-button-animation=""] .footer-cta,
body[data-global-button-animation=""] .mobile-nav-cta {
  animation: none;
}

body[data-global-button-animation="pop"] .header-cta,
body[data-global-button-animation="pop"] .button-primary,
body[data-global-button-animation="pop"] .button-secondary,
body[data-global-button-animation="pop"] .footer-cta,
body[data-global-button-animation="pop"] .mobile-nav-cta { animation: frontPop calc(2.6s - (var(--global-button-anim-intensity, .6) * .5s)) ease-in-out infinite !important; }

body[data-global-button-animation="pulse"] .header-cta,
body[data-global-button-animation="pulse"] .button-primary,
body[data-global-button-animation="pulse"] .button-secondary,
body[data-global-button-animation="pulse"] .footer-cta,
body[data-global-button-animation="pulse"] .mobile-nav-cta { animation: frontPulse calc(3.2s - (var(--global-button-anim-intensity, .6) * 1s)) ease-in-out infinite !important; }

body[data-global-button-animation="float"] .header-cta,
body[data-global-button-animation="float"] .button-primary,
body[data-global-button-animation="float"] .button-secondary,
body[data-global-button-animation="float"] .footer-cta,
body[data-global-button-animation="float"] .mobile-nav-cta { animation: frontFloat calc(5.2s - (var(--global-button-anim-intensity, .6) * 1s)) ease-in-out infinite !important; }

body[data-global-button-animation="glow"] .header-cta,
body[data-global-button-animation="glow"] .button-primary,
body[data-global-button-animation="glow"] .button-secondary,
body[data-global-button-animation="glow"] .footer-cta,
body[data-global-button-animation="glow"] .mobile-nav-cta { animation: frontGlow calc(3.8s - (var(--global-button-anim-intensity, .6) * .8s)) ease-in-out infinite !important; }

body[data-global-button-animation="shine"] .header-cta,
body[data-global-button-animation="shine"] .button-primary,
body[data-global-button-animation="shine"] .button-secondary,
body[data-global-button-animation="shine"] .footer-cta,
body[data-global-button-animation="shine"] .mobile-nav-cta { animation: frontShine calc(4.4s - (var(--global-button-anim-intensity, .6) * .7s)) ease-in-out infinite !important; }

body[data-global-button-animation="heartbeat"] .header-cta,
body[data-global-button-animation="heartbeat"] .button-primary,
body[data-global-button-animation="heartbeat"] .button-secondary,
body[data-global-button-animation="heartbeat"] .footer-cta,
body[data-global-button-animation="heartbeat"] .mobile-nav-cta { animation: frontHeartbeat calc(2.4s - (var(--global-button-anim-intensity, .6) * .4s)) ease-in-out infinite !important; }

.button-primary--accent,
.button-style-accent {
  box-shadow:
    0 18px 38px color-mix(in srgb, var(--primary) 30%, transparent),
    0 0 0 1px color-mix(in srgb, rgba(255, 255, 255, 0.22) 42%, transparent);
}

.header-phone:hover,
.header-cta:hover,
.button-primary:hover,
.button-secondary:hover,
.footer-cta:hover,
.mobile-nav-cta:hover {
  transform: translateY(-2px);
}

.hero-actions,
.cta-actions,
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  color: var(--text);
}

.footer-extra-contacts .footer-copy {
  display: grid;
  gap: 3px;
}

.footer-contact-link {
  display: inline;
  width: auto;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-decoration: none;
}

.footer-contact-link:hover,
.footer-contact-link:focus-visible {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-extra-contacts span {
  color: var(--muted);
  font-size: 13px;
}

.quick-call-widget,
.share-widget,
.scroll-top-widget {
  position: fixed;
  z-index: 90;
  right: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff9f2;
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
}

.quick-call-widget {
  bottom: 82px;
  display: none;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 999px;
}

.scroll-top-widget {
  bottom: 24px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.scroll-top-widget__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  line-height: 1;
}

.scroll-top-widget__icon > i,
.scroll-top-widget__icon > svg,
.scroll-top-widget__icon > img {
  display: block;
  width: 1em;
  height: 1em;
}

.scroll-top-widget__icon.front-icon--empty {
  width: auto;
  height: auto;
  max-width: 100%;
  font-size: 10px;
  line-height: 1.1;
  text-align: center;
}

.scroll-top-widget__icon .front-icon-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-wrap: balance;
}

.share-widget {
  left: 18px;
  right: auto;
  bottom: 24px;
  display: flex;
  gap: 8px;
  padding: 10px;
  border-radius: 999px;
}

.share-widget a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  color: #fff9f2;
}

.feedback-widget {
  position: fixed;
  z-index: var(--feedback-z, 95);
  display: grid;
  gap: var(--feedback-gap, 10px);
  align-items: end;
  opacity: var(--feedback-opacity, 1);
  transition: opacity .22s ease, transform .22s ease;
}

.feedback-widget--right-bottom {
  right: var(--feedback-offset-x, 24px);
  bottom: var(--feedback-offset-y, 112px);
  justify-items: end;
}

.feedback-widget--left-bottom {
  left: var(--feedback-offset-x, 24px);
  bottom: var(--feedback-offset-y, 112px);
  justify-items: start;
}

.feedback-widget--right-center {
  right: var(--feedback-offset-x, 24px);
  top: 50%;
  transform: translateY(-50%);
  justify-items: end;
}

.feedback-widget--left-center {
  left: var(--feedback-offset-x, 24px);
  top: 50%;
  transform: translateY(-50%);
  justify-items: start;
}

.feedback-widget[data-feedback-scroll="1"]:not(.is-scroll-visible) {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.feedback-widget__items {
  order: 2;
  display: grid;
  gap: var(--feedback-gap, 10px);
  justify-items: inherit;
}

.feedback-widget--dropdown .feedback-widget__items {
  display: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(.96);
  transform-origin: bottom right;
  transition: opacity .2s ease, transform .2s ease;
}

.feedback-widget--dropdown.is-open .feedback-widget__items {
  display: grid;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.feedback-widget__toggle,
.feedback-widget__item {
  width: var(--feedback-size, 52px);
  height: var(--feedback-size, 52px);
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--feedback-item-color, #283f3c) 22%, transparent);
  border-radius: var(--feedback-radius, 999px);
  background: var(--feedback-item-bg, var(--feedback-bg, #d89657));
  color: var(--feedback-item-color, var(--feedback-color, #283f3c));
  box-shadow: var(--feedback-shadow, 0 18px 40px rgba(40,63,60,.24));
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.feedback-widget__toggle {
  order: 3;
  position: relative;
  isolation: isolate;
  overflow: visible;
  background: var(--feedback-bg, #d89657);
  color: var(--feedback-color, #283f3c);
}

.feedback-widget__toggle::before,
.feedback-widget__toggle::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  transform: scale(.92);
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--feedback-bg, #d89657) 82%, white 18%);
}

.feedback-widget__toggle:hover,
.feedback-widget__item:hover,
.feedback-widget__toggle:focus-visible,
.feedback-widget__item:focus-visible {
  transform: translateY(-3px);
  filter: brightness(1.04);
  outline: none;
}

.feedback-widget__item svg,
.feedback-widget__toggle svg,
.feedback-widget__item img {
  width: calc(var(--feedback-size, 52px) * .48);
  height: calc(var(--feedback-size, 52px) * .48);
  object-fit: contain;
}

.feedback-widget__item svg,
.feedback-widget__toggle svg,
.feedback-widget__icon-svg {
  fill: currentColor;
  stroke: currentColor;
}

.feedback-widget__icon-image {
  display: block;
}

.feedback-widget__item span:not(.feedback-widget__close-icon):not(.feedback-widget__icon) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.feedback-widget__close-icon {
  display: none;
  font-size: calc(var(--feedback-size, 52px) * .54);
  line-height: 1;
}

.feedback-widget--dropdown.is-open .feedback-widget__toggle svg {
  display: none;
}

.feedback-widget--dropdown.is-open .feedback-widget__close-icon {
  display: block;
}

.feedback-widget__cta {
  order: 1;
  position: relative;
  max-width: min(280px, calc(100vw - 96px));
  padding: 14px 42px 14px 16px;
  border: 1px solid rgba(40,63,60,.16);
  border-radius: 18px;
  background: color-mix(in srgb, var(--surface, #fffaf2) 94%, transparent);
  color: #283f3c;
  box-shadow: 0 18px 44px rgba(40,63,60,.18);
}

.feedback-widget__cta strong,
.feedback-widget__cta span {
  display: block;
}

.feedback-widget__cta span {
  margin-top: 3px;
  font-size: 13px;
  line-height: 1.35;
}

.feedback-widget__cta-close {
  position: absolute;
  right: 10px;
  top: 8px;
  width: 24px;
  height: 24px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.feedback-widget.is-cta-hidden .feedback-widget__cta,
.feedback-widget--all .feedback-widget__toggle,
.feedback-widget--single .feedback-widget__toggle,
body.cookie-banner-visible .feedback-widget {
  display: none;
}

.feedback-widget[data-feedback-animation="soft"] .feedback-widget__toggle,
.feedback-widget[data-feedback-animation="soft"].feedback-widget--single .feedback-widget__item:first-child,
.feedback-widget[data-feedback-animation="soft"].feedback-widget--all .feedback-widget__item:first-child {
  animation: feedbackSoftFloat 3.4s ease-in-out infinite;
}

.feedback-widget[data-feedback-animation="pulse"] .feedback-widget__toggle,
.feedback-widget[data-feedback-animation="pulse"].feedback-widget--single .feedback-widget__item:first-child,
.feedback-widget[data-feedback-animation="pulse"].feedback-widget--all .feedback-widget__item:first-child {
  animation: feedbackPulse 1.95s cubic-bezier(.22, .61, .36, 1) infinite;
}

.feedback-widget[data-feedback-animation="pulse"] .feedback-widget__toggle::before,
.feedback-widget[data-feedback-animation="pulse"] .feedback-widget__toggle::after,
.feedback-widget[data-feedback-animation="beacon"] .feedback-widget__toggle::before,
.feedback-widget[data-feedback-animation="beacon"] .feedback-widget__toggle::after,
.feedback-widget[data-feedback-animation="sonar"] .feedback-widget__toggle::before,
.feedback-widget[data-feedback-animation="sonar"] .feedback-widget__toggle::after {
  opacity: 0;
}

.feedback-widget[data-feedback-animation="pulse"] .feedback-widget__toggle::before {
  animation: feedbackPulseWave 1.95s ease-out infinite;
}

.feedback-widget[data-feedback-animation="pulse"] .feedback-widget__toggle::after {
  animation: feedbackPulseWave 1.95s ease-out .58s infinite;
}

.feedback-widget[data-feedback-animation="slide"] .feedback-widget__toggle,
.feedback-widget[data-feedback-animation="slide"].feedback-widget--single .feedback-widget__item:first-child,
.feedback-widget[data-feedback-animation="slide"].feedback-widget--all .feedback-widget__item:first-child {
  animation: feedbackSlide 2.6s ease-in-out infinite;
}

.feedback-widget[data-feedback-animation="bounce"] .feedback-widget__toggle,
.feedback-widget[data-feedback-animation="bounce"].feedback-widget--single .feedback-widget__item:first-child,
.feedback-widget[data-feedback-animation="bounce"].feedback-widget--all .feedback-widget__item:first-child {
  animation: feedbackBounce 2.1s ease-in-out infinite;
}

.feedback-widget[data-feedback-animation="heartbeat"] .feedback-widget__toggle,
.feedback-widget[data-feedback-animation="heartbeat"].feedback-widget--single .feedback-widget__item:first-child,
.feedback-widget[data-feedback-animation="heartbeat"].feedback-widget--all .feedback-widget__item:first-child {
  animation: feedbackHeartbeat 1.75s ease-in-out infinite;
}

.feedback-widget[data-feedback-animation="beacon"] .feedback-widget__toggle,
.feedback-widget[data-feedback-animation="beacon"].feedback-widget--single .feedback-widget__item:first-child,
.feedback-widget[data-feedback-animation="beacon"].feedback-widget--all .feedback-widget__item:first-child {
  animation: feedbackBeacon 2.2s ease-out infinite;
}

.feedback-widget[data-feedback-animation="beacon"] .feedback-widget__toggle::before {
  animation: feedbackBeaconWave 2.2s ease-out infinite;
}

.feedback-widget[data-feedback-animation="beacon"] .feedback-widget__toggle::after {
  animation: feedbackBeaconWave 2.2s ease-out .72s infinite;
}

.feedback-widget[data-feedback-animation="wobble"] .feedback-widget__toggle,
.feedback-widget[data-feedback-animation="wobble"].feedback-widget--single .feedback-widget__item:first-child,
.feedback-widget[data-feedback-animation="wobble"].feedback-widget--all .feedback-widget__item:first-child {
  animation: feedbackWobble 2.5s ease-in-out infinite;
  transform-origin: 50% 85%;
}

.feedback-widget[data-feedback-animation="jelly"] .feedback-widget__toggle,
.feedback-widget[data-feedback-animation="jelly"].feedback-widget--single .feedback-widget__item:first-child,
.feedback-widget[data-feedback-animation="jelly"].feedback-widget--all .feedback-widget__item:first-child {
  animation: feedbackJelly 2.35s ease-in-out infinite;
}

.feedback-widget[data-feedback-animation="ring"] .feedback-widget__toggle,
.feedback-widget[data-feedback-animation="ring"].feedback-widget--single .feedback-widget__item:first-child,
.feedback-widget[data-feedback-animation="ring"].feedback-widget--all .feedback-widget__item:first-child {
  animation: feedbackRing 2.1s ease-in-out infinite;
  transform-origin: 50% 12%;
}

.feedback-widget[data-feedback-animation="shimmer"] .feedback-widget__toggle,
.feedback-widget[data-feedback-animation="shimmer"].feedback-widget--single .feedback-widget__item:first-child,
.feedback-widget[data-feedback-animation="shimmer"].feedback-widget--all .feedback-widget__item:first-child {
  animation: feedbackShimmer 2.8s ease-in-out infinite;
}

.feedback-widget[data-feedback-animation="drift"] .feedback-widget__toggle,
.feedback-widget[data-feedback-animation="drift"].feedback-widget--single .feedback-widget__item:first-child,
.feedback-widget[data-feedback-animation="drift"].feedback-widget--all .feedback-widget__item:first-child {
  animation: feedbackDrift 3.1s ease-in-out infinite;
}

.feedback-widget[data-feedback-animation="flip"] .feedback-widget__toggle,
.feedback-widget[data-feedback-animation="flip"].feedback-widget--single .feedback-widget__item:first-child,
.feedback-widget[data-feedback-animation="flip"].feedback-widget--all .feedback-widget__item:first-child {
  animation: feedbackFlip 2.9s ease-in-out infinite;
  transform-style: preserve-3d;
}

.feedback-widget[data-feedback-animation="sonar"] .feedback-widget__toggle,
.feedback-widget[data-feedback-animation="sonar"].feedback-widget--single .feedback-widget__item:first-child,
.feedback-widget[data-feedback-animation="sonar"].feedback-widget--all .feedback-widget__item:first-child {
  animation: feedbackSonar 2.45s ease-in-out infinite;
}

.feedback-widget[data-feedback-animation="sonar"] .feedback-widget__toggle::before {
  animation: feedbackSonarWave 2.45s cubic-bezier(.22, .61, .36, 1) infinite;
}

.feedback-widget[data-feedback-animation="sonar"] .feedback-widget__toggle::after {
  animation: feedbackSonarWave 2.45s cubic-bezier(.22, .61, .36, 1) .82s infinite;
}

@keyframes feedbackSoftFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes feedbackPulse {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: var(--feedback-shadow, 0 18px 40px rgba(40,63,60,.24));
  }
  35% {
    transform: translateY(-2px) scale(1.06);
    box-shadow:
      0 0 0 10px color-mix(in srgb, var(--feedback-bg, #d89657) 74%, white),
      0 0 0 22px color-mix(in srgb, var(--feedback-bg, #d89657) 38%, transparent),
      var(--feedback-shadow, 0 18px 40px rgba(40,63,60,.24));
  }
  60% {
    transform: translateY(-1px) scale(1.02);
    box-shadow:
      0 0 0 6px color-mix(in srgb, var(--feedback-bg, #d89657) 52%, white),
      var(--feedback-shadow, 0 18px 40px rgba(40,63,60,.24));
  }
}

@keyframes feedbackSlide {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-5px); }
}

@keyframes feedbackPulseWave {
  0% {
    opacity: .82;
    transform: scale(.86);
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--feedback-bg, #d89657) 78%, white 22%);
  }
  100% {
    opacity: 0;
    transform: scale(1.72);
    box-shadow: 0 0 0 18px color-mix(in srgb, var(--feedback-bg, #d89657) 30%, transparent);
  }
}

@keyframes feedbackBounce {
  0%, 100% { transform: translateY(0) scale(1); }
  18% { transform: translateY(-8px) scale(1.03); }
  32% { transform: translateY(0) scale(.98); }
  48% { transform: translateY(-4px) scale(1.01); }
}

@keyframes feedbackHeartbeat {
  0%, 100% { transform: scale(1); }
  14% { transform: scale(1.12); }
  28% { transform: scale(1); }
  42% { transform: scale(1.16); }
  58% { transform: scale(1.01); }
}

@keyframes feedbackBeacon {
  0%, 100% {
    transform: scale(1);
    filter: brightness(1);
  }
  40% {
    transform: scale(1.08);
    filter: brightness(1.12);
  }
}

@keyframes feedbackBeaconWave {
  0% {
    opacity: .7;
    transform: scale(.84);
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--feedback-bg, #d89657) 72%, white 20%);
  }
  100% {
    opacity: 0;
    transform: scale(1.95);
    box-shadow: 0 0 0 24px color-mix(in srgb, var(--feedback-bg, #d89657) 26%, transparent);
  }
}

@keyframes feedbackWobble {
  0%, 100% { transform: rotate(0deg); }
  15% { transform: rotate(-9deg); }
  30% { transform: rotate(7deg); }
  45% { transform: rotate(-5deg); }
  60% { transform: rotate(3deg); }
}

@keyframes feedbackJelly {
  0%, 100% { transform: scale(1, 1); }
  24% { transform: scale(1.08, .92); }
  40% { transform: scale(.94, 1.06); }
  56% { transform: scale(1.03, .97); }
}

@keyframes feedbackRing {
  0%, 100% { transform: rotate(0deg); }
  12% { transform: rotate(12deg); }
  24% { transform: rotate(-10deg); }
  36% { transform: rotate(8deg); }
  48% { transform: rotate(-6deg); }
  60% { transform: rotate(0deg); }
}

@keyframes feedbackShimmer {
  0%, 100% {
    box-shadow: var(--feedback-shadow, 0 18px 40px rgba(40,63,60,.24));
    filter: brightness(1);
  }
  45% {
    box-shadow:
      0 0 0 1px color-mix(in srgb, white 55%, transparent),
      0 14px 36px color-mix(in srgb, var(--feedback-bg, #d89657) 48%, transparent),
      var(--feedback-shadow, 0 18px 40px rgba(40,63,60,.24));
    filter: brightness(1.12);
  }
}

@keyframes feedbackDrift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  33% { transform: translate3d(-4px, -5px, 0); }
  66% { transform: translate3d(4px, -2px, 0); }
}

@keyframes feedbackFlip {
  0%, 100% { transform: perspective(320px) rotateY(0deg); }
  40% { transform: perspective(320px) rotateY(16deg); }
  65% { transform: perspective(320px) rotateY(-12deg); }
}

@keyframes feedbackSonar {
  0%, 100% { transform: scale(1); }
  26% { transform: scale(1.09); }
  52% { transform: scale(1.01); }
}

@keyframes feedbackSonarWave {
  0% {
    opacity: .76;
    transform: scale(.78);
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--feedback-bg, #d89657) 84%, white 16%);
  }
  100% {
    opacity: 0;
    transform: scale(2.1);
    box-shadow: 0 0 0 28px color-mix(in srgb, var(--feedback-bg, #d89657) 16%, transparent);
  }
}

@media (max-width: 700px) {
  .feedback-widget {
    right: min(var(--feedback-offset-x, 24px), 14px);
  }

  .feedback-widget--left-bottom,
  .feedback-widget--left-center {
    left: min(var(--feedback-offset-x, 24px), 14px);
    right: auto;
  }

  .feedback-widget__toggle,
  .feedback-widget__item {
    width: min(var(--feedback-size, 52px), 48px);
    height: min(var(--feedback-size, 52px), 48px);
  }

  .feedback-widget__cta {
    max-width: min(220px, calc(100vw - 84px));
    padding: 12px 38px 12px 14px;
  }
}

@keyframes accentSheen {
  0%,
  14% {
    background-position: 0 0, 150% 0;
    box-shadow: 0 18px 38px color-mix(in srgb, var(--primary) 30%, transparent);
  }
  46% {
    background-position: 0 0, -70% 0;
    box-shadow: 0 22px 46px color-mix(in srgb, var(--accent) 42%, transparent);
  }
  100% {
    background-position: 0 0, -70% 0;
    box-shadow: 0 18px 38px color-mix(in srgb, var(--primary) 30%, transparent);
  }
}

.section[data-bg-tone="затемнить"]::after,
.section[data-bg-tone="осветлить"]::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.section[data-bg-tone="затемнить"]::after {
  background: rgba(0, 0, 0, 0.42);
}

.section[data-bg-tone="осветлить"]::after {
  background: rgba(255, 244, 232, 0.18);
}

.section[data-bg-tone] > .container {
  position: relative;
  z-index: 1;
}

.section-anim {
  animation-duration: 1.28s;
  animation-timing-function: cubic-bezier(.2,.8,.2,1);
  animation-fill-mode: both;
  will-change: opacity, transform, filter;
}

.section-anim[data-section-animation="1"][data-section-animation-state="hidden"] {
  animation: none !important;
  opacity: 0;
  pointer-events: none;
}

.section-anim[data-section-animation="1"][data-section-animation-state="visible"] {
  pointer-events: auto;
}

.section-anim--fade[data-section-animation="1"][data-section-animation-state="hidden"] { transform: none; filter: none; }
.section-anim--rise[data-section-animation="1"][data-section-animation-state="hidden"] { transform: translateY(34px); filter: none; }
.section-anim--slide-left[data-section-animation="1"][data-section-animation-state="hidden"] { transform: translateX(-42px); filter: none; }
.section-anim--slide-right[data-section-animation="1"][data-section-animation-state="hidden"] { transform: translateX(42px); filter: none; }
.section-anim--zoom[data-section-animation="1"][data-section-animation-state="hidden"] { transform: scale(.96); filter: none; }
.section-anim--blur[data-section-animation="1"][data-section-animation-state="hidden"] { transform: scale(.985); filter: blur(26px); }
.section-anim--tilt[data-section-animation="1"][data-section-animation-state="hidden"] { transform: perspective(900px) rotateX(5deg); filter: none; }
.section-anim--wave[data-section-animation="1"][data-section-animation-state="hidden"] { transform: translateY(24px) skewY(1.8deg); filter: none; }
.section-anim--glow[data-section-animation="1"][data-section-animation-state="hidden"] { transform: none; filter: none; box-shadow: inset 0 0 0 rgba(240,191,137,0); }
.section-anim--pulse[data-section-animation="1"][data-section-animation-state="hidden"] { transform: none; filter: none; opacity: .88; }

.section-anim--fade { animation-name: sectionFade; }
.section-anim--rise { animation-name: sectionRise; }
.section-anim--slide-left { animation-name: sectionSlideLeft; }
.section-anim--slide-right { animation-name: sectionSlideRight; }
.section-anim--zoom { animation-name: sectionZoom; }
.section-anim--blur { animation-name: sectionBlur; }
.section-anim--tilt { animation-name: sectionTilt; }
.section-anim--wave { animation-name: sectionWave; }
.section-anim--glow { animation-name: sectionGlow; }
.section-anim--pulse { animation-name: sectionPulse; }

@keyframes sectionFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes sectionRise { from { opacity: 0; transform: translateY(34px); } to { opacity: 1; transform: translateY(0); } }
@keyframes sectionSlideLeft { from { opacity: 0; transform: translateX(-42px); } to { opacity: 1; transform: translateX(0); } }
@keyframes sectionSlideRight { from { opacity: 0; transform: translateX(42px); } to { opacity: 1; transform: translateX(0); } }
@keyframes sectionZoom { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: scale(1); } }
@keyframes sectionBlur { from { opacity: 0; transform: scale(.985); filter: blur(26px); } to { opacity: 1; transform: scale(1); filter: blur(0); } }
@keyframes sectionTilt { from { opacity: 0; transform: perspective(900px) rotateX(5deg); } to { opacity: 1; transform: perspective(900px) rotateX(0); } }
@keyframes sectionWave { 0% { opacity: 0; transform: translateY(24px) skewY(1.8deg); } 100% { opacity: 1; transform: translateY(0) skewY(0); } }
@keyframes sectionGlow { from { opacity: .7; box-shadow: inset 0 0 0 rgba(240,191,137,0); } to { opacity: 1; box-shadow: inset 0 1px 0 rgba(240,191,137,0.18); } }
@keyframes sectionPulse { 0% { opacity: .88; } 50% { opacity: 1; } 100% { opacity: .98; } }

.workflow-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-grid--image-left {
  align-items: stretch;
}

.split-media-stack {
  display: grid;
  gap: 18px;
  align-content: stretch;
  height: 100%;
}

.about-grid--image-left .photo-frame {
  min-height: clamp(360px, 48vw, 640px);
}

.about-grid--image-left .split-media-stack > .photo-frame:first-child {
  position: relative;
  height: 100%;
}

.about-grid--image-left .split-media-stack > .photo-frame:first-child > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.workflow-panel,
.contact-card,
.cta-panel {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--panel-bg);
  box-shadow: var(--panel-shadow);
  overflow: hidden;
}

.workflow-step {
  display: inline-flex;
  min-width: 46px;
  height: 46px;
  padding: 0 14px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--surface-soft) 90%, transparent);
  color: var(--accent-text);
  font-weight: 800;
}

.workflow-item h3,
.contact-card h3 {
  margin: 18px 0 10px;
  font-size: 22px;
  line-height: 1.15;
}

.workflow-item p,
.contact-card p {
  margin: 0;
  color: var(--muted);
}

.section-cta .cta-panel {
  padding: 42px;
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--accent) 18%, transparent), transparent 32%),
    var(--panel-bg);
}

.gallery-grid--equal {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(260px, 1fr);
}

.gallery-grid--equal .gallery-item,
.gallery-grid--equal .gallery-item.large,
.gallery-grid--equal .gallery-item.tall,
.gallery-grid--equal .gallery-item.medium,
.gallery-grid--equal .gallery-item.wide {
  grid-column: auto;
  min-height: 260px;
  width: 100%;
  padding: 0;
  cursor: zoom-in;
  text-align: left;
  color: inherit;
}

.section-gallery-grid,
.section-gallery-coverflow,
.section-video-showcase {
  color: var(--section-text, var(--text));
}

.section-gallery-grid .section-title,
.section-gallery-coverflow .section-title,
.section-video-showcase .section-title {
  color: var(--section-text, var(--text));
}

.section-gallery-grid .section-text,
.section-gallery-coverflow .section-text,
.section-video-showcase .section-text {
  color: var(--section-muted, var(--muted));
}

.section-gallery-grid .eyebrow,
.section-gallery-coverflow .eyebrow,
.section-video-showcase .eyebrow {
  border-color: color-mix(in srgb, var(--section-line, var(--line)) 100%, transparent);
  background: color-mix(in srgb, var(--section-surface-soft, var(--surface-soft)) 84%, transparent);
  color: var(--section-accent-text, var(--eyebrow-text));
}

.section-gallery-grid .eyebrow::before,
.section-gallery-coverflow .eyebrow::before,
.section-video-showcase .eyebrow::before {
  background: currentColor;
  box-shadow: 0 0 20px color-mix(in srgb, currentColor 42%, transparent);
}

.section-gallery-grid .photo-frame,
.section-gallery-grid .gallery-item,
.section-home-gallery .photo-frame,
.section-home-gallery .gallery-item {
  border-color: color-mix(in srgb, var(--section-line, var(--image-line)) 100%, transparent);
  background: var(--section-surface, var(--surface));
  box-shadow: 0 18px 40px color-mix(in srgb, var(--section-surface, var(--surface)) 24%, transparent);
}

.section-gallery-grid .photo-frame::after,
.section-gallery-grid .gallery-item::after,
.section-home-gallery .photo-frame::after,
.section-home-gallery .gallery-item::after {
  background:
    linear-gradient(
      180deg,
      color-mix(in srgb, var(--section-surface, var(--surface)) 0%, transparent),
      color-mix(in srgb, var(--section-surface, var(--surface)) 58%, transparent)
    );
}

.section-gallery-grid .photo-caption,
.section-home-gallery .photo-caption {
  background:
    linear-gradient(
      180deg,
      color-mix(in srgb, var(--section-surface, var(--surface)) 12%, transparent),
      color-mix(in srgb, var(--section-surface, var(--surface)) 78%, transparent)
    );
  box-shadow: 0 12px 24px color-mix(in srgb, var(--section-surface, var(--surface)) 28%, transparent);
}

.section-gallery-grid .photo-caption strong,
.section-home-gallery .photo-caption strong {
  color: var(--section-text, var(--caption-title));
}

.section-gallery-grid .photo-caption span,
.section-home-gallery .photo-caption span {
  color: var(--section-muted, var(--caption-text));
}

.section-gallery-grid .container {
  display: grid;
  gap: 28px;
}

.section-gallery-coverflow .container {
  display: grid;
  gap: 28px;
}

.section-gallery-coverflow .container {
  width: 100%;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.section-gallery-coverflow {
  overflow: clip;
  padding-bottom: 0 !important;
  background: transparent;
}

.section-gallery-grid,
.section-home-gallery,
.section-gallery-coverflow {
  background: transparent;
}

.section-gallery-coverflow + .section-video-showcase {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.section-gallery-coverflow .section-header {
  width: min(1180px, calc(100vw - 48px));
  margin: 0 auto;
  padding-inline: 24px;
}

.gallery-coverflow {
  position: relative;
  display: grid;
  gap: 0;
  padding: 0;
  min-height: clamp(400px, 33vw, 520px);
  border-radius: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-bottom: 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  border-left: 0;
  border-right: 0;
  background:
    radial-gradient(circle at 50% 24%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 34%),
    linear-gradient(
      180deg,
      color-mix(in srgb, var(--surface-soft) 92%, transparent) 0%,
      color-mix(in srgb, var(--surface) 84%, transparent) 52%,
      color-mix(in srgb, var(--bg-elevated) 72%, white 28%) 100%
    );
  box-shadow: 0 24px 52px color-mix(in srgb, var(--bg) 10%, transparent);
  overflow: hidden;
}

.gallery-coverflow::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 14%, transparent), rgba(255,244,232,0) 22%, color-mix(in srgb, var(--bg) 8%, transparent) 58%, color-mix(in srgb, var(--surface-soft) 16%, transparent) 86%),
    radial-gradient(ellipse at center 40%, color-mix(in srgb, var(--spotlight) 100%, transparent), transparent 34%);
  pointer-events: none;
}

.gallery-coverflow::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 0;
  height: 176px;
  background:
    radial-gradient(ellipse at 50% 4%, color-mix(in srgb, var(--bg) 22%, transparent), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,0), color-mix(in srgb, var(--surface-soft) 42%, transparent));
  pointer-events: none;
}

.gallery-coverflow__viewport {
  position: relative;
  z-index: 1;
  height: clamp(352px, 31vw, 472px);
  perspective: 2600px;
  perspective-origin: center 34%;
}

.gallery-coverflow__track {
  position: absolute;
  inset: 0;
}

.gallery-coverflow__item {
  position: absolute;
  left: 50%;
  top: 50%;
  box-sizing: border-box;
  height: 100%;
  width: auto;
  max-width: min(64vw, 760px);
  aspect-ratio: 16 / 10.3;
  padding: 0;
  appearance: none;
  cursor: pointer;
  text-align: left;
  color: inherit;
  background: var(--surface);
  border: 8px solid var(--image-line);
  border-bottom-width: 10px;
  border-radius: 0;
  box-shadow:
    var(--image-shadow),
    0 2px 0 color-mix(in srgb, var(--surface-soft) 82%, white 18%) inset;
  transform-style: preserve-3d;
  transform-origin: center center;
  transform:
    translate(-50%, -50%)
    translateX(var(--gallery-shift, 0%))
    rotateY(var(--gallery-rotate, 0deg))
    scale(var(--gallery-scale, 1)) !important;
  opacity: var(--gallery-opacity, 1);
  filter: blur(var(--gallery-blur, 0));
  transition:
    transform 420ms cubic-bezier(.2, .8, .2, 1),
    opacity 320ms ease,
    filter 320ms ease,
    box-shadow 320ms ease,
    border-color 320ms ease;
  will-change: transform, opacity, filter;
}

.gallery-coverflow__item:hover,
.gallery-coverflow__item:focus,
.gallery-coverflow__item:focus-visible,
.gallery-coverflow__item:active {
  outline: none;
  transform:
    translate(-50%, -50%)
    translateX(var(--gallery-shift, 0%))
    rotateY(var(--gallery-rotate, 0deg))
    scale(var(--gallery-scale, 1)) !important;
}

.gallery-coverflow__item::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 0;
  box-shadow: none;
  pointer-events: none;
  z-index: 1;
}

.gallery-coverflow__item::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -28px;
  height: 26px;
  border-radius: 50%;
  background: rgba(0,0,0,.3);
  filter: blur(12px);
  transform: translateZ(-1px);
  z-index: -1;
}

.gallery-coverflow__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--image-focus-x, 50%) var(--image-focus-y, 50%);
  pointer-events: none;
}

.gallery-coverflow__item.is-active {
  box-shadow:
    var(--panel-shadow-hover),
    0 2px 0 color-mix(in srgb, var(--surface-soft) 82%, white 18%) inset;
}

.gallery-coverflow__item.is-far {
  pointer-events: none;
}

.gallery-coverflow__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 52px 28px 20px;
  background: var(--caption-bg);
  color: var(--caption-title);
  text-align: center;
  transition: opacity 220ms ease, transform 220ms ease;
  box-shadow: var(--caption-shadow);
}

.gallery-coverflow__caption,
.gallery-coverflow__caption strong,
.gallery-coverflow__caption span,
.photo-caption,
.photo-caption strong,
.photo-caption span {
  pointer-events: auto;
}

.gallery-coverflow__item:not(.is-active) .gallery-coverflow__caption {
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
}

.gallery-coverflow__caption strong,
.gallery-coverflow__caption span {
  display: block;
}

.gallery-coverflow__caption strong {
  font-size: clamp(24px, 2.65vw, 36px);
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,.45);
}

.gallery-coverflow__caption span {
  margin: 6px auto 0;
  max-width: 48ch;
  color: var(--caption-text);
  font-size: clamp(16px, 1.25vw, 22px);
  line-height: 1.45;
}

.gallery-coverflow__controls {
  position: absolute;
  inset: 0;
  z-index: 170;
  pointer-events: none;
}

.gallery-coverflow__arrow {
  position: absolute;
  top: 50%;
  width: 58px;
  height: 58px;
  margin-top: -29px;
  border-radius: 999px;
  border: 1px solid var(--button-secondary-border);
  background: var(--button-secondary-bg);
  color: var(--button-secondary-text);
  box-shadow: 0 18px 38px color-mix(in srgb, var(--bg) 14%, transparent), inset 0 1px 0 color-mix(in srgb, var(--surface-soft) 78%, white 22%);
  pointer-events: auto;
  z-index: 171;
}

.gallery-coverflow__arrow--next {
  right: 112px;
}

.gallery-coverflow__arrow--prev {
  left: 42px;
}

.gallery-coverflow__arrow:hover {
  color: var(--text);
  background: color-mix(in srgb, var(--surface-soft) 96%, transparent);
  border-color: var(--line-strong);
}

.gallery-coverflow__arrow:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.gallery-coverflow__arrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  line-height: 1;
}

.gallery-coverflow__arrow-icon > i,
.gallery-coverflow__arrow-icon > svg,
.gallery-coverflow__arrow-icon > img {
  display: block;
  width: 1em;
  height: 1em;
}

.gallery-coverflow__arrow-icon.front-icon--empty {
  width: auto;
  height: auto;
  max-width: 100%;
  font-size: 10px;
  line-height: 1.1;
  text-align: center;
}

.gallery-coverflow__arrow-icon .front-icon-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-wrap: balance;
}

.section-nav-arrow__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  line-height: 1;
}

.section-nav-arrow__icon > i,
.section-nav-arrow__icon > svg,
.section-nav-arrow__icon > img {
  display: block;
  width: 1em;
  height: 1em;
}

.section-nav-arrow__icon.front-icon--empty {
  width: auto;
  height: auto;
  max-width: 100%;
  font-size: 10px;
  line-height: 1.1;
  text-align: center;
}

.section-nav-arrow__icon .front-icon-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-wrap: balance;
}

.gallery-coverflow__status {
  display: none;
}

.gallery-coverflow__meter {
  display: none;
}

.gallery-coverflow__meter span {
  display: none;
}

.gallery-coverflow__counter {
  display: none;
}

.testimonials-grid,
.contact-form-panel {
  display: grid;
  gap: 22px;
}

.testimonials-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card,
.contact-form-panel {
  position: relative;
  padding: clamp(24px, 3vw, 38px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--accent) 12%, transparent), transparent 34%),
    var(--panel-bg);
  box-shadow: var(--panel-shadow);
}

.testimonial-card {
  display: grid;
  align-content: start;
  gap: 20px;
}

.testimonial-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-head img {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  object-fit: cover;
  object-position: var(--image-focus-x, 50%) var(--image-focus-y, 50%);
  border: 1px solid var(--line);
}

.testimonial-head strong,
.testimonial-head span {
  display: block;
}

.testimonial-head span,
.testimonial-card p {
  color: var(--muted);
}

.testimonial-card p {
  margin: 0;
  line-height: 1.7;
}

.testimonial-attachment {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--text);
  background: color-mix(in srgb, var(--surface-soft) 86%, transparent);
}

.contact-form-panel {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: start;
}

.contact-form-copy {
  display: grid;
  gap: 22px;
}

.contact-detail-list {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.contact-detail-list > a,
.contact-detail-list > span {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted-strong);
  background: color-mix(in srgb, var(--surface-soft) 84%, transparent);
}

.contact-detail-list > a > span,
.contact-detail-list > span > span {
  display: flex;
  align-items: center;
  min-width: 0;
  width: 100%;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--line) 78%, transparent);
  background: color-mix(in srgb, var(--surface) 42%, transparent);
}

.contact-detail-list i {
  color: var(--accent-text);
}

.contact-form-card {
  padding: clamp(20px, 3vw, 32px);
  border-radius: 28px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface-soft) 88%, transparent);
}

.lead-form__title {
  margin: 0 0 18px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
}

.footer-copy--copyright {
  color: var(--muted-strong);
  font-size: 14px;
}

.footer-bottom .footer-copy--copyright {
  width: 100%;
}

.map-panel {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 22% 22%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 34%),
    linear-gradient(135deg, #20130d, #0e0a08 74%);
  box-shadow: var(--panel-shadow);
  overflow: hidden;
}

.map-panel iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.92) invert(0.9) sepia(0.26) saturate(0.6) brightness(0.62) contrast(1.18);
  opacity: 0.78;
}

.map-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 42%, transparent 0 18%, rgba(10, 6, 4, 0.38) 55%),
    linear-gradient(180deg, rgba(12, 7, 4, 0.04), rgba(12, 7, 4, 0.36));
}

.map-marker {
  position: absolute;
  left: 50%;
  top: 48%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 16px;
  border: 1px solid color-mix(in srgb, var(--accent) 56%, transparent);
  border-radius: 999px;
  color: #fff7ed;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  transform: translate(-50%, -50%);
  animation: markerPulse 2.4s ease-in-out infinite;
}

.map-marker__icon {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.map-marker__icon > i,
.map-marker__icon > svg,
.map-marker__icon > img {
  width: 18px;
  height: 18px;
}

.map-card {
  position: absolute;
  left: 50%;
  top: calc(48% + 48px);
  z-index: 3;
  width: min(360px, calc(100% - 32px));
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid color-mix(in srgb, var(--accent) 32%, transparent);
  color: #fff8ef;
  background: rgba(35, 22, 14, 0.88);
  box-shadow: var(--panel-shadow-hover);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px) scale(0.98);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.map-card.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.map-card strong {
  font-size: 18px;
}

.map-card span,
.map-card a {
  color: rgba(255, 248, 239, 0.8);
}

.requisites-panel,
.open-form-panel {
  padding: clamp(24px, 4vw, 46px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--accent) 14%, transparent), transparent 34%),
    var(--panel-bg);
  box-shadow: var(--panel-shadow);
}

.requisites-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.requisite-item {
  display: grid;
  gap: 8px;
  min-height: 108px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface-soft) 86%, transparent);
}

.requisite-item span {
  color: var(--muted);
  font-size: 14px;
}

.requisite-item strong {
  color: var(--text);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.16;
}

.open-form-panel .lead-form {
  margin-top: 22px;
}

@keyframes ctaBreath {
  0%, 100% {
    box-shadow:
      0 18px 38px color-mix(in srgb, var(--primary) 28%, transparent),
      0 0 0 0 color-mix(in srgb, var(--accent) 38%, transparent);
    transform: translateY(0);
  }
  50% {
    box-shadow:
      0 24px 54px color-mix(in srgb, var(--primary) 38%, transparent),
      0 0 0 8px color-mix(in srgb, var(--accent) 0%, transparent);
    transform: translateY(-1px);
  }
}

@keyframes markerPulse {
  0%, 100% {
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.34), 0 0 0 0 rgba(240, 191, 137, 0.38);
  }
  50% {
    box-shadow: 0 28px 74px rgba(0, 0, 0, 0.42), 0 0 0 14px rgba(240, 191, 137, 0);
  }
}

.lead-modal[hidden] {
  display: none;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
}

.lead-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 3, 2, 0.6);
  backdrop-filter: blur(14px);
}

.lead-dialog {
  position: relative;
  width: min(680px, calc(100vw - 28px));
  margin: min(7vh, 48px) auto;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 98%, transparent);
  color: var(--text);
  box-shadow: var(--panel-shadow-hover);
}

.lead-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  color: var(--text);
  cursor: pointer;
}

.lead-dialog__head h2 {
  margin: 12px 0 10px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.05;
}

.lead-dialog__head p {
  margin: 0;
  color: var(--muted);
}

.lead-dialog h2,
.lead-dialog h3,
.lead-dialog label span,
.lead-dialog .form-consent,
.lead-dialog .form-consent a,
.lead-dialog .lead-form__status {
  color: var(--text);
}

.lead-dialog .lead-form__status {
  color: var(--accent-text);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.form-grid label,
.form-consent {
  display: grid;
  gap: 8px;
}

.form-grid__full {
  grid-column: 1 / -1;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface-soft) 86%, transparent);
  color: var(--text);
  padding: 14px 16px;
  resize: vertical;
}

.lead-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.lead-form__status {
  min-height: 24px;
  margin-top: 12px;
  color: var(--accent-text);
}

.lead-honeypot {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.section-global-proof {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  color: var(--text);
  background: transparent;
}

.section-global-proof *,
.site-footer * {
  min-width: 0;
}

.section-global-proof .container {
  position: relative;
  z-index: 1;
}

.global-proof-shell {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: clamp(20px, 2.6vw, 34px);
  align-items: stretch;
}

.global-proof-copy {
  display: grid;
  align-content: start;
  gap: 24px;
  padding: clamp(12px, 1.2vw, 18px) 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  container-type: inline-size;
}

.global-proof-copy__intro {
  display: grid;
  gap: 18px;
  width: 100%;
}

.section-global-proof .eyebrow {
  width: fit-content;
  border-color: color-mix(in srgb, var(--eyebrow-text) 14%, transparent);
  background: color-mix(in srgb, var(--eyebrow-bg) 92%, rgba(255, 255, 255, 0.58));
  color: var(--eyebrow-text);
}

.section-global-proof .eyebrow::before {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 0 24px color-mix(in srgb, var(--accent) 42%, transparent);
}

.global-proof-title {
  margin: 0;
  max-width: none;
  font-size: clamp(38px, 6.4cqi, 72px);
  line-height: 0.94;
  letter-spacing: 0;
  color: var(--text);
  text-wrap: balance;
}

.global-proof-text {
  display: grid;
  gap: 10px;
  max-width: none;
  font-size: clamp(18px, 2.5cqi, 32px);
  line-height: 1.38;
  color: var(--muted-strong, var(--text));
}

.global-proof-text p,
.global-proof-note {
  margin: 0;
}

.global-proof-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.global-proof-stat {
  display: grid;
  gap: 12px;
  padding: 22px 18px 20px;
  min-height: 166px;
  border: 1px solid color-mix(in srgb, var(--line) 100%, transparent);
  border-radius: 24px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  box-shadow: 0 18px 34px color-mix(in srgb, var(--surface) 24%, transparent);
}

.global-proof-stat strong {
  display: block;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1;
  letter-spacing: 0;
  color: var(--text);
}

.global-proof-stat span {
  display: block;
  padding-top: 12px;
  border-top: 2px solid color-mix(in srgb, var(--accent) 76%, transparent);
  font-size: 16px;
  line-height: 1.35;
  color: var(--muted);
}

.global-proof-note {
  font-size: 13px;
  color: color-mix(in srgb, var(--muted) 84%, transparent);
}

.global-proof-slider {
  position: relative;
  display: grid;
  align-items: stretch;
  min-height: 100%;
}

.global-proof-slider__stage {
  position: relative;
  min-height: clamp(308px, 37vw, 536px);
  height: clamp(308px, 37vw, 536px);
  max-height: clamp(308px, 37vw, 536px);
  overflow: hidden;
}

.global-proof-slide {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 0;
  border: 1px solid color-mix(in srgb, var(--line) 100%, transparent);
  border-radius: 24px;
  background: color-mix(in srgb, var(--surface) 76%, transparent);
  box-shadow: var(--image-shadow);
  opacity: 0;
  transform: none;
  transition: opacity 0.42s ease, box-shadow 0.42s ease;
  pointer-events: none;
  cursor: zoom-in;
}

.global-proof-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(23, 11, 8, 0.08));
  pointer-events: none;
}

.global-proof-slide.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.global-proof-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.global-proof-slider__controls {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 12px;
}

.global-proof-slider__arrow {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fffaf6;
  background: rgba(40, 18, 14, 0.42);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 34px rgba(33, 12, 8, 0.22);
}

.global-proof-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(40, 18, 14, 0.38);
  backdrop-filter: blur(12px);
}

.global-proof-slider__dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 250, 246, 0.4);
  transition: width 0.28s ease, background-color 0.28s ease;
}

.global-proof-slider__dots span.is-active {
  width: 30px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 4, 2, 0.78);
  backdrop-filter: blur(18px);
}

.lightbox-dialog {
  position: relative;
  width: min(1120px, calc(100vw - 28px));
  height: min(84vh, 820px);
  margin: 7vh auto 0;
  display: grid;
  place-items: center;
  color: #fff8ef;
}

.lightbox-dialog figure {
  width: 100%;
  height: 100%;
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 16px;
}

.lightbox-dialog img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: #100906;
  box-shadow: var(--panel-shadow-hover);
}

.lightbox-dialog figcaption {
  display: grid;
  gap: 4px;
  color: #fff8ef;
  text-align: center;
}

.lightbox-dialog figcaption span {
  color: rgba(255, 248, 239, 0.72);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #fff8ef;
  background: rgba(31, 19, 12, 0.82);
  backdrop-filter: blur(14px);
}

.lightbox-close {
  top: -18px;
  right: 0;
  width: 48px;
  height: 48px;
  font-size: 28px;
}

.lightbox-nav {
  top: 50%;
  width: 52px;
  height: 43px;
  transform: translateY(-50%);
}

.lightbox-nav--prev {
  left: -10px;
}

.lightbox-nav--next {
  right: -10px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: var(--muted-strong);
}

.mobile-nav-group {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: color-mix(in srgb, var(--surface-soft) 82%, transparent);
  padding: 4px 0 8px;
}

.mobile-nav-group summary {
  padding: 14px 16px;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
}

.mobile-nav-group a {
  margin: 0 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .site-nav--desktop,
  .header-phone,
  .header-cta {
    display: none;
  }

  .workflow-grid,
  .contact-grid,
  .requisites-grid,
  .testimonials-grid,
  .contact-form-panel,
  .gallery-grid--equal {
    grid-template-columns: 1fr;
  }

  .gallery-coverflow {
    min-height: 410px;
  }

  .gallery-coverflow__viewport {
    height: 360px;
  }

  .gallery-coverflow__item {
    height: 100%;
    max-width: min(72vw, 520px);
  }

  .gallery-coverflow__caption {
    padding: 34px 18px 18px;
  }

  .contact-detail-copy {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .global-proof-shell {
    grid-template-columns: 1fr;
  }

  .global-proof-copy {
    gap: 18px;
  }

  .global-proof-copy__intro {
    width: 100%;
  }

  .global-proof-title {
    max-width: none;
  }

  .global-proof-slider__stage {
    min-height: clamp(292px, 47vw, 488px);
    height: clamp(292px, 47vw, 488px);
    max-height: clamp(292px, 47vw, 488px);
  }
}

@media (max-width: 900px) {
  .mobile-nav-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .quick-call-widget { display: inline-flex; }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 18px;
  }

  .lead-dialog {
    margin: 12px auto;
    padding: 22px;
  }

  .workflow-panel,
  .contact-card,
  .cta-panel,
  .requisites-panel,
  .open-form-panel,
  .testimonial-card,
  .contact-form-panel {
    padding: 20px;
    border-radius: 20px;
  }

  .section-cta .cta-panel {
    padding: 24px 20px;
  }

  .workflow-grid,
  .contact-grid,
  .requisites-grid,
  .testimonials-grid {
    gap: 14px;
  }

  .workflow-step {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
  }

  .workflow-item h3,
  .contact-card h3 {
    margin: 14px 0 8px;
    font-size: 20px;
  }

  .contact-card p,
  .workflow-item p {
    line-height: 1.58;
  }

  .form-grid input,
  .form-grid textarea {
    min-height: 48px;
    border-radius: 15px;
    padding: 13px 14px;
  }

  .lead-form__actions {
    display: grid;
    gap: 10px;
  }

  .lead-form__actions > * {
    width: 100%;
    justify-content: center;
  }

  .contact-form-panel {
    overflow: hidden;
  }

  .map-panel {
    min-height: 420px;
  }

  .contact-detail-item {
    align-items: flex-start;
    padding: 14px 16px;
  }

  .contact-detail-stack > a,
  .contact-detail-stack > span,
  .contact-detail-stack > .contact-map-trigger {
    font-size: 17px;
  }

  .lightbox-dialog {
    height: min(78vh, 680px);
    margin-top: 10vh;
  }

  .lightbox-nav--prev {
    left: 4px;
  }

  .lightbox-nav--next {
    right: 4px;
  }

  .gallery-coverflow {
    gap: 16px;
    min-height: 356px;
  }

  .gallery-coverflow__viewport {
    height: 312px;
    perspective-origin: center 28%;
  }

  .gallery-coverflow__item {
    top: 50%;
    height: 100%;
    max-width: min(82vw, 340px);
    border-width: 7px;
    border-bottom-width: 9px;
  }

  .gallery-coverflow__caption span {
    font-size: 14px;
  }

  .gallery-coverflow__controls {
    inset: 0;
  }

  .gallery-coverflow__arrow {
    width: 46px;
    height: 46px;
    margin-top: -23px;
  }

  .gallery-coverflow__arrow--prev {
    left: 16px;
  }

  .gallery-coverflow__arrow--next {
    right: 70px;
  }

  .gallery-coverflow__meter {
    top: 10px;
    bottom: 10px;
    height: auto;
  }

  .section-gallery-coverflow {
    overflow: hidden;
  }

  .section-gallery-coverflow .container {
    width: 100%;
    max-width: none;
    padding: 0;
    gap: 18px;
  }

  .section-gallery-coverflow .section-header {
    width: min(100%, calc(100vw - 28px));
    padding: 0;
  }

  .gallery-coverflow {
    width: 100%;
    min-height: 0;
    padding: 0 14px;
    overflow: hidden;
  }

  .gallery-coverflow::before,
  .gallery-coverflow::after,
  .gallery-coverflow__item::after {
    display: none;
  }

  .gallery-coverflow__viewport {
    height: auto;
    overflow: visible;
    perspective: none;
  }

  .gallery-coverflow__track {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gallery-coverflow__item,
  .gallery-coverflow__item:hover,
  .gallery-coverflow__item:focus,
  .gallery-coverflow__item:focus-visible,
  .gallery-coverflow__item:active {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: 4 / 3;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
    border-width: 0;
    border-radius: 18px;
  }

  .gallery-coverflow__caption,
  .gallery-coverflow__item:not(.is-active) .gallery-coverflow__caption {
    opacity: 1;
    transform: none;
    padding: 48px 14px 12px;
    text-align: left;
  }

  .gallery-coverflow__caption strong {
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.02em;
  }

  .gallery-coverflow__caption span {
    font-size: 13px;
    line-height: 1.45;
  }

  .gallery-coverflow__controls {
    display: none;
  }

  .global-proof-copy {
    padding: 0;
  }

  .global-proof-copy__intro {
    width: 100%;
  }

  .global-proof-text {
    font-size: 18px;
  }

  .global-proof-stats {
    grid-template-columns: 1fr;
  }

  .global-proof-stat {
    min-height: 0;
  }

  .global-proof-slider__stage {
    min-height: min(78vw, 460px);
    height: min(78vw, 460px);
    max-height: min(78vw, 460px);
  }

  .global-proof-slider__controls {
    right: 12px;
    bottom: 12px;
    left: 12px;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
  }

  .global-proof-slider__arrow {
    width: 42px;
    height: 42px;
  }
}

.footer-contact-stack,
.contact-detail-stack {
  display: grid;
  gap: 6px;
}

.footer-contact-item {
  display: grid;
  gap: 4px;
  margin-bottom: 10px;
}

.footer-copy--muted,
.contact-detail-comment {
  color: rgba(255, 244, 236, 0.68);
  font-size: 14px;
  line-height: 1.45;
}

.footer-contact-item,
.footer-contact-item .footer-copy,
.footer-contact-item .footer-copy--muted,
.footer-contact-item .contact-map-trigger,
.footer-contact-link {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.contact-map-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.contact-map-trigger--inline {
  font: inherit;
}

.contact-detail-list {
  display: grid;
  gap: 12px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 68px;
  padding: 16px 18px;
  border-radius: calc(var(--radius-xl) - 10px);
  border: 1px solid color-mix(in srgb, var(--line) 84%, transparent);
  background: color-mix(in srgb, var(--surface-soft) 88%, transparent);
}

.contact-detail-item i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--accent-text);
  background: var(--surface-highlight);
  font-size: 17px;
}

.contact-detail-copy {
  display: grid;
  grid-template-columns: minmax(128px, auto) minmax(0, 1fr);
  align-items: center;
  gap: 14px 18px;
  width: 100%;
}

.contact-detail-copy strong {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.contact-detail-stack {
  gap: 4px;
}

.contact-detail-stack > a,
.contact-detail-stack > span,
.contact-detail-stack > .contact-map-trigger {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.2;
  font-weight: 700;
  color: var(--text);
}

.contact-detail-stack > a {
  text-decoration: none;
}

.contact-detail-stack > a:hover {
  color: var(--accent-text);
}

.contact-detail-stack > .contact-map-trigger {
  justify-self: start;
}

.contact-detail-comment {
  font-size: 13px;
  font-weight: 500;
}

.gallery-video-block {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(300px, .85fr);
  gap: 24px;
  align-items: center;
  margin-top: 28px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--panel-bg);
  box-shadow: var(--panel-shadow);
}

.section-video-showcase {
  background: transparent;
}

.section-video-showcase .container {
  display: grid;
  gap: 0;
}

.gallery-video-card {
  position: relative;
  display: grid;
  gap: 0;
  min-height: 280px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: clamp(0px, calc(var(--radius-xl) - 6px), var(--radius-xl));
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--image-shadow);
  cursor: pointer;
}

.gallery-video-card__media,
.gallery-video-card__media img,
.gallery-video-card__tone {
  position: absolute;
  inset: 0;
}

.gallery-video-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-video-card__tone {
  background:
    var(--photo-overlay),
    radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--spotlight) 78%, transparent), transparent 40%);
}

.gallery-video-card__play {
  position: absolute;
  inset: 50% auto auto 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  border: 1px solid var(--button-secondary-border);
  border-radius: 999px;
  background: var(--button-secondary-bg);
  color: var(--button-secondary-text);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 36px color-mix(in srgb, var(--bg) 14%, transparent);
}

.gallery-video-card__play > i,
.gallery-video-card__play > svg,
.gallery-video-card__play > img {
  width: 1em;
  height: 1em;
}

.gallery-video-card__play.front-icon--empty {
  width: auto;
  min-width: 86px;
  max-width: calc(100% - 44px);
  padding: 0 18px;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: .02em;
  text-transform: none;
  text-align: center;
}

.gallery-video-card__play .front-icon-placeholder {
  display: block;
}

.gallery-video-card__hint {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  color: var(--caption-title);
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.media-popup {
  position: fixed;
  inset: 0;
  z-index: 120;
}

.media-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 7, 0.72);
  backdrop-filter: blur(10px);
}

.media-popup__dialog {
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100vw - 28px));
  margin: min(5vh, 42px) auto;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(216, 150, 87, 0.18), transparent 16rem),
    linear-gradient(180deg, rgba(28, 17, 12, 0.96), rgba(12, 9, 8, 0.96));
  color: #fff7ef;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
}

.media-popup__dialog--map {
  max-width: 1180px;
}

.media-popup__dialog--video {
  max-width: 1040px;
}

.media-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff7f0;
  font-size: 28px;
  cursor: pointer;
}

.media-popup__head {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  padding-right: 52px;
}

.media-popup__head h2,
.media-popup__head h3,
.media-popup__head p,
.media-popup__head span,
.media-popup__body--map,
.media-popup__body--video {
  color: #fff7ef;
}

.media-popup__body--map iframe,
.media-popup__body--map > div,
.media-popup__body--map script + ymaps,
.media-popup__body--video iframe,
.media-popup__body--video video {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 20px;
}

.media-popup__body--map iframe {
  min-height: min(72vh, 720px);
}

.media-popup__body--video iframe,
.media-popup__body--video video {
  aspect-ratio: 16 / 9;
  min-height: min(64vh, 640px);
  background: #050505;
}

@media (max-width: 900px) {
  .gallery-video-block {
    grid-template-columns: 1fr;
  }

  .gallery-video-card {
    min-height: 220px;
  }

  .media-popup__dialog {
    width: calc(100vw - 18px);
    margin: 12px auto;
    padding: 18px;
  }
}

.lead-dialog__forms > [hidden] {
  display: none !important;
}

.section-vacancies .container {
  display: grid;
  gap: 28px;
}

.vacancy-accordion {
  display: grid;
  gap: 16px;
}

.vacancy-card {
  position: relative;
  border: 1px solid color-mix(in srgb, var(--border-color) 72%, transparent);
  border-radius: 28px;
  background: color-mix(in srgb, var(--card-bg) 92%, rgba(255, 255, 255, 0.08));
  box-shadow: 0 20px 60px rgba(21, 31, 45, 0.08);
  overflow: hidden;
}

.vacancy-card__summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  padding: 28px 30px;
  cursor: pointer;
}

.vacancy-card__summary::-webkit-details-marker {
  display: none;
}

.vacancy-card__state {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px dashed color-mix(in srgb, var(--button-primary-bg) 34%, transparent);
  color: var(--button-primary-bg);
  font-size: 0.78rem;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vacancy-card__summary-copy {
  display: grid;
  gap: 10px;
  flex: 1 1 320px;
}

.vacancy-card__summary-copy h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  line-height: 1.05;
}

.vacancy-card__meta {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
}

.vacancy-card__toggle {
  width: 52px;
  height: 43px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--button-primary-bg) 10%, white);
  color: var(--button-primary-bg);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.vacancy-card__toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  line-height: 1;
}

.vacancy-card__toggle-icon > i,
.vacancy-card__toggle-icon > svg,
.vacancy-card__toggle-icon > img {
  display: block;
  width: 1em;
  height: 1em;
}

.vacancy-card__toggle-icon.front-icon--empty {
  width: auto;
  height: auto;
  max-width: 100%;
  font-size: 10px;
  line-height: 1.1;
  text-align: center;
}

.vacancy-card__toggle-icon .front-icon-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-wrap: balance;
}

.vacancy-card__summary-copy > .front-section-item-controls--vacancy-inline {
  width: 100%;
  margin-top: 16px;
}

.vacancy-card[open] .vacancy-card__toggle {
  transform: rotate(45deg);
}

.vacancy-card__panel {
  padding: 0 30px 30px;
}

.vacancy-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid color-mix(in srgb, var(--border-color) 76%, transparent);
  background: color-mix(in srgb, var(--card-bg) 96%, rgba(255, 255, 255, 0.04));
  box-shadow: 0 24px 72px rgba(21, 31, 45, 0.08);
}

.vacancy-detail--page {
  align-items: start;
}

.vacancy-detail__media {
  min-height: 360px;
  border-radius: 24px;
  overflow: hidden;
}

.vacancy-detail__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vacancy-detail__copy {
  display: grid;
  gap: 16px;
  align-content: start;
}

.vacancy-detail__title {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 0.98;
}

.vacancy-detail__salary {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 700;
  color: var(--heading-color);
}

.vacancy-detail__facts {
  display: grid;
  gap: 8px;
  color: var(--heading-color);
  font-size: 1.04rem;
}

.vacancy-detail__facts p,
.vacancy-detail__watchers {
  margin: 0;
}

.vacancy-detail__watchers {
  color: var(--text-muted);
}

.vacancy-detail__body {
  color: var(--text-color);
}

.vacancy-detail__body p:first-child {
  display: none;
}

.vacancy-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.button-secondary--ghost {
  background: transparent;
}

@media (max-width: 900px) {
  .vacancy-detail {
    grid-template-columns: 1fr;
  }

  .vacancy-detail__media {
    min-height: 240px;
  }
}

@media (max-width: 640px) {
  .vacancy-card__summary,
  .vacancy-card__panel,
  .vacancy-detail {
    padding-left: 20px;
    padding-right: 20px;
  }

  .vacancy-card__summary-copy > .front-section-item-controls--vacancy-inline {
    margin-top: 14px;
  }

  .vacancy-card__summary {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .vacancy-card__summary-copy h3 {
    font-size: 1.25rem;
  }

  .vacancy-detail__title {
    font-size: 1.9rem;
  }

  .vacancy-detail__actions {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .lightbox-dialog {
    width: calc(100vw - 24px);
    height: calc(100svh - 92px);
    margin-top: 46px;
  }

  .lightbox-dialog figure {
    grid-template-rows: minmax(0, 1fr);
    gap: 0;
  }

  .lightbox-dialog figcaption {
    display: none;
  }

  .lightbox-dialog img {
    border-radius: 18px;
  }

  .section-gallery-coverflow {
    overflow: hidden;
  }

  .section-gallery-coverflow .container {
    width: 100%;
    max-width: none;
    padding: 0;
    gap: 18px;
  }

  .section-gallery-coverflow .section-header {
    width: min(100%, calc(100vw - 28px));
    padding: 0;
  }

  .gallery-coverflow {
    width: 100%;
    min-height: clamp(300px, 82vw, 390px);
    padding: 0 14px;
    overflow: hidden;
  }

  .gallery-coverflow::before,
  .gallery-coverflow::after,
  .gallery-coverflow__item::after {
    display: none;
  }

  .gallery-coverflow__viewport {
    height: clamp(256px, 72vw, 330px);
    overflow: hidden;
    perspective: none;
    touch-action: pan-y;
  }

  .gallery-coverflow__track {
    position: absolute;
    inset: 0;
    display: block;
  }

  .gallery-coverflow__item,
  .gallery-coverflow__item:hover,
  .gallery-coverflow__item:focus,
  .gallery-coverflow__item:focus-visible,
  .gallery-coverflow__item:active {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    max-width: calc(100vw - 28px);
    height: 100%;
    aspect-ratio: auto;
    transform:
      translate(-50%, -50%)
      translateX(var(--gallery-shift, 0%))
      scale(var(--gallery-scale, 1)) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    border-width: 0;
    border-radius: 18px;
    transition: transform 0.34s ease, opacity 0.34s ease, visibility 0.34s ease;
  }

  .gallery-coverflow__item.is-active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    z-index: 5;
  }

  .gallery-coverflow__item.is-near:not(.is-active) {
    visibility: hidden !important;
  }

  .gallery-coverflow__caption,
  .gallery-coverflow__item:not(.is-active) .gallery-coverflow__caption {
    opacity: 1;
    transform: none;
    padding: 44px 14px 12px;
    text-align: left;
  }

  .gallery-coverflow__caption strong {
    font-size: 15px;
    line-height: 1.18;
    letter-spacing: 0.02em;
  }

  .gallery-coverflow__caption span {
    font-size: 12px;
    line-height: 1.42;
  }

  .gallery-coverflow__controls {
    display: block;
    inset: 0;
  }

  .gallery-coverflow__arrow {
    width: 42px;
    height: 42px;
    margin-top: -21px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
  }

  .gallery-coverflow__arrow--prev {
    left: 18px;
  }

  .gallery-coverflow__arrow--next {
    right: 18px;
  }

  .gallery-coverflow__status,
  .gallery-coverflow__meter,
  .gallery-coverflow__counter {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-cta,
  .button-primary,
  .footer-cta,
  .mobile-nav-cta,
  .map-marker {
    animation: none;
  }
}

/* Product blog mode */
.blog-product-index,.blog-article{background:#101820;color:#f7f2e9}.blog-article{width:90vw;max-width:none;margin-left:auto;margin-right:auto}.blog-product-index>.container,.blog-article .blog-article-flow,.blog-article .section.section-avtocom-equipment>.container,.blog-article>.blog-article-hero{width:100%;max-width:none;margin-left:auto;margin-right:auto}.blog-product-index__hero{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(320px,.95fr);gap:28px;align-items:end;padding:64px 0 34px}.blog-product-index__hero h1{font-size:clamp(36px,5.2vw,72px);line-height:.92;letter-spacing:-.03em;max-width:12ch;margin:12px 0;text-transform:uppercase}.blog-product-index__hero-art{border:1px solid rgba(255,255,255,.14);background:linear-gradient(135deg,rgba(255,255,255,.08),rgba(255,255,255,.03));border-radius:28px;padding:22px;min-height:100%}.blog-product-index__hero-art img{display:block;width:100%;height:100%;min-height:320px;object-fit:cover;border-radius:22px}.blog-product-subscribe,.blog-product-card,.blog-product-order,.blog-product-comments form{border:1px solid rgba(255,255,255,.14);background:linear-gradient(135deg,rgba(255,255,255,.08),rgba(255,255,255,.03));border-radius:28px;padding:22px}.blog-product-subscribe input,.blog-product-comment-form input,.blog-product-comment-form textarea,.blog-product-order input,.blog-product-order textarea,.blog-product-order select{width:100%;border:0;border-radius:11px;padding:13px 14px;background:#f4efe6;color:#20242a}.blog-product-taxonomy,.blog-product-tags,.blog-article-tags{display:flex;flex-wrap:wrap;gap:10px;margin:20px 0}.blog-product-taxonomy a,.blog-product-tags a,.blog-article-tags a,.blog-article-meta a,.blog-article-hero__rubric{border:1px solid rgba(255,122,24,.4);border-radius:999px;color:#ff8a24;padding:8px 12px;text-decoration:none}.blog-product-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:20px;padding:30px 0 48px}.blog-product-card{overflow:hidden;padding:0}.blog-product-card__link{display:flex;flex-direction:column;height:100%;color:inherit;text-decoration:none}.blog-product-card__media{display:block}.blog-product-card__media img{display:block;width:100%;height:210px;object-fit:cover}.blog-product-card__body{display:grid;gap:12px;padding:18px 18px 20px}.blog-product-card__meta{display:flex;flex-wrap:wrap;gap:8px;font-size:12px;letter-spacing:.08em;text-transform:uppercase;color:rgba(247,242,233,.72)}.blog-article-meta{display:flex;flex-wrap:wrap;gap:10px;align-items:center;color:#d7d2c8}.blog-product-card h2,.blog-article-hero h1{display:-webkit-box;-webkit-box-orient:vertical;overflow:hidden}.blog-product-card h2{-webkit-line-clamp:2;line-clamp:2;font-size:clamp(16px,1.05vw,19px);line-height:1.12;margin:0}.blog-product-card p{margin:0;color:rgba(247,242,233,.84)}.blog-product-index__footer{display:grid;gap:18px;padding:0 0 48px}.blog-product-taxonomy{order:1;margin:0 0 8px}.blog-product-subscribe{order:2}.blog-product-subscribe__heading .eyebrow{margin-bottom:8px}.blog-product-subscribe__heading h2,.blog-product-index .blog-product-subscribe h2{margin:0 0 14px;font-size:clamp(24px,2.4vw,36px);line-height:1.05;max-width:none}.blog-article-hero{position:relative;min-height:62vh;width:100%;display:flex;align-items:center;background-image:var(--blog-hero-image);background-size:cover;background-position:var(--blog-hero-position,center);color:#fff;overflow:hidden}.blog-article-hero__shade{position:absolute;inset:0;background:linear-gradient(90deg,rgba(10,16,24,.9),rgba(10,16,24,.42))}.blog-article-hero__content{position:relative;z-index:1;width:100%;max-width:none;margin-left:auto;margin-right:auto;padding:56px 32px 20px}.blog-article-hero h1{-webkit-line-clamp:2;line-clamp:2;font-size:clamp(24px,2.8vw,40px);line-height:1.08;margin:14px 0 18px;text-transform:none;max-width:20ch;text-align:left}.blog-article-flow{display:grid;gap:24px;padding:48px 0}.blog-article-tags--footer{margin:0;padding:0 32px 24px}.blog-article-text,.blog-article-banner,.blog-product-comments .container{width:100%;max-width:none;margin:0}.blog-article-text{font-size:18px;line-height:1.7}.blog-article-text h2{margin:0 0 16px;font-size:clamp(24px,2.2vw,34px);line-height:1.02;text-transform:uppercase}.blog-article-text details{margin:12px 0;border:1px solid rgba(255,255,255,.18);border-radius:14px;background:rgba(255,255,255,.04)}.blog-article-text summary{cursor:pointer;padding:14px 18px;font-weight:700}.blog-article-text details>div{padding:0 18px 16px}.blog-article-banner img{width:100%;border-radius:28px;object-fit:cover;max-height:640px}.blog-product-order{display:grid;grid-template-columns:minmax(0,.85fr) minmax(320px,1.15fr);gap:28px;padding:0 0 90px;margin-left:auto;margin-right:auto}.blog-product-contact-card{display:grid;gap:6px;margin-top:14px;padding:14px 16px;border-radius:18px;background:rgba(255,255,255,.06)}.blog-product-order__form{display:grid;gap:16px}.blog-product-order__form .wide{grid-column:1/-1}.blog-product-order__form form,.blog-product-order__form .form-grid{display:grid;gap:16px;grid-template-columns:repeat(2,minmax(0,1fr))}.blog-article-tags{margin-top:18px}@media (max-width:1400px){.blog-product-grid{grid-template-columns:repeat(4,minmax(0,1fr))}}@media (max-width:1100px){.blog-product-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}@media (max-width:900px){.blog-article{width:92vw}.blog-product-index>.container,.blog-article .blog-article-flow,.blog-article .blog-product-order,.blog-article .section.section-avtocom-equipment>.container,.blog-article-hero__content{width:100%}.blog-product-index__hero,.blog-product-order{grid-template-columns:1fr}.blog-product-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.blog-product-index__hero-art img{min-height:240px}.blog-article-hero__content{padding:34px 20px 18px}.blog-article-tags--footer{padding:0 20px 20px}.blog-product-order__form form,.blog-product-order__form .form-grid{grid-template-columns:1fr}}@media (max-width:640px){.blog-product-grid{grid-template-columns:1fr}}

#blog-order{position:relative;overflow:hidden;width:90vw;max-width:none;margin-inline:auto;padding:34px;background:#151d26;border:1px solid rgba(255,255,255,.18);border-radius:32px;grid-template-columns:minmax(360px,.9fr) minmax(620px,1.1fr);gap:34px}#blog-order::before{content:"";position:absolute;left:9%;top:18%;width:280px;height:280px;border-radius:50%;background:radial-gradient(circle,rgba(255,136,44,.16),rgba(255,136,44,0) 68%);pointer-events:none}#blog-order>*{position:relative;z-index:1}.blog-product-order__info{display:grid;align-content:start;gap:18px;padding:4px 6px 4px 2px}.blog-product-order__pill{display:inline-flex;align-items:center;gap:12px;min-height:42px;padding:0 18px;border-radius:999px;background:rgba(83,72,51,.78);border:1px solid rgba(255,255,255,.08);font-size:13px;font-weight:800;letter-spacing:.18em;text-transform:uppercase;color:#ff9d43}.blog-product-order__pill-dot{width:10px;height:10px;border-radius:50%;background:#ff9d43;box-shadow:0 0 0 5px rgba(255,157,67,.14)}.blog-product-order__info h2{display:grid;gap:2px;margin:0;font-size:clamp(36px,4vw,58px);line-height:.94;letter-spacing:-.04em;text-transform:uppercase;color:#fff;max-width:8.8ch}.blog-product-order__info p{margin:0;max-width:52ch;font-size:16px;line-height:1.65;color:rgba(247,242,233,.8)}.blog-product-order__contacts{display:grid;gap:14px;margin-top:6px}.blog-product-contact-card{display:grid;grid-template-columns:52px minmax(0,1fr);align-items:start;gap:16px;margin:0;padding:16px 18px;border-radius:22px;border:1px solid rgba(255,255,255,.12);background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.035));box-shadow:inset 0 1px 0 rgba(255,255,255,.03)}.blog-product-contact-card__icon{display:grid;place-items:center;width:44px;height:44px;border-radius:50%;background:linear-gradient(180deg,#ffb34d,#ff8b1f);color:#111;font-size:18px;font-weight:900;box-shadow:0 10px 24px rgba(255,136,44,.22)}.blog-product-contact-card__body{display:grid;gap:5px;min-width:0}.blog-product-contact-card__body strong{font-size:12px;letter-spacing:.16em;text-transform:uppercase;color:rgba(247,242,233,.54)}.blog-product-contact-card__value{display:block;font-size:clamp(18px,1.45vw,23px);line-height:1.25;font-weight:800;color:#fff}.blog-product-contact-card:nth-child(-n+2) .blog-product-contact-card__value{color:#ff972f}.blog-product-contact-card__body small{font-size:13px;line-height:1.4;color:rgba(247,242,233,.56)}.blog-product-order__form{display:block}.blog-product-order__form .lead-form--blog-order{display:grid;gap:18px;padding:28px;border:1px solid rgba(255,255,255,.14);border-radius:28px;background:#202a35;box-shadow:inset 0 1px 0 rgba(255,255,255,.03)}.blog-product-order__form .lead-form__title{margin:0 0 2px;font-size:clamp(24px,1.8vw,32px);line-height:1.02;font-weight:900;letter-spacing:-.03em;text-transform:uppercase;color:#fff}.blog-product-order__form .form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px 16px}.blog-product-order__form .form-grid__full{grid-column:1/-1}.blog-product-order__form label{display:grid;gap:7px}.blog-product-order__form label>span{font-size:14px;font-weight:700;color:#fff}.blog-product-order__form input,.blog-product-order__form textarea,.blog-product-order__form select{padding:14px 16px;border-radius:12px;background:#f4efe6;color:#1f2329}.blog-product-order__form textarea{min-height:120px;resize:vertical}.blog-product-order__form input[type="date"]{min-height:52px}.blog-product-order__form .form-consent{display:flex;align-items:flex-start;gap:10px;flex-wrap:nowrap;font-size:14px;line-height:1.45;color:rgba(247,242,233,.76)}.blog-product-order__form label.form-consent{display:flex}.blog-product-order__form .form-consent input{width:18px;height:18px;min-width:18px;min-height:auto;margin:2px 0 0;padding:0;border-radius:4px;flex:0 0 auto;align-self:flex-start}.blog-product-order__form .form-consent a{display:inline;color:#ff972f;text-decoration:underline;text-underline-offset:3px}.blog-product-order__form .lead-form__actions{display:flex;gap:14px;justify-content:flex-start;align-items:center;flex-wrap:wrap}.blog-product-order__submit,.blog-product-order__call{min-width:220px;padding:15px 24px;border-radius:14px;border:0;font-weight:800;background:linear-gradient(135deg,#ffb54b,#ff861d);color:#141414;box-shadow:0 14px 34px rgba(255,136,44,.22);text-align:center}.blog-product-order__call{text-decoration:none}@media (max-width:1200px){#blog-order{width:90vw;grid-template-columns:minmax(320px,.92fr) minmax(0,1.08fr)}}@media (max-width:900px){#blog-order{width:min(92vw,1800px);grid-template-columns:1fr;padding:22px}.blog-product-order__info h2{max-width:none;font-size:clamp(32px,9vw,50px)}.blog-product-order__form .form-grid{grid-template-columns:1fr}.blog-product-order__form .form-consent{flex-wrap:wrap}.blog-product-order__submit,.blog-product-order__call{min-width:0;width:100%}}@media (max-width:640px){.blog-product-contact-card__value{font-size:14px;overflow-wrap:normal;word-break:normal}.blog-product-contact-card:nth-child(-n+2) .blog-product-contact-card__value{white-space:nowrap}}@media (max-width:640px){.blog-product-index__hero,.blog-article-hero{height:300px;min-height:300px}.blog-product-index__hero{position:relative;display:grid;place-items:center;padding:24px;overflow:hidden;text-align:center}.blog-product-index__hero>div:first-child,.blog-article-hero__content{position:relative;z-index:1;text-align:center}.blog-product-index__hero-art{position:absolute;inset:0;padding:0;border:0;border-radius:0}.blog-product-index__hero-art img{width:100%;height:100%;min-height:0;border-radius:0;filter:brightness(.58)}.blog-product-index__hero h1{margin-inline:auto}.blog-article-hero__content{height:100%;display:grid;align-content:center;justify-items:center;padding:24px}.blog-article-hero h1{margin-inline:auto;text-align:center}} 

/* Exit-intent lead form: site-styled full layout. */

#blog-order .lead-form--blog-order label.form-consent{display:flex;align-items:flex-start;gap:10px}
#blog-order .lead-form--blog-order label.form-consent input{flex:0 0 auto;align-self:flex-start;margin-top:4px}
#blog-order .lead-form--blog-order label.form-consent a{display:block;margin-top:0}

.exit-lead-form{position:fixed;inset:0;z-index:2500;display:none;align-items:center;justify-content:center;padding:20px;background:rgba(10,16,24,.72);backdrop-filter:blur(8px)}

.workflow-cta {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}
.lead-modal--exit .lead-backdrop {
  background:
    radial-gradient(circle at 18% 12%, color-mix(in srgb, var(--accent) 24%, transparent), transparent 30%),
    rgba(6, 9, 12, 0.72);
  backdrop-filter: blur(8px);
}

.lead-modal--exit .lead-dialog {
  position: relative;
  overflow: hidden;
  width: min(760px, calc(100vw - 28px));
  margin: min(7vh, 56px) auto;
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid rgba(242, 165, 31, 0.32);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(9, 14, 20, 0.97), rgba(19, 28, 36, 0.96)),
    radial-gradient(circle at 86% 12%, rgba(242, 165, 31, 0.22), transparent 36%);
  color: #ffffff;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255,255,255,0.08);
}

.lead-modal--exit .lead-dialog::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.08), transparent 24%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 14px);
  opacity: 0.5;
}

.lead-modal--exit .lead-dialog > * {
  position: relative;
  z-index: 1;
}

.lead-modal--exit .lead-close {
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.lead-modal--exit .lead-dialog__head .eyebrow,
.lead-modal--exit .lead-dialog__head p,
.lead-modal--exit .lead-form__title {
  display: none;
}

.lead-modal--exit .lead-dialog__head h2 {
  margin: 0 0 24px;
  color: #ffffff;
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.lead-modal--exit .lead-dialog__head h2 span {
  color: var(--accent, #f2a51f);
}

.lead-modal--exit .lead-exit-field-hidden {
  display: none;
}

.lead-modal--exit .lead-form,
.lead-modal--exit .form-grid {
  display: grid;
  gap: 16px;
}

.lead-modal--exit .lead-form {
  width: 100%;
}

.lead-modal--exit .form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lead-modal--exit .form-grid__full {
  grid-column: 1 / -1;
}

.lead-modal--exit .form-grid label span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.lead-modal--exit .form-grid input,
.lead-modal--exit .form-grid textarea {
  width: 100%;
  border: 1px solid rgba(242, 165, 31, 0.24);
  border-radius: 14px;
  background: #f3eee5;
  color: #151515;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4);
}

.lead-modal--exit .form-grid input {
  height: 54px;
  padding: 0 16px;
  font-size: 16px;
}

.lead-modal--exit .form-grid textarea {
  min-height: 96px;
  padding: 14px 16px;
  resize: vertical;
  font-size: 15px;
}

.lead-modal--exit .form-grid input::placeholder,
.lead-modal--exit .form-grid textarea::placeholder {
  color: rgba(21, 21, 21, 0.58);
}

.lead-modal--exit .form-grid input:focus,
.lead-modal--exit .form-grid textarea:focus {
  outline: 0;
  border-color: var(--accent, #f2a51f);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 18%, transparent);
}

.lead-modal--exit .form-consent {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin: 0;
  color: var(--accent, #f2a51f);
  font-size: 16px;
  line-height: 1.35;
}

.lead-modal--exit .form-consent input {
  display: inline-grid;
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--accent, #f2a51f);
}

.lead-modal--exit .form-consent a {
  display: inline;
  color: var(--accent, #f2a51f);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lead-modal--exit .form-consent::before {
  content: none;
}

.lead-modal--exit .lead-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2px;
}

.lead-modal--exit .lead-form__actions .button-primary,
.lead-modal--exit .lead-form__actions .button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 136px;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #111820;
  box-shadow: 0 18px 38px color-mix(in srgb, var(--accent) 30%, transparent);
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
}

.lead-modal--exit .lead-form__actions .button-primary:hover,
.lead-modal--exit .lead-form__actions .button-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 48px color-mix(in srgb, var(--accent) 42%, transparent);
}

.lead-modal--exit .lead-captcha,
.lead-modal--exit .lead-form__status {
  width: 100%;
}

.lead-modal--exit .lead-form__status {
  color: #ffffff;
}

@media (max-width: 680px) {
  .lead-modal--exit .lead-dialog {
    margin: 16px auto;
    padding: 28px 18px;
    border-radius: 24px;
  }

  .lead-modal--exit .form-grid {
    grid-template-columns: 1fr;
  }

  .lead-modal--exit .lead-form__actions .button-primary,
  .lead-modal--exit .lead-form__actions .button-secondary {
    flex: 1 1 150px;
  }
}


.blog-product-index__footer{display:grid;gap:18px;padding:0 0 48px}.blog-product-subscribe{order:1}.blog-product-taxonomy{order:2;margin:0}.blog-product-subscribe__heading h2,.blog-product-index .blog-product-subscribe h2{font-size:clamp(20px,2.1vw,30px);line-height:1.05;max-width:8ch}.blog-product-card{transition:transform .2s ease,box-shadow .2s ease;cursor:pointer}.blog-product-card:hover{transform:translateY(-4px);box-shadow:0 24px 48px rgba(0,0,0,.24)}.blog-product-card__link{display:block;height:100%}.blog-product-card__body{display:grid;gap:12px;padding:18px 18px 20px;height:100%}.blog-product-card__meta{display:flex;flex-wrap:wrap;gap:8px;font-size:12px;letter-spacing:.08em;text-transform:uppercase;color:rgba(247,242,233,.72)}.blog-product-card h2{margin:0;font-size:clamp(16px,1.15vw,21px);line-height:1.15}.blog-product-card p{margin:0;color:rgba(247,242,233,.84)}.blog-article-hero{padding:34px 0 24px;display:grid}.blog-article-hero__content{max-width:min(860px,100%);margin-left:0;padding:56px 32px 28px}.blog-article-hero__content h1{font-size:clamp(24px,2.8vw,40px);line-height:1.08;max-width:20ch;margin:16px 0 10px}.blog-article-meta{display:flex;flex-wrap:wrap;gap:10px;margin:0 0 18px}.blog-article-tags,.blog-article-hero__tags{margin-top:18px}.blog-article .trust-grid,.blog-article .section.section-trust,.blog-article [data-section-anchor='trust'],.blog-article [data-section-anchor='proof']{display:none!important}.blog-product-grid{grid-template-columns:repeat(5,minmax(0,1fr))}.blog-product-index>.container,.blog-article .blog-article-flow,.blog-article .blog-product-order,.blog-article>.blog-article-hero{width:min(90vw,var(--container));max-width:none;margin-inline:auto}@media (max-width:900px){.blog-product-index__hero{grid-template-columns:1fr}.blog-product-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.blog-article-hero__content{padding:34px 20px 18px}}@media (max-width:640px){.blog-product-grid{grid-template-columns:1fr}}
/* Product blog mode overrides */
.blog-product-index__hero h1{font-size:clamp(24px,2.85vw,40px);line-height:1.04;max-width:24ch}.blog-product-index__footer{padding:0 0 48px}.blog-product-taxonomy{order:2;margin:0}.blog-product-subscribe{order:1}.blog-product-subscribe__heading h2,.blog-product-index .blog-product-subscribe h2{font-size:clamp(18px,1.6vw,24px);line-height:1.08;max-width:10ch}.blog-product-card__body{align-content:start}.blog-product-card p{line-height:1.5;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}.blog-article-hero{min-height:auto}.blog-article-hero__content{display:grid;align-content:start;padding:40px 32px 18px}.blog-article-hero h1{font-size:clamp(22px,2.2vw,34px);line-height:1.08;max-width:24ch;margin:12px 0 14px}.blog-article-hero__actions{order:2}.blog-article-hero__tags{order:3;margin-top:18px}.blog-article-flow{padding:40px 0}.blog-article .section.section-avtocom-equipment{margin-top:0}.blog-article .section.section-avtocom-equipment>.container{width:100%}@media (max-width:900px){.blog-product-index__hero h1{max-width:none}.blog-article-hero__content{padding:30px 20px 18px}}

/* ponytail: force blog hero clamp against earlier minified block; remove !important when blog CSS is split */
.blog-product-index .blog-product-index__hero h1{font-size:clamp(22px,2.35vw,32px)!important;line-height:1.05!important;max-width:28ch!important}

/* Product blog mode final overrides */
.blog-product-index__hero{grid-template-columns:minmax(0,1.05fr) minmax(280px,.95fr);align-items:center}.blog-product-index__hero-art img{display:block;width:100%;min-height:300px;object-fit:cover}.blog-product-index__footer{display:grid;gap:20px;padding:0 0 48px}.blog-product-taxonomy{order:2;margin:0}.blog-product-subscribe{order:1}.blog-product-subscribe__heading h2,.blog-product-index .blog-product-subscribe h2{font-size:clamp(16px,1.35vw,22px);line-height:1.08;max-width:10ch}.blog-product-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:20px;padding:30px 0 48px}.blog-product-card{display:block;height:100%;overflow:hidden;transition:transform .2s ease,box-shadow .2s ease;cursor:pointer}.blog-product-card:hover{transform:translateY(-4px);box-shadow:0 24px 48px rgba(0,0,0,.24)}.blog-product-card__link{display:flex;flex-direction:column;height:100%;color:inherit;text-decoration:none}.blog-product-card__media img{display:block;width:100%;height:210px;object-fit:cover}.blog-product-card__body{display:grid;align-content:start;gap:12px;padding:18px 18px 20px;height:100%}.blog-product-card h2{display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden;margin:0;font-size:clamp(16px,1.05vw,19px);line-height:1.12}.blog-product-card p{margin:0;color:rgba(247,242,233,.84);line-height:1.5;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:3;overflow:hidden}.blog-article-hero__author{display:flex;align-items:center;gap:12px}.blog-product-card__meta,.blog-article-hero__meta,.blog-article-tags{display:flex;flex-wrap:wrap;gap:10px}.blog-product-card__rubric-link{color:inherit;text-decoration:none}.blog-article-hero__author-avatar{width:44px;height:44px;border-radius:50%;overflow:hidden;border:1px solid rgba(255,255,255,.16);background:rgba(255,255,255,.08);flex:none}.blog-article-hero__author-avatar img{display:block;width:100%;height:100%;object-fit:cover}.blog-article-hero__author-copy{display:grid;gap:2px}.blog-articl... [truncated]

/* Exit-intent lead form: site-styled full layout. */
/* ponytail: local blog-article cleanup over earlier minified overrides; split product-blog CSS later if this area grows again */
.blog-article .blog-article-flow,
.blog-article .avtocom-equipment,
.blog-article .blog-product-order {
  width: min(90vw, var(--container));
  max-width: var(--container);
  margin-inline: auto;
}

.blog-article .blog-article-flow {
  padding: 32px 0 0;
}

.blog-article .avtocom-equipment {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}

.blog-article .blog-product-order {
  width: min(90vw, var(--container));
  max-width: var(--container);
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
  padding: 28px;
}

.blog-article .blog-product-order .blog-product-order__form,
.blog-article .blog-product-order .lead-form,
.blog-article .blog-product-order .form-grid,
.blog-article .blog-product-order input,
.blog-article .blog-product-order select,
.blog-article .blog-product-order textarea {
  min-width: 0;
}

.blog-article .blog-product-order .lead-form {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
}

.blog-article .blog-product-order .form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
}

.blog-article .blog-product-order .form-grid label,
.blog-article .blog-product-order .form-consent,
.blog-article .blog-product-order .lead-form__actions,
.blog-article .blog-product-order .lead-form__status,
.blog-article .blog-product-order .lead-captcha {
  grid-column: 1 / -1;
  width: 100%;
}

body:has(.blog-article) .site-footer .footer-grid {
  align-items: start;
}

body:has(.blog-article) .site-footer .footer-panel {
  align-self: start;
  height: auto;
  min-height: 0;
  padding: 20px;
}

@media (max-width: 1100px) {
  .blog-article .blog-product-order {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .blog-article .blog-product-order {
    padding: 22px;
  }

  .blog-article .blog-product-order .form-grid {
    grid-template-columns: 1fr;
  }
}

/* ponytail: override earlier minified product-blog shell; article shell must span full width while inner blocks stay centered at 90vw */
.blog-article {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

.blog-article > .blog-article-hero {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-inline: 0;
  border-radius: 0;
  overflow: hidden;
}

.blog-article .blog-article-hero__content {
  display: flex;
  flex-direction: column;
  width: min(90vw, var(--container));
  max-width: var(--container);
  margin-inline: auto;
  padding: clamp(28px, 4vw, 44px);
}

.blog-article .blog-article-hero h1 {
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow: visible;
  margin: 14px 0 0;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 18ch;
}

.blog-article .blog-article-hero__rubric {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--eyebrow-bg);
}

.blog-article .blog-article-hero__meta {
  margin-top: auto;
  padding-top: 24px;
}

.blog-article .blog-article-hero__author-copy time { color: var(--muted-soft); font-size: 14px; }

@media (min-width: 901px) {
  .blog-article .blog-article-hero h1 { font-size: 60px; max-width: 70vw; }
}

.blog-article .blog-article-hero__actions {
  margin-top: 20px;
}

.blog-article .blog-article-hero__actions .button-primary {
  min-width: 0;
}

.blog-article .blog-article-text h2 {
  font-size: clamp(22px, 2.3vw, 32px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.blog-article .blog-article-text p,
.blog-article .blog-article-text li {
  color: var(--muted-soft);
}

.blog-article .blog-inline-tag { color: #ffb56b; text-decoration: none; }
.blog-article .blog-inline-tag:hover,
.blog-article .blog-inline-tag:focus-visible { color: #ffd09d; text-decoration: underline; text-underline-offset: 3px; }

.blog-article .blog-article-banner {
  margin-top: 28px;
}

.blog-article .blog-product-order {
  margin-top: 28px;
}

body:has(.blog-article) .site-footer {
  margin-top: 28px;
}

/* ponytail: index keeps its compact hero; article hero uses the viewport for readable title and image coverage. */
.blog-product-index__hero {
  min-height: 500px;
}

.blog-article > .blog-article-hero {
  min-height: 100svh;
}

.blog-product-index__hero {
  align-items: stretch;
}

.blog-product-index__hero > div:first-child,
.blog-article .blog-article-hero__content {
  display: grid;
  align-content: center;
  justify-items: start;
}

.blog-product-index__hero > div:first-child {
  padding-left: 0;
}

.blog-product-index__hero .eyebrow,
.blog-article .blog-article-hero__rubric {
  width: fit-content;
  max-width: 100%;
  justify-self: start;
}

.blog-product-index__hero .eyebrow {
  display: inline-flex;
}

.blog-article .blog-article-hero__content {
  padding: clamp(28px, 4vw, 44px) clamp(28px, 4vw, 44px) clamp(28px, 4vw, 44px) 0;
}

.blog-article .blog-article-hero__actions {
  justify-content: flex-start;
}

@media (max-width: 900px) {
  .blog-article .blog-article-hero__content {
    width: 100%;
    padding: 24px;
  }

  .blog-article .blog-article-hero h1 {
    max-width: none;
  }
}

/* ponytail: shared equipment rails use native scroll; split only if a second carousel needs different behavior */
.equipment-marquee-shell { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 12px; }
.equipment-marquee { overflow-x: auto; scrollbar-width: none; scroll-behavior: smooth; }
.equipment-marquee::-webkit-scrollbar { display: none; }
.equipment-track { display: flex; width: max-content; gap: 12px; }
.equipment-track .equipment-card { flex: 0 0 min(280px, 76vw); }

/* ponytail: final article-hero layout wins over legacy blog overrides above. */
.blog-article > .blog-article-hero .blog-article-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-content: stretch;
  height: 100%;
  box-sizing: border-box;
  position: relative;
}

.blog-article > .blog-article-hero h1 {
  position: absolute;
  top: 50%;
  left: 0;
  margin: 0;
  transform: translateY(-50%);
}

.blog-article > .blog-article-hero .blog-article-hero__meta {
  margin-top: auto;
}

@media (min-width: 760px) {
  .blog-article > .blog-article-hero h1 {
    font-size: 60px !important;
    max-width: 70vw !important;
  }
}

@media (min-width: 641px) {
  .blog-product-index .blog-product-index__hero,
  .blog-article > .blog-article-hero {
    box-sizing: border-box;
    height: 500px;
    min-height: 500px;
    max-height: 500px;
  }
  .blog-product-index .blog-product-index__hero-art img { height: 100%; min-height: 0; }
}

.blog-article > .blog-article-hero { border-top: 0; border-bottom: 0; }

@media (max-width: 640px) {
  .blog-product-index .blog-product-index__hero,
  .blog-article > .blog-article-hero {
    box-sizing: border-box;
    height: 300px !important;
    min-height: 300px !important;
    max-height: 300px;
    padding: 0;
  }
  .blog-product-index .blog-product-index__hero { padding: 24px; }
  .blog-product-index .blog-product-index__hero-art img { min-height: 0; height: 100%; }
  .blog-article > .blog-article-hero .blog-article-hero__content {
    box-sizing: border-box;
    height: 100%;
    padding: 24px;
    align-content: center;
  }
  .blog-article > .blog-article-hero h1 {
    left: 50%;
    width: calc(100% - 48px);
    transform: translate(-50%, -50%);
    text-align: center;
  }
}
