/* Fonts */
:root {
  --default-font: "Montserrat",  sans-serif;
  --heading-font: "Montserrat",  sans-serif;
  --nav-font: "Montserrat",  sans-serif;
  --hero-font: "Source Sans 3",  sans-serif;
}

.montserrat-<uniquifier> {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

.source-sans-3-<uniquifier> {
  font-family: "Source Sans 3", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

/* Colors */
:root {
  --scheme-white-color:    #F0F0F0;    /* white */
  --scheme-black-color:    #001514;    /* night */
  --scheme-blue-color:     #0071EB;    /* light blue */
  --scheme-deepblue-color: #031A6B;    /* deep blue */
  --scheme-orange-color:   #FC5130;    /* orange*/
}

:root {
  scroll-behavior: smooth;

  --header-height: 50px;
  --hero-container-padding: 12px;
  --hero-text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
  --hero-soft-shadow: 0 5px 20px rgba(0, 0, 0, 0.35);
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--scheme-black-color);
  background-color: var(--scheme-white-color);
  font-family: var(--default-font);
  font-size: 16px;
}

a {
  color: var(--scheme-blue-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--scheme-blue-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--scheme-black-color);
  font-family: var(--heading-font);
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--scheme-black-color);
  background-color: var(--scheme-white-color);
  padding: 18px 0;
  transition: all 0.5s;
  z-index: 997;
  height: var(--header-height);
  min-height: var(--header-height);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 30px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 600;
  color: var(--scheme-black-color);
}

.header .logo span {
  color: var(--scheme-blue-color);
  font-size: 24px;
  font-weight: 600;
  padding-left: 3px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--scheme-orange-color);
  background: var(--scheme-blue-color);
  font-size: 18px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 4px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--scheme-orange-color);
  background: color-mix(in srgb, var(--scheme-blue-color), transparent 15%);
}

.header .header-phone {
  font-weight: bold;
  font-size:18px;
  color: var(--scheme-black-color);
  padding: 6px 20px;
}

.header .header-phone a:hover,
.header .header-phone a:focus {
  color: var(--scheme-orange-color);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .header-phone {
    order: 2;
    font-weight: bold;
    font-size:16px;
    color: var(--scheme-black-color);
    padding: 6px 10px;
  }

  .header .btn-getstarted {
    order: 3;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 4;
  }
}

@media (max-width: 768px) {
  .header .logo {
    order: 1;
  }

  .header .header-phone {
    order: 2;
    font-weight: bold;
    font-size:12px;
    color: var(--scheme-black-color);
    padding: 6px 10px;
  }

  .header .btn-getstarted {
    order: 3;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 4;
  }
}

@media (max-width: 400px) {
  .header .header-phone {
    font-size:10px;
  }
}

.scrolled .header {
  box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1000px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus,
  .navnolink {
    color: var(--scheme-black-color);
    padding: 14px 15px;
    font-size: 14px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i,
  .navmenu navnolinki {
    font-size: 14px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a,
  .navnolink {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--scheme-orange-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--scheme-white-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a,
  .navnolink {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    color: var(--scheme-black-color);
  }

  .navmenu .dropdown ul a i,
  .navnolinki {
    font-size: 14px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--scheme-orange-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--scheme-black-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--scheme-white-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus,
  .navnolink {
    color: var(--scheme-black-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.005em;
    display: flex;
    align-items: center;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i,
  .navnolinki {
    font-size: 14px;
    line-height: 0;
    margin-left: 5px;
    width: 100%; /*30px;*/
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: right;
    transition: 0.3s;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    transform: scaleY(-1);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--scheme-white-color);
    border: 1px solid color-mix(in srgb, var(--scheme-black-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background: background: color-mix(in srgb, var(--scheme-black-color), transparent 3%);
  }

  .navmenu .dropdown.mobile-open > ul {
    display: block;
    position: static;
    opacity: 1;
    visibility: visible;
  }

  .navmenu .dropdown.mobile-open > a .toggle-dropdown {
    transform: rotate(180deg);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: var(--scheme-white-color);
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--scheme-black-color);
  background-color: color-mix(in srgb, var(--scheme-white-color), transparent 92%);
  font-size: 16px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 106px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--scheme-black-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 16px;
  font-family: var(--heading-font);
}

.footer a {
  color: var(--scheme-blue-color);
}

.footer a:hover {
  color: var(--scheme-orange-color);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--scheme-black-color), transparent 50%);
  font-size: 20px;
  color: color-mix(in srgb, var(--scheme-black-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--scheme-white-color);
  border-color: var(--scheme-blue-color);
}

.footer h4 {
  font-size: 18px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-seo {
  justify-content: center;
}

.footer-links::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(0, 0, 0, 0.15);
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 16px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--scheme-black-color), transparent 20%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--scheme-orange-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--scheme-black-color), transparent 95%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 16px;
}

.footer-top .row > [class*="col-"] {
  position: relative;
    display: flex;
    flex-direction: column;
}

  .footer-top .footer-links {
    padding-left: 32px;
  }

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--scheme-white-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--scheme-white-color);
  border-color: var(--scheme-blue-color) transparent var(--scheme-blue-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--scheme-white-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--scheme-orange-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--scheme-blue-color), transparent 20%);
  color: var(--scheme-white-color);
}

.scroll-top:hover i {
  color: var(--scheme-white-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Light Theme Section
--------------------------------------------------------------*/
.light-block {
  background: var(--scheme-white-color);
}

.light-block h2, 
.light-block p {
  color: var(--scheme-black-color);
}

/*--------------------------------------------------------------
# Dark Theme Section
--------------------------------------------------------------*/
.dark-block {
  background: var(--scheme-black-color);
}

.dark-block h2, 
.dark-block p {
  color: var(--scheme-white-color);
}

/*--------------------------------------------------------------
# Default Page Section
--------------------------------------------------------------*/
.defpage article {
  background: var(--scheme-white-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  height: 100%;
  overflow: hidden;
}

.defpage .padbot {
  padding: 50px 0;
}

.defpage .post-img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.defpage .post-imgsm {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.defpage .description {
  padding-left: 10px;
  padding-right: 10px;
  text-align: justify;
}
@media (min-width: 1000px) {
  .defpage .description {
    padding-left: 20%;
    padding-right: 20%;
  }
}
.defpage .descnopad {
  padding-left: 10px;
  padding-right: 10px;
  text-align: justify;
}

.defpage .title, .defpage .titlenounder {
  text-align: center;
  text-transform: uppercase;
  font-weight: 800;
  position: relative;
  padding: 0 0 15px;
  margin: 0 0 15px;
  font-size: 30px;
  padding: 0;
  margin: 0 0 20px 0;
}

.defpage .catbtn {
  padding: 0.5em 1em;
  background: var(--scheme-orange-color);
  color: var(--scheme-white-color);
  font-weight: bold;
  text-transform: uppercase;
}

.defpage .catbtn:hover {
  background-color: var(--scheme-white-color);
  color: var(--scheme-blue-color);
}

.defpage .padtext {
  text-align: justify;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media (min-width: 1000px) {
  .defpage .padtext {
    padding-left: 10%;
    padding-right: 10%;
  }
}

.rowblue {
  color: var(--scheme-white-color);
  background-color: var(--scheme-blue-color);
}

.rowblue h2, .rowblue h3 {
  color: var(--scheme-white-color);
}

.rowblue .title:after {
  background: var(--scheme-white-color);
}

.rowblue a {
  color: var(--scheme-white-color);
}

.rowblue a:hover {
  color: var(--scheme-blue-color);
}

a:hover {
  color: var(--scheme-orange-color);
}

.parentdiv{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.parentdiv > div {
  min-width: 350px;
  flex: 1 0 50%;
  margin: 0;
}

.catblock {
  margin: 0;
  padding: 50px 0;
}

.imgsub {
  text-align: center;
}

.screenled {
  min-width: 100px !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.folio {
  text-align: center;
}

.folio .padbottom{
  padding-bottom: 50px;
}

.folio ul {
  margin: 0px;
  padding-left: 0;
}

.folio ul li {
  list-style-type: none;
  padding-bottom:10px;
}

.folio .gal-item-active {
  border: 1px solid black;
}

.catalogtable {
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}

.catalogtable .tdleft {
  text-align: left;
  padding: 5px;
  width: 50%;
}

.catalogtable .tdright {
  text-align: right;
  padding: 5px;
  width: 50%;
}

.tg-float {
    position: fixed;
    right: 15px;
    bottom: 65px;
    width: 40px;
    height: 40px;
    background: #24A1DE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0,0,0,.25);
    z-index: 9999;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}

.tg-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(0,0,0,.35);
}

.tg-float svg {
    display: block;
}

@media (max-width: 768px) {
    .tg-float {
        width: 40px;
        height: 40px;
        right: 15px;
        bottom: 65px;
    }

    .tg-float svg {
        width: 24px;
        height: 24px;
    }
}

.post-img-card {
  width: 100%;
}

.hover-swap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.hover-swap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.hover-swap .img-default {
  opacity: 1;
  z-index: 1;
}

.hover-swap .img-hover {
  opacity: 0;
  z-index: 2;
}

.hover-swap:hover .img-default {
  opacity: 0;
}

.hover-swap:hover .img-hover {
  opacity: 1;
}

.imgsub {
  position: static;
  display: block;
  font-weight: 500;
  width: 100%;
  margin-top: 12px;
  text-align: center;
  z-index: auto;
}

.text-blackbg {
  display: inline-block;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--scheme-white-color);
  padding: 16px 24px;
  border-radius: 12px;
}

/* ------------ Clients section -------------- */

.clients-ticker {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 26px 0 32px;
  cursor: grab;
  user-select: none;
}

.clients-ticker::before,
.clients-ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 3;
  pointer-events: none;
}

.clients-ticker::before {
  left: 0;
  background: linear-gradient(90deg, rgba(245, 248, 252, .96), transparent);
}

.clients-ticker::after {
  right: 0;
  background: linear-gradient(270deg, rgba(245, 248, 252, .96), transparent);
}

.clients-ticker.dragging {
  cursor: grabbing;
}

.clients-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.clients-group {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-right: 18px;
  flex-shrink: 0;
}

.client-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  width: 210px;
  height: 112px;
  padding: 24px;

  border-radius: 26px;
  box-sizing: border-box;
  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      rgba(240, 240, 240, .96),
      rgba(240, 240, 240, .76)
    );

  box-shadow:
    0 18px 46px rgba(7, 17, 31, .08),
    inset 0 0 0 1px rgba(0, 113, 235, .08),
    inset 0 1px 0 rgba(240, 240, 240, .85);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  transition:
    box-shadow .28s ease,
    transform .28s ease,
    background .28s ease;
}

.client-item::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 2px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 113, 235, .55),
    transparent
  );
  opacity: .7;
}

.client-item::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -48px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(0, 113, 235, .12), transparent 68%);
  pointer-events: none;
}

.client-item img {
  position: relative;
  z-index: 1;

  max-width: 100%;
  max-height: 58px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;

  filter: grayscale(100%) contrast(.9);
  opacity: .68;

  transition:
    filter .28s ease,
    opacity .28s ease,
    transform .28s ease;
  pointer-events: none;
}

.client-item:hover {
  transform: translateY(-3px);
  background:
    linear-gradient(
      180deg,
      rgba(240, 240, 240, 1),
      rgba(240, 240, 240, .86)
    );

  box-shadow:
    0 24px 62px rgba(7, 17, 31, .12),
    inset 0 0 0 1px rgba(0, 113, 235, .18),
    inset 0 1px 0 rgba(240, 240, 240, .95);
}

.client-item:hover img {
  filter: grayscale(0%) contrast(1);
  opacity: 1;
  transform: scale(1.045);
}

@media (max-width: 768px) {
  .clients-ticker {
    padding: 20px 0 26px;
  }

  .clients-ticker::before,
  .clients-ticker::after {
    width: 46px;
  }

  .clients-group {
    gap: 14px;
    padding-right: 14px;
  }

  .client-item {
    width: 165px;
    height: 92px;
    padding: 18px;
    border-radius: 22px;
  }

  .client-item img {
    max-height: 46px;
  }
}

/* ------------ Info block -------------- */
.info-block {
  display: flex;
  align-items: stretch;
  gap: 30px;
  width: 100%;
}

.info-block__image {
  flex: 0 0 25%;
  overflow: hidden;
  border-radius: 12px;
}

.info-block__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  cursor: pointer;
}

.info-block__text {
  flex: 1 1 75%;
}

.info-block__text h2 {
  margin-top: 0;
  margin-bottom: 16px;
}

.info-block__text p {
  margin: 0 0 12px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .info-block {
    flex-direction: column;
  }

  .info-block__image {
    flex: none;
    height: 260px;
  }
}

/* всплывающее окно */
.image-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.image-popup.active {
  opacity: 1;
  visibility: visible;
}

.image-popup img {
  max-width: 90vw;
  max-height: 90svh;
  width: auto;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.45);
  background: var(--scheme-white-color);
}

/* ------------ Series Page -------------- */
.series, uledhero {
  position: relative;
  width: 100%;
  height: calc(100svh - 100px); /* высота экрана минус верхний отступ */
  margin-top: 100px;           /* отступ сверху */
  overflow: hidden;            /* скрываем лишнее, что выходит за границы */
}
.series img, uledhero img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;           /* сохраняет пропорции, заполняет блок */
  object-position: center center; /* центрирование изображения */
  transform: translate(-50%, -50%);
}
.series-text, uledhero-text {
  position: absolute;
  top: 40%;
  left: 0px; /* небольшой отступ слева */
  transform: translateY(-50%);
  z-index: 2;
}

.series-apps, uledhero-apps {
  position: absolute;
  top: 60%;
  left: 0px; /* небольшой отступ слева */
  transform: translateY(-50%);
  z-index: 2;
}

.series-text h3, uledhero-text h1 {
  margin: 0;
  margin-bottom: 20px;
  font-size: 56px;
  font-weight: 800;
  font-family: var(--hero-font);
  line-height: 1.1;
  color: var(--scheme-white-color);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
}

@media (max-width: 768px) {
  .series-text, uledhero-text {
    top: 15%;
    transform: translateY(-50%);
  }
  .series-apps, uledhero-apps {
    top: 50%;
    transform: translateY(-50%);
  }
  .series-text h3, uledhero-text h3 {
    font-size: 46px;
  }
  uledhero-text h1 {
    font-size: 46px;
  }
}

.series-uses {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 420px;
}

.series-uses li {
  position: relative;
  padding-left: 38px; /* можно подобрать под размер галочки */
  margin-bottom: 12px;
  color: var(--scheme-white-color);
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.65);
}

.series-uses li:last-child {
  margin-bottom: 0;
}

.series-uses li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--scheme-white-color); /*329e0d;*/
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

.spec-table-modx-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 30px 0;
}

.spec-table-modx {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-family: Arial, sans-serif;
  font-size: 18px;
  background: var(--scheme-white-color);
}

.spec-table-modx thead th {
  background: var(--scheme-blue-color);
  color: var(--scheme-white-color);
  padding: 20px 16px;
  font-weight: 700;
  border: 1px solid #0064d6;
  text-align: center;
}

.spec-table-modx thead th:first-child {
  text-align: left;
  width: 28%;
}

.spec-table-modx tbody th,
.spec-table-modx tbody td {
  padding: 20px 16px;
  border: 1px solid #e5e7eb;
  vertical-align: middle;
  background: var(--scheme-white-color);
}

.spec-table-modx tbody th {
  text-align: left;
  color: #444;
  font-weight: 700;
}

.spec-table-modx tbody td {
  text-align: center;
  color: #666;
}

@media (max-width: 768px) {
  .spec-table-modx,
  .spec-table-modx thead,
  .spec-table-modx tbody,
  .spec-table-modx tr,
  .spec-table-modx th,
  .spec-table-modx td {
    display: block;
    width: 100%;
  }

  .spec-table-modx thead {
    display: none;
  }

  .spec-table-modx tbody tr {
    margin-bottom: 18px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    background: var(--scheme-white-color);
  }

  .spec-table-modx tbody th {
    background: var(--scheme-blue-color);
    color: var(--scheme-white-color);
    border: none;
    padding: 14px 16px;
  }

  .spec-table-modx tbody td {
    position: relative;
    text-align: left;
    padding: 14px 16px 14px 140px;
    border: none;
    border-top: 1px solid #edf0f3;
    min-height: 24px;
  }

  .spec-table-modx tbody td::before {
    content: attr(data-title);
    position: absolute;
    left: 16px;
    top: 14px;
    width: 110px;
    font-weight: 700;
    color: var(--scheme-blue-color);
  }
}

/*------------------ catalog tables ---------------------*/
.spec-grid-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 30px 0;
}

.spec-grid {
  display: grid;
  width: 100%;
  min-width: 600px;
  border: 1px solid #e3e6ea;
  border-right: 0;
  border-bottom: 0;
  background: var(--scheme-white-color);
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #555;
}

/* Варианты числа колонок */
.spec-grid--1 {
  grid-template-columns: minmax(200px, 0.5fr) repeat(1, minmax(200px, 0.5fr));
}

.spec-grid--2 {
  grid-template-columns: minmax(220px, 1.5fr) repeat(2, minmax(180px, 1fr));
}

.spec-grid--3 {
  grid-template-columns: minmax(220px, 1.5fr) repeat(3, minmax(160px, 1fr));
}

.spec-grid--4 {
  grid-template-columns: minmax(220px, 1.5fr) repeat(4, minmax(150px, 1fr));
}

.spec-grid--5 {
  grid-template-columns: minmax(220px, 1.5fr) repeat(5, minmax(140px, 1fr));
}

.spec-grid--6 {
  grid-template-columns: minmax(220px, 1.5fr) repeat(6, minmax(130px, 1fr));
}

.spec-grid--8 {
  grid-template-columns: minmax(220px, 1.5fr) repeat(8, minmax(120px, 1fr));
}

.spec-grid__cell {
  padding: 12px 14px;
  border-right: 1px solid #e3e6ea;
  border-bottom: 1px solid #e3e6ea;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 0;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
  box-sizing: border-box;
}

.spec-grid__head {
  background: var(--scheme-blue-color);
  color: var(--scheme-white-color);
  font-weight: 700;
}

.spec-grid__head--label,
.spec-grid__label {
  justify-content: flex-start;
  text-align: left;
}

.spec-grid__label {
  font-weight: 600;
  color: #444;
  background: var(--scheme-white-color);
}

.spec-grid__group {
  background: #5a6fd8;
  color: var(--scheme-white-color);
  font-weight: 700;
}

.spec-grid__group--empty {
  background: var(--scheme-white-color);
  color: transparent;
}

.spec-grid__note {
  margin: 10px 0 0;
  font-size: 13px;
  color: #777;
}

/* Планшеты */
@media (max-width: 991px) {
  .spec-grid {
    font-size: 13px;
  }

  .spec-grid__cell {
    padding: 10px 10px;
  }
}

/* Мобильная версия */
@media (max-width: 767px) {
  .spec-grid-wrap {
    overflow: visible;
  }

  .spec-grid {
    display: block;
    min-width: 100%;
    border: 0;
    background: transparent;
  }

  /* Полностью скрываем верхнюю строку заголовков */
  .spec-grid__head,
  .spec-grid__group {
    display: none !important;
  }

  .spec-grid__label {
    display: block;
    width: 100%;
    background: var(--scheme-blue-color);
    color: var(--scheme-white-color);
    font-weight: 700;
    border: 1px solid #0063cf;
    border-bottom: 0;
    margin-top: 18px;
    padding: 12px 14px;
  }

  .spec-grid__cell {
    display: block;
    width: 100%;
    text-align: left;
    justify-content: flex-start;
    border: 1px solid #e3e6ea;
    border-top: 0;
    padding: 10px 12px;
  }

  .spec-grid__cell[data-model]::before {
    content: attr(data-model);
    display: block;
    font-weight: 700;
    color: var(--scheme-blue-color);
    margin-bottom: 4px;
  }
}

.spec-grid-divider {
  position: relative;
  height: 40px;
  margin: 10px 0 20px;
}

.spec-grid-divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    #5571d2 15%,
    #1d4cec 50%,
    #5571d2 85%,
    transparent 100%
  );
  transform: translateY(-50%);
}

.app-img-row {
  display: flex;
  flex-wrap: nowrap;   /* без переноса */
  gap: 20px;           /* расстояние между картинками */
  width: 100%;
}

.app-img-item {
  flex: 1 1 0;         /* все блоки одинаковой ширины */
  min-width: 0;        /* важно, чтобы могли сжиматься */
}

.app-img-item img {
  display: block;
  width: 100%;
  height: auto;        /* сохраняет пропорции */
}

.topgap {
  /*margin-top: 100px;*/
}
/*
.hero-picture, .uledhero-picture {
  margin-top: 2px;
}
*/
/*********** Downloads *************************************/

.downloads-page--premium {
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 0;
}

.downloads-group,
.downloads-subgroup,
.downloads-subsubgroup {
  margin-bottom: 16px;
}

.downloads-toggle,
.downloads-subtoggle,
.downloads-subsubtoggle {
  width: 100%;
  appearance: none;
  background: var(--scheme-white-color);
  color: #1f2328;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  cursor: pointer;
  transition:
    background .3s ease,
    border-color .3s ease,
    color .3s ease,
    box-shadow .3s ease,
    transform .2s ease;
}

.downloads-toggle {
  padding: 20px 24px;
  font-size: 22px;
  font-weight: 700;
  border: 2px solid var(--scheme-blue-color);
  border-radius: 20px;
  box-shadow:
    0 10px 30px rgba(0, 113, 235, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.7);
}

.downloads-subtoggle {
  padding: 16px 18px;
  font-size: 17px;
  font-weight: 600;
  border: 1px solid #d8e4f4;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.downloads-subsubtoggle {
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--scheme-white-color) 0%, #fafcff 100%);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.035);
}

.downloads-toggle-left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.downloads-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.downloads-title,
.downloads-subtitle,
.downloads-subsubtitle {
  line-height: 1.2;
}

.downloads-count {
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
  transition: color .3s ease;
}

.downloads-toggle:hover,
.downloads-subtoggle:hover,
.downloads-subsubtoggle:hover {
  border-color: var(--scheme-blue-color);
  background: linear-gradient(180deg, #fafdff 0%, #f3f8ff 100%);
  transform: translateY(-1px);
}

.downloads-toggle.active,
.downloads-subtoggle.active,
.downloads-subsubtoggle.active {
  background: linear-gradient(135deg, var(--scheme-blue-color) 0%, #2588f4 100%);
  color: var(--scheme-white-color);
  border-color: var(--scheme-blue-color);
  box-shadow:
    0 18px 38px rgba(0, 113, 235, 0.20),
    inset 0 1px 0 rgba(255,255,255,0.2);
}

.downloads-toggle.active .downloads-count,
.downloads-subtoggle.active .downloads-count,
.downloads-subsubtoggle.active .downloads-count {
  color: rgba(255,255,255,0.82);
}

.downloads-arrow {
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 10px solid currentColor;
  transition: transform .3s ease;
  flex: 0 0 auto;
  margin-top: 1px;
}

.downloads-toggle.active .downloads-arrow,
.downloads-subtoggle.active .downloads-arrow,
.downloads-subsubtoggle.active .downloads-arrow {
  transform: rotate(180deg);
}

.downloads-content,
.downloads-subcontent,
.downloads-subsubcontent {
  display: none;
}

.downloads-content.open,
.downloads-subcontent.open,
.downloads-subsubcontent.open {
  display: block;
}

.downloads-content {
  padding: 14px 0 6px;
}

.downloads-subcontent {
  padding: 10px 0 4px 16px;
}

.downloads-subsubcontent {
  padding: 8px 0 4px 18px;
}

@media (max-width: 767px) {
  .downloads-subcontent {
    padding-left: 10px;
  }

  .downloads-subsubcontent {
    padding-left: 12px;
  }
}

.downloads-files {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.downloads-files li {
  margin: 0;
}

.downloads-files a {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 15px 16px;
  border: 1px solid #dbe5f0;
  border-radius: 16px;
  background: linear-gradient(180deg, var(--scheme-white-color) 0%, #f9fbff 100%);
  color: #1f2328;
  text-decoration: none;
  transition:
    border-color .28s ease,
    transform .2s ease,
    box-shadow .28s ease,
    background .28s ease,
    color .28s ease;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.downloads-files a:hover {
  border-color: var(--scheme-blue-color);
  background: linear-gradient(135deg, var(--scheme-blue-color) 0%, #2588f4 100%);
  color: var(--scheme-white-color);
  transform: translateY(-2px);
  box-shadow:
    0 16px 34px rgba(0, 113, 235, 0.16),
    inset 0 1px 0 rgba(255,255,255,0.14);
}

.downloads-files a:hover .file-meta {
  color: rgba(255,255,255,0.84);
}

.file-icon {
  min-width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .6px;
  color: var(--scheme-white-color);
  flex: 0 0 48px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
}

.file-icon--pdf {
  background: linear-gradient(135deg, #ff4d4f 0%, #d9363e 100%);
}

.file-icon--zip {
  background: linear-gradient(135deg, #ff9f1a 0%, #d97706 100%);
}

.file-icon--dwg {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.file-icon--app {
  background: linear-gradient(135deg, #05b1d9 0%, #157a91 100%);
}

.downloads-files a:hover .file-icon {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.24),
    0 8px 18px rgba(0,0,0,0.15);
}

.file-body {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}

.file-title {
  font-size: 15px;
  font-weight: 650;
  line-height: 1.35;
}

.file-meta {
  font-size: 13px;
  color: #6b7280;
  transition: color .28s ease;
}

@media (max-width: 767px) {
  .downloads-page--premium {
    padding: 24px 0;
  }

  .downloads-toggle {
    padding: 16px 16px;
    font-size: 18px;
    border-radius: 16px;
  }

  .downloads-subtoggle {
    padding: 14px 14px;
    font-size: 15px;
    border-radius: 14px;
  }

  .downloads-subsubtoggle {
    padding: 13px 13px;
    font-size: 14px;
    border-radius: 12px;
  }

  .downloads-toggle-left {
    gap: 10px;
  }

  .downloads-arrow {
    border-left-width: 6px;
    border-right-width: 6px;
    border-top-width: 9px;
  }

  .downloads-subcontent {
    padding-left: 10px;
  }

  .downloads-subcontent.open {
    padding-left: 10px;
  }

  .downloads-subsubcontent {
    padding-left: 12px;
  }

  .downloads-subsubcontent.open {
    padding-left: 12px;
  }

  .downloads-files a {
    padding: 13px 14px;
    gap: 12px;
    border-radius: 14px;
  }

  .file-icon {
    min-width: 42px;
    height: 42px;
    flex-basis: 42px;
    border-radius: 12px;
    font-size: 10px;
  }

  .downloads-count {
    font-size: 12px;
  }
}

/*================
Карточки
================*/

.led-solutions__grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
}

.led-card {
  flex: 1 1 0;
  min-width: 0;

  padding: 16px;

  border: 1px solid rgba(0, 113, 235, 0.14);
  border-radius: 12px;

  background:
    linear-gradient(135deg, rgba(0, 113, 235, 0.07), rgba(240, 240, 240, 0) 45%),
    var(--scheme-white-color);

  box-shadow: 0 14px 38px rgba(31, 35, 40, 0.08);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.led-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 113, 235, 0.38);
  box-shadow: 0 20px 48px rgba(31, 35, 40, 0.13);
}

.led-card a {
  display: block;
  min-width: 0;

  color: inherit;
  text-decoration: none;
}

.led-card h3 {
  min-height: 46px;
  margin: 0 0 16px;

  font-family: var(--default-font);
  font-size: clamp(11px, 1.4vw, 18px);
  font-weight: 800;
  line-height: 1.2;

  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;

  color: #1f2328;
}

.led-card__image {
  position: relative;

  width: 100%;
  aspect-ratio: 4 / 3;

  margin-bottom: 18px;

  border-radius: 8px;
  overflow: hidden;

  background: #f2f5f8;
}

.led-card__image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

.led-card p {
  margin: 0;

  font-family: var(--default-font);
  font-size: clamp(10px, 1.2vw, 15px);
  font-weight: 400;
  line-height: 1.45;

  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;

  color: rgba(31, 35, 40, 0.74);
}

/* mobile */
@media (max-width: 575px) {
  .led-solutions__grid {
    gap: 12px;
  }

  .led-card {
    padding: 12px;
    border-radius: 18px;
  }

  .led-card h3 {
    min-height: auto;
    margin-bottom: 10px;
    font-size: clamp(10px, 3vw, 15px);
  }

  .led-card__image {
    border-radius: 14px;
    margin-bottom: 10px;
  }

  .led-card p {
    font-size: clamp(10px, 2.8vw, 14px);
  }
}

/*================
Breadcrumbs
================*/

:root {
  --breadcrumbs-height: 34px;
}

.breadcrumbs__list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 9px;
  width: max-content;
  min-width: max-content;

  padding: 0;
  margin: 0;
  list-style: none;

  font-size: 13px;
  white-space: nowrap;
  overflow: visible;
}

.breadcrumbs__item {
  display: flex;
  align-items: center;
  color: rgba(31, 35, 40, 0.48);
  letter-spacing: 0.01em;
}

.breadcrumbs__item:not(:last-child)::after {
  content: "";
  width: 5px;
  height: 5px;
  margin-left: 9px;
  border-top: 1px solid rgba(0, 113, 235, 0.5);
  border-right: 1px solid rgba(0, 113, 235, 0.5);
  transform: rotate(45deg);
}

.breadcrumbs__link {
  color: var(--scheme-blue-color);
  text-decoration: none;
  transition: color .2s ease;
}

.breadcrumbs__link:hover {
  color: var(--scheme-orange-color);
}

.breadcrumbs__item--current {
  color: var(--scheme-black-color);
  font-weight: 600;
}

.page-under-header {
  padding-top: var(--header-height);
}

.breadcrumbs-bar {
  position: relative;
  z-index: 50;

  height: var(--breadcrumbs-height);
  margin-bottom: calc(var(--breadcrumbs-height) * -1);

  display: flex;
  align-items: center;
  overflow: visible;

  background: rgba(240, 240, 240, 0.70);
  /*border-bottom: 1px solid rgba(0, 113, 235, 0.12);*/
  backdrop-filter: blur(6px);
}

.breadcrumbs-bar__inner {
  padding-left: max(12px, calc((100vw - 1320px) / 2 + 12px));
  padding-right: 16px;
}

/* mobile */
@media (max-width: 768px) {
  .breadcrumbs__list {
    font-size: 10px;
  }
}

.breadcrumbs-bar {
  transform: translateY(-100%);
  opacity: 0;

  animation: breadcrumbsSlideDown .55s ease-out .25s forwards;
}

@keyframes breadcrumbsSlideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

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

/* =========================================================
   Hero carousel base
   ========================================================= */

.hero-carousel {
  position: relative;

  width: 100%;
  height: calc(100vh - var(--header-height));
  height: calc(100svh - var(--header-height));

  /*margin-top: var(--header-height);*/
  padding: 0;

  overflow: hidden;
}

.hero-carousel,
.hero-carousel * {
  box-sizing: border-box;
}

.hero-carousel__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-carousel__slide {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  opacity: 0;
  visibility: hidden;
  overflow: hidden;

  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}

.hero-carousel__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* =========================================================
   Media
   ========================================================= */

.hero-carousel__picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-carousel__media {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Заполнение с изменением пропорций */
.hero-carousel__media-fill {
  object-fit: fill;
  object-position: center center;
}

/* Заполнение с потерей краев */
.hero-carousel__media-cover {
  object-fit: cover;
  object-position: center center;
}

/* Без изменения пропорций и без потери краев */
.hero-carousel__media-contain {
  object-fit: contain;
  object-position: center center;
}

/* =========================================================
   Main text
   ========================================================= */

.hero-carousel__text {
  position: absolute;
  top: 40%;
  left: 50%;
  z-index: 5;

  width: 100%;
  max-width: 1320px;

  padding-left: var(--hero-container-padding);
  padding-right: var(--hero-container-padding);

  transform: translate(-50%, -50%);

  color: var(--scheme-white-color);
  pointer-events: none;
}

.hero-carousel__text h1 {
  max-width: min(760px, 100%);
  margin: 0 0 20px 0;

  font-family: var(--hero-font);
  font-size: 56px;
  line-height: 1.1;
  font-weight: 800;

  color: var(--scheme-white-color);
  text-shadow: var(--hero-text-shadow);
}

.hero-carousel__text h3 {
  margin: 0 0 14px 0;

  font-family: var(--hero-font);
  font-size: clamp(34px, 3.6vw, 66px);
  line-height: 0.92;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;

  color: var(--scheme-white-color);
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.hero-carousel__text h4 {
  max-width: min(760px, 100%);
  margin: 0;

  font-family: var(--heading-font);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;

  color: var(--scheme-white-color);
  text-shadow: var(--hero-text-shadow);
}

.hero-carousel__text h4 a {
  font: inherit;
  color: inherit;
  text-decoration: none;
}

.hero-carousel__text h5 {
  margin: 12px 0 0 0;

  max-width: min(760px, 100%);

  font-family: var(--heading-font);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 400;

  color: rgba(240, 240, 240, 0.88);
  text-shadow: var(--hero-soft-shadow);
}

.hero-carousel__text h5 a {
  font: inherit;
  color: inherit;
  text-decoration: none;
}

/* =========================================================
   Bootstrap-like container widths
   ========================================================= */

@media (min-width: 576px) {
  .hero-carousel__text,
  .hero-carousel__bottom-text {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .hero-carousel__text,
  .hero-carousel__bottom-text {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .hero-carousel__text,
  .hero-carousel__bottom-text {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .hero-carousel__text,
  .hero-carousel__bottom-text {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .hero-carousel__text,
  .hero-carousel__bottom-text {
    max-width: 1320px;
  }
}

/* =========================================================
   Bottom text / usage list
   ========================================================= */

.hero-carousel__slide::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;

  height: 35%;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.48),
    rgba(0, 0, 0, 0)
  );

  pointer-events: none;
}

.hero-carousel__bottom-text {
  position: absolute;
  left: 50%;
  bottom: clamp(60px, 6vh, 80px);
  z-index: 5;

  width: 100%;
  max-width: 1320px;

  padding-left: var(--hero-container-padding);
  padding-right: var(--hero-container-padding);

  transform: translateX(-50%);

  font-family: var(--nav-font);
  font-size: clamp(14px, 1vw, 18px);
  line-height: 1.45;
  font-weight: 500;

  color: rgba(240, 240, 240, 0.9);
  text-shadow: var(--hero-soft-shadow);

  pointer-events: none;
}

.hero-carousel__bottom-text ul {
  margin: 0;
  /*padding-left: 1.1em;*/
}

.hero-carousel__bottom-text li + li {
  margin-top: 6px;
}

.hero-buttons a {
  pointer-events: auto;
}

/* =========================================================
   Interactive variants
   ========================================================= */

/* Вариант: текст максимально вверху слева */
.hero-carousel__text.interactive-top {
  top: 15%;
  left: 5%;

  width: auto;
  max-width: min(560px, 90vw);

  padding-left: 0;
  padding-right: 0;

  transform: translateY(-50%);
}

.indoor-top {
  top: 45%;
  left: 5%;

  width: auto;
  max-width: min(560px, 90vw);

  padding-left: 0;
  padding-right: 0;

  transform: translateY(-50%);
}

.hero-carousel__text h1.interactive,
.hero-carousel__text h3.interactive,
.hero-carousel__text .interactive-h1,
.hero-carousel__text .interactive-h3 {
  font-family: var(--nav-font);
  font-size: clamp(20px, 2.4vw, 42px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0em;
}

.hero-carousel__text h4.interactive,
.hero-carousel__text .interactive-h4 {
  margin: 0;

  font-family: var(--hero-font);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.3;
  font-weight: 500;

  color: rgba(240, 240, 240, 0.92);
  text-shadow: var(--hero-soft-shadow);
}

/* =========================================================
   Dots
   ========================================================= */

.hero-carousel__dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 10;

  display: flex;
  gap: 10px;

  transform: translateX(-50%);
}

.hero-carousel__dot {
  width: 12px;
  height: 12px;
  padding: 0;

  border: 2px solid rgba(240, 240, 240, 0.9);
  border-radius: 50%;

  background: rgba(240, 240, 240, 0.35);
  cursor: pointer;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.hero-carousel__dot.is-active {
  background: var(--scheme-blue-color);
  transform: scale(1.25);
}

.hero-carousel__dot:hover {
  background: var(--scheme-white-color);
}

/* =========================================================
   Hero buttons
   ========================================================= */

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;

  margin-top: 28px;
}

.uled-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 50px;
  padding: 15px 25px;

  font-family: var(--default-font);
  font-size: 14px;
  line-height: 1;
  font-weight: 800;

  border-radius: 999px;

  cursor: pointer;
  user-select: none;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.uled-btn--primary {
  color: var(--scheme-white-color);
  background: var(--scheme-blue-color);
  border: 2px solid var(--scheme-blue-color);
  box-shadow: 0 12px 30px rgba(0, 113, 235, 0.28);
}

.uled-btn--primary:hover {
  color: var(--scheme-white-color);
  background: #005fc7;
  border-color: #005fc7;
  box-shadow: 0 16px 38px rgba(0, 113, 235, 0.38);
  transform: translateY(-2px);
}

.uled-btn--secondary {
  color: var(--scheme-white-color);
  background: var(--scheme-orange-color);
  border: 2px solid var(--scheme-orange-color);
  box-shadow: 0 12px 30px rgba(252, 81, 48, 0.28);
}

.uled-btn--secondary:hover {
  color: var(--scheme-white-color);
  background: #e84221;
  border-color: #e84221;
  box-shadow: 0 16px 38px rgba(252, 81, 48, 0.38);
  transform: translateY(-2px);
}

.uled-btn--ghosted {
  color: #1f2328;
  background: rgba(240, 240, 240, 0.86);
  border: 2px solid rgba(0, 113, 235, 0.35);
  box-shadow: 0 10px 26px rgba(31, 35, 40, 0.08);
  backdrop-filter: blur(8px);
}

.uled-btn--ghosted:hover {
  color: var(--scheme-blue-color);
  background: var(--scheme-white-color);
  border-color: var(--scheme-blue-color);
  box-shadow: 0 14px 34px rgba(0, 113, 235, 0.18);
  transform: translateY(-2px);
}

.uled-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.uled-btn:focus-visible {
  outline: 3px solid rgba(0, 113, 235, 0.35);
  outline-offset: 4px;
}

/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 767px) {
  .hero-carousel__text {
    /*top: 25%;*/
    left: 24px;
    right: 24px;

    margin-top: 20px;

    width: auto;
    max-width: none;

    padding-left: 0;
    padding-right: 0;

    transform: translateY(-50%);
  }

  .hero-carousel__text h1 {
    max-width: none;
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.1;
  }

  .hero-carousel__text h3 {
    font-size: clamp(32px, 11vw, 52px);
    line-height: 0.95;
  }

  .hero-carousel__text h4 {
    max-width: none;
    font-size: clamp(20px, 5vw, 24px);
    line-height: 1.2;
  }

  .hero-carousel__text h5 {
    max-width: none;
    font-size: 16px;
    line-height: 1.35;
  }

  .hero-carousel__text.interactive-top {
    top: 10%;
    left: 24px;
    right: 24px;

    width: auto;
    max-width: none;

    transform: translateY(-50%);
  }

  .hero-carousel__bottom-text {
    left: 24px;
    right: 24px;
    bottom: 68px;

    width: auto;
    max-width: none;

    padding-left: 0;
    padding-right: 0;

    transform: none;

    font-size: 14px;
    line-height: 1.4;
  }

  .hero-carousel__dots {
    bottom: 28px;
  }
}

@media (max-width: 575px) {
  .hero-buttons {
    gap: 10px;
    margin-top: 22px;
  }

  .uled-btn {
    width: 100%;
    min-height: 46px;
    padding: 13px 20px;

    font-size: 12px;
    letter-spacing: 0.035em;
  }
}

/* ==========================================
   Trust block
   ==========================================  */
.uled-why-dark {
  position: relative;
  overflow: clip;
  padding: 100px 0;
  color: var(--scheme-white-color);
  background:
    linear-gradient(
      180deg,
      rgba(7, 17, 31, .68),
      rgba(7, 17, 31, .74)
    ),
    url("/assets/mine.gmg/imgs/main.v8.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.uled-why-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 113, 235, .20), transparent 35%),
    radial-gradient(circle at 85% 35%, rgba(252, 81, 48, .16), transparent 32%);
  pointer-events: none;
}

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

.uled-why-dark__layout {
  display: grid;
  grid-template-columns: .9fr 1.4fr;
  gap: 44px;
  align-items: start;
}

.uled-why-dark__intro {
  position: sticky;
  top: 100px;
}

.uled-why-dark__intro span {
  display: inline-flex;
  margin-bottom: 14px;
  color: #64D2FF;
  font: 700 13px/1 var(--default-font);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.uled-why-dark__intro h2 {
  margin: 0 0 18px;
  color: var(--scheme-white-color);
  font: 800 clamp(34px, 4vw, 58px)/1.02 var(--default-font);
  letter-spacing: -.05em;
}

.uled-why-dark__intro p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font: 500 17px/1.65 var(--default-font);
}

.uled-why-dark__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.uled-why-dark__item {
  min-height: 245px;
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.045));
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.10),
    0 20px 60px rgba(0,0,0,.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.uled-why-dark__item b {
  display: inline-flex;
  margin-bottom: 48px;
  color: #64D2FF;
  font: 800 14px/1 var(--default-font);
}

.uled-why-dark__item h3 {
  margin: 0 0 12px;
  color: var(--scheme-white-color);
  font: 800 24px/1.15 var(--default-font);
  letter-spacing: -.03em;
}



.uled-why-dark__item p {
  margin: 0;
  color: rgba(255,255,255,.70);
  font: 500 15px/1.55 var(--default-font);
}

.uled-why-dark__item:hover {
  box-shadow:
    inset 0 0 0 1px rgba(100,210,255,.28),
    0 24px 70px rgba(0,0,0,.30);
}

@media (max-width: 991px) {
  .uled-why-dark__layout {
    grid-template-columns: 1fr;
  }

  .uled-why-dark__intro {
    position: static;
  }
}

@media (max-width: 575px) {
  .uled-why-dark {
    padding: 64px 0;
  }

  .uled-why-dark__items {
    grid-template-columns: 1fr;
  }

  .uled-why-dark__item {
    min-height: auto;
  }
}

/* =============================
   FAQ
   ============================= */
.uled-faq-light {
  position: relative;
  padding: 100px 0;
  color: #07111f;
  background:
    radial-gradient(circle at 15% 10%, rgba(0, 113, 235, .13), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(252, 81, 48, .09), transparent 30%),
    #f5f8fc;
  overflow: clip;
}

.uled-faq-light::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0,113,235,.055) 0 1px, transparent 1px 100%);
  background-size: 46px 46px;
  opacity: .65;
  pointer-events: none;
}

.uled-faq-light .container {
  position: relative;
  z-index: 1;
}

.uled-faq-light__layout {
  display: grid;
  grid-template-columns: .85fr 1.45fr;
  gap: 44px;
  align-items: start;
}

.uled-faq-light__intro {
  position: sticky;
  top: 100px;
}

.uled-faq-light__intro span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--scheme-blue-color);
  font: 700 13px/1 var(--default-font);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.uled-faq-light__intro h2 {
  margin: 0 0 18px;
  color: #07111f;
  font: 800 clamp(34px, 4vw, 58px)/1.02 var(--default-font);
  letter-spacing: -.05em;
}

.uled-faq-light__intro p {
  margin: 0;
  color: rgba(7,17,31,.68);
  font: 500 17px/1.65 var(--default-font);
}

.uled-faq-light__list {
  display: grid;
  gap: 14px;
}

.uled-faq-light__item {
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.82));
  box-shadow:
    inset 0 0 0 1px rgba(0,113,235,.08),
    0 18px 48px rgba(7,17,31,.08);
  overflow: hidden;
}

.uled-faq-light__item summary {
  cursor: pointer;
  position: relative;
  padding: 24px 68px 24px 26px;
  color: #07111f;
  font: 800 20px/1.25 var(--default-font);
  letter-spacing: -.02em;
  list-style: none;
}

.uled-faq-light__item summary::-webkit-details-marker {
  display: none;
}

.uled-faq-light__item summary::after {
  content: "+";
  position: absolute;
  right: 26px;
  top: 50%;
  width: 34px;
  height: 34px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(0, 113, 235, .10);
  color: var(--scheme-blue-color);
  display: grid;
  place-items: center;
  font: 800 24px/1 var(--default-font);
}

.uled-faq-light__item[open] summary::after {
  content: "−";
  background: var(--scheme-blue-color);
  color: var(--scheme-white-color);
}

.uled-faq-light__item p {
  margin: 0;
  padding: 0 26px 26px;
  color: rgba(7,17,31,.68);
  font: 500 16px/1.65 var(--default-font);
}

.uled-faq-light__item:hover {
  box-shadow:
    inset 0 0 0 1px rgba(0,113,235,.18),
    0 24px 62px rgba(7,17,31,.11);
}

@media (max-width: 991px) {
  .uled-faq-light__layout {
    grid-template-columns: 1fr;
  }

  .uled-faq-light__intro {
    position: static;
  }
}

@media (max-width: 575px) {
  .uled-faq-light {
    padding: 64px 0;
  }

  .uled-faq-light__item summary {
    padding: 22px 58px 22px 22px;
    font-size: 18px;
  }

  .uled-faq-light__item p {
    padding: 0 22px 22px;
  }
}

.uled-faq-dark {
  position: relative;
  overflow: clip;
  padding: 100px 0;
  color: var(--scheme-white-color);
  background:
    linear-gradient(
      180deg,
      rgba(7, 17, 31, .50),
      rgba(7, 17, 31, .60)
    ),
    url("/assets/mine.gmg/imgs/main.v9.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.uled-faq-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,.06) 0 1px, transparent 1px 100%);
  background-size: 46px 46px;
  opacity: .18;
  pointer-events: none;
}

.uled-faq-dark .container {
  position: relative;
  z-index: 1;
}

.uled-faq-dark__layout {
  display: grid;
  grid-template-columns: .85fr 1.45fr;
  gap: 44px;
  align-items: start;
}

.uled-faq-dark__intro {
  position: sticky;
  top: 100px;
}

.uled-faq-dark__intro span {
  display: inline-flex;
  margin-bottom: 14px;
  color: #64D2FF;
  font: 700 13px/1 var(--default-font);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.uled-faq-dark__intro h2 {
  margin: 0 0 18px;
  color: var(--scheme-white-color);
  font: 800 clamp(34px, 4vw, 58px)/1.02 var(--default-font);
  letter-spacing: -.05em;
}

.uled-faq-dark__intro p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font: 500 17px/1.65 var(--default-font);
}

.uled-faq-dark__list {
  display: grid;
  gap: 14px;
}

.uled-faq-dark__item {
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.045));
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.10),
    0 20px 60px rgba(0,0,0,.20);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}

.uled-faq-dark__item summary {
  cursor: pointer;
  position: relative;
  padding: 24px 68px 24px 26px;
  color: var(--scheme-white-color);
  font: 800 20px/1.25 var(--default-font);
  letter-spacing: -.02em;
  list-style: none;
}

.uled-faq-dark__item summary::-webkit-details-marker {
  display: none;
}

.uled-faq-dark__item summary::after {
  content: "+";
  position: absolute;
  right: 26px;
  top: 50%;
  width: 34px;
  height: 34px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(100, 210, 255, .14);
  color: #64D2FF;
  display: grid;
  place-items: center;
  font: 800 24px/1 var(--default-font);
}

.uled-faq-dark__item[open] summary::after {
  content: "−";
  background: var(--scheme-blue-color);
  color: var(--scheme-white-color);
}

.uled-faq-dark__item p {
  margin: 0;
  padding: 0 26px 26px;
  color: rgba(255,255,255,.72);
  font: 500 16px/1.65 var(--default-font);
}

.uled-faq-dark__item:hover {
  box-shadow:
    inset 0 0 0 1px rgba(100,210,255,.24),
    0 24px 70px rgba(0,0,0,.28);
}

@media (max-width: 991px) {
  .uled-faq-dark__layout {
    grid-template-columns: 1fr;
  }

  .uled-faq-dark__intro {
    position: static;
  }
}

@media (max-width: 575px) {
  .uled-faq-dark {
    padding: 64px 0;
  }

  .uled-faq-dark__item summary {
    padding: 22px 58px 22px 22px;
    font-size: 18px;
  }

  .uled-faq-dark__item p {
    padding: 0 22px 22px;
  }
}

/* ========================
   seo block
   ======================== */
.uled-seo-info-dark {
  position: relative;
  padding: 100px 0;
  color: #fff;
  background:
    radial-gradient(circle at 20% 10%, rgba(0, 113, 235, .12), transparent 32%),
    radial-gradient(circle at 85% 20%, rgba(252, 81, 48, .09), transparent 30%),
    url("/assets/mine.gmg/imgs/main.seo.dark.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: clip;
}

.uled-seo-info-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,.055) 0 1px, transparent 1px 100%);
  background-size: 46px 46px;
  opacity: .20;
  pointer-events: none;
}

.uled-seo-info-dark::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, .28));
  pointer-events: none;
}

.uled-seo-info-dark .container {
  position: relative;
  z-index: 1;
}

.uled-seo-info-dark__panel {
  display: grid;
  grid-template-columns: 1.5fr .65fr;
  gap: 28px;
  align-items: stretch;
  padding: 36px;
  border-radius: 36px;
  background:
    linear-gradient(
      180deg,
      rgba(240, 240, 240, .105),
      rgba(240, 240, 240, .045)
    );
  box-shadow:
    0 28px 80px rgba(0, 0, 0, .26),
    inset 0 0 0 1px rgba(240, 240, 240, .11);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.uled-seo-info-dark__content {
  padding: 12px 10px 12px 8px;
}

.uled-seo-info-dark__eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: #64D2FF;
  font: 700 13px/1 var(--default-font);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.uled-seo-info-dark h2 {
  max-width: 850px;
  margin: 0 0 26px;
  color: #fff;
  font: 800 clamp(32px, 4vw, 56px)/1.04 var(--default-font);
  letter-spacing: -.045em;
}

.uled-seo-info-dark__text {
  display: grid;
  gap: 18px;
}

.uled-seo-info-dark__text p {
  margin: 0;
  color: rgba(240, 240, 240, .72);
  font: 500 17px/1.75 var(--default-font);
}

.uled-seo-info-dark__facts {
  display: grid;
  gap: 14px;
}

.uled-seo-fact-dark {
  position: relative;
  min-height: 128px;
  padding: 24px;
  border-radius: 26px;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      rgba(240, 240, 240, .12),
      rgba(240, 240, 240, .055)
    );
  box-shadow:
    0 18px 52px rgba(0, 0, 0, .18),
    inset 0 0 0 1px rgba(240, 240, 240, .10);
}

.uled-seo-fact-dark::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 20px;
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: #0071EB;
  box-shadow: 0 0 18px rgba(0, 113, 235, .65);
}

.uled-seo-fact-dark::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -42px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(0, 113, 235, .24), transparent 68%);
  pointer-events: none;
}

.uled-seo-fact-dark:nth-child(2)::before,
.uled-seo-fact-dark:nth-child(4)::before {
  background: #FC5130;
  box-shadow: 0 0 18px rgba(252, 81, 48, .58);
}

.uled-seo-fact-dark:nth-child(2)::after,
.uled-seo-fact-dark:nth-child(4)::after {
  background:
    radial-gradient(circle, rgba(252, 81, 48, .22), transparent 68%);
}

.uled-seo-fact-dark strong {
  position: relative;
  z-index: 1;
  display: block;
  margin: 26px 0 10px;
  color: #fff;
  font: 800 clamp(26px, 3vw, 38px)/1 var(--default-font);
  letter-spacing: -.04em;
}

.uled-seo-fact-dark span {
  position: relative;
  z-index: 1;
  display: block;
  color: rgba(240, 240, 240, .68);
  font: 600 14px/1.45 var(--default-font);
}

.uled-seo-fact-dark:hover {
  box-shadow:
    0 24px 70px rgba(0, 0, 0, .26),
    inset 0 0 0 1px rgba(100, 210, 255, .22);
}

@media (max-width: 991px) {
  .uled-seo-info-dark {
    padding: 76px 0;
  }

  .uled-seo-info-dark__panel {
    grid-template-columns: 1fr;
  }

  .uled-seo-info-dark__facts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .uled-seo-info-dark {
    padding: 60px 0;
  }

  .uled-seo-info-dark__panel {
    padding: 22px;
    border-radius: 28px;
  }

  .uled-seo-info-dark__content {
    padding: 0;
  }

  .uled-seo-info-dark__text p {
    font-size: 15px;
  }

  .uled-seo-info-dark__facts {
    grid-template-columns: 1fr;
  }

  .uled-seo-fact-dark {
    min-height: auto;
  }
}

/* ========================
   proccess block
   ======================== */
.uled-process-alt {
  position: relative;
  padding: 100px 0;
  background:
    radial-gradient(circle at 14% 12%, rgba(0, 113, 235, .12), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(252, 81, 48, .08), transparent 30%),
    url("/assets/mine.gmg/imgs/main.v3.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: clip;
}

.uled-process-alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0, 113, 235, .05) 0 1px, transparent 1px 100%);
  background-size: 46px 46px;
  opacity: .55;
  pointer-events: none;
}

.uled-process-alt .container {
  position: relative;
  z-index: 1;
}

.uled-process-alt__layout {
  display: grid;
  grid-template-columns: 1.45fr .85fr;
  gap: 48px;
  align-items: start;
}

.uled-process-alt__intro {
  position: sticky;
  top: 100px;
}

.uled-process-alt__intro span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--scheme-blue-color);
  font: 700 13px/1 var(--default-font);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.uled-process-alt__intro h2 {
  margin: 0 0 18px;
  color: #07111f;
  font: 800 clamp(34px, 4vw, 56px)/1.02 var(--default-font);
  letter-spacing: -.05em;
}

.uled-process-alt__intro p {
  margin: 0;
  color: rgba(7, 17, 31, .68);
  font: 500 17px/1.65 var(--default-font);
}

.uled-process-alt__note {
  margin-top: 28px;
  padding: 22px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(0,113,235,.12), rgba(252,81,48,.08));
  box-shadow:
    inset 0 0 0 1px rgba(0,113,235,.12);
}

.uled-process-alt__note strong {
  display: block;
  margin-bottom: 8px;
  color: #07111f;
  font: 800 24px/1 var(--default-font);
  letter-spacing: -.035em;
}

.uled-process-alt__note span {
  display: block;
  margin: 0;
  color: rgba(7, 17, 31, .68);
  font: 600 14px/1.5 var(--default-font);
  text-transform: none;
  letter-spacing: 0;
}

.uled-process-alt__steps {
  position: relative;
  display: grid;
  gap: 16px;
}

.uled-process-alt__steps::before {
  content: "";
  position: absolute;
  left: 34px;
  top: 34px;
  bottom: 34px;
  width: 2px;
  background:
    linear-gradient(
      180deg,
      rgba(0, 113, 235, .24),
      rgba(252, 81, 48, .24)
    );
  border-radius: 999px;
}

.uled-process-alt-step {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  padding: 24px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(240, 240, 240, .94), rgba(240, 240, 240, .76));
  box-shadow:
    0 18px 48px rgba(7, 17, 31, .08),
    inset 0 0 0 1px rgba(0, 113, 235, .08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.uled-process-alt-step::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 92% 12%, rgba(0, 113, 235, .08), transparent 28%);
  pointer-events: none;
}

.uled-process-alt-step:nth-child(even)::after {
  background:
    radial-gradient(circle at 92% 12%, rgba(252, 81, 48, .08), transparent 28%);
}

.uled-process-alt-step__num {
  position: relative;
  z-index: 2;
  width: 68px;
  height: 68px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  color: var(--scheme-blue-color);
  background:
    linear-gradient(180deg, rgba(0, 113, 235, .12), rgba(0, 113, 235, .06));
  box-shadow:
    inset 0 0 0 1px rgba(0, 113, 235, .14),
    0 12px 30px rgba(0, 113, 235, .10);
  font: 800 18px/1 var(--default-font);
  letter-spacing: -.03em;
}

.uled-process-alt-step:nth-child(even) .uled-process-alt-step__num {
  color: var(--scheme-orange-color);
  background:
    linear-gradient(180deg, rgba(252, 81, 48, .12), rgba(252, 81, 48, .06));
  box-shadow:
    inset 0 0 0 1px rgba(252, 81, 48, .14),
    0 12px 30px rgba(252, 81, 48, .10);
}

.uled-process-alt-step__content {
  position: relative;
  z-index: 2;
  padding-top: 4px;
}

.uled-process-alt-step__content h3 {
  margin: 0 0 10px;
  color: #07111f;
  font: 800 24px/1.15 var(--default-font);
  letter-spacing: -.03em;
}

.uled-process-alt-step__content p {
  margin: 0;
  color: rgba(7, 17, 31, .68);
  font: 500 15px/1.6 var(--default-font);
}

.uled-process-alt-step:hover {
  box-shadow:
    0 24px 62px rgba(7, 17, 31, .11),
    inset 0 0 0 1px rgba(0, 113, 235, .16);
}

@media (max-width: 991px) {
  .uled-process-alt {
    padding: 76px 0;
  }

  .uled-process-alt__layout {
    grid-template-columns: 1fr;
  }

  .uled-process-alt__intro {
    position: static;
    order: -1;
  }
}

@media (max-width: 575px) {
  .uled-process-alt {
    padding: 60px 0;
  }

  .uled-process-alt__layout {
    gap: 32px;
  }

  .uled-process-alt__intro {
    padding: 26px 22px;
    border-radius: 26px;
  }

  .uled-process-alt__steps::before {
    left: 27px;
  }

  .uled-process-alt-step {
    grid-template-columns: 54px 1fr;
    gap: 16px;
    padding: 20px;
    border-radius: 24px;
  }

  .uled-process-alt-step__num {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    font-size: 15px;
  }

  .uled-process-alt-step__content h3 {
    font-size: 20px;
  }

  .uled-process-alt-step__content p {
    font-size: 14px;
  }
}

/* ========================
   solutions and last projects block
   ======================== */
.last-bento {
  padding: 90px 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(0, 113, 235, .12), transparent 32%),
    radial-gradient(circle at 85% 20%, rgba(252, 81, 48, .09), transparent 30%),
    url("/assets/mine.gmg/imgs/main.lastprojects.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: clip;
}

.solutions-bento {
  padding: 90px 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(0, 113, 235, .12), transparent 32%),
    radial-gradient(circle at 85% 20%, rgba(252, 81, 48, .09), transparent 30%),
    url("/assets/mine.gmg/imgs/main.solutions.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: clip;
}

@media (max-width: 991px) {
  .last-bento,
  .solutions-bento {
    padding: 70px 0;
  }
}

@media (max-width: 575px) {
  .last-bento,
  .solutions-bento  {
    padding: 56px 0;
  }
}


/* bento.css */

.media-showcase {
  padding: /* clamp(70px, 9vw, 130px) */ 0;
}

.media-bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(70px, 7vw, 118px);
  grid-auto-flow: dense;
  gap: 0;

  width: 100%;
  overflow: hidden;
  background: #05070a;
}

.media-item {
  position: relative;
  display: block;
  overflow: hidden;

  padding: 0;
  border: 0;
  border-radius: 0;

  cursor: pointer;
  background: #05070a;

  outline: 1px solid rgba(240, 240, 240, 0.08);
  outline-offset: -1px;

  grid-column: span 3;
  grid-row: span 3;
}

.media-item.is-landscape {
  grid-column: span 6;
  grid-row: span 3;
}

.media-item.is-portrait {
  grid-column: span 3;
  grid-row: span 5;
}

.media-item.is-square {
  grid-column: span 3;
  grid-row: span 3;
}

.media-item.is-ultrawide {
  grid-column: span 8;
  grid-row: span 3;
}

.media-item.is-hero {
  grid-column: span 6;
  grid-row: span 5;
}

.media-item img,
.media-item video {
  width: 100%;
  height: 100%;
  display: block;

  object-fit: cover;
  object-position: center;

  transform: scale(1.001);
  filter: saturate(.96) contrast(1.02) brightness(.96);

  transition:
    transform .75s cubic-bezier(.16, 1, .3, 1),
    filter .75s cubic-bezier(.16, 1, .3, 1);
}

.media-item:hover img,
.media-item:hover video {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.05) brightness(1.04);
}

.media-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;

  background:
    radial-gradient(
      circle at var(--x, 50%) var(--y, 50%),
      rgba(0, 113, 235, 0.22),
      rgba(0, 113, 235, 0) 34%
    ),
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.30),
      rgba(0, 0, 0, 0) 55%
    );

  opacity: 0;
  pointer-events: none;
  transition: opacity .45s ease;
}

.media-item:hover::before {
  opacity: 1;
}

/* Lightbox */

.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: grid;
  place-items: center;

  padding: clamp(16px, 4vw, 56px);

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(0, 113, 235, 0.18),
      transparent 36%
    ),
    rgba(2, 4, 8, 0.9);

  backdrop-filter: blur(24px);

  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}

.media-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.media-lightbox__stage {
  display: flex;
  align-items: center;
  justify-content: center;

  max-width: 94vw;
  max-height: 84vh;

  background: transparent;

  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.58),
    0 0 80px rgba(0, 113, 235, 0.18);
}

.media-lightbox__stage img,
.media-lightbox__stage video {
  display: block;

  width: auto;
  height: auto;

  max-width: 94vw;
  max-height: 84vh;

  object-fit: contain;
  object-position: center;

  background: var(--scheme-black-color);
}

.media-lightbox__close,
.media-lightbox__nav {
  z-index: 10000;
  border: 1px solid rgba(240, 240, 240, 0.22);
  border-radius: 999px;

  color: var(--scheme-white-color);
  background: rgba(240, 240, 240, 0.08);
  backdrop-filter: blur(14px);

  cursor: pointer;
}

.media-lightbox__close {
  position: fixed;
  top: 24px;
  right: 28px;

  width: 46px;
  height: 46px;

  font-size: 30px;
  line-height: 1;
}

.media-lightbox__nav {
  position: fixed;
  top: 50%;

  width: 54px;
  height: 54px;

  font-size: 46px;
  line-height: 1;

  transform: translateY(-50%);
  transition:
    background .25s ease,
    transform .25s ease;
}

.media-lightbox__nav:hover {
  background: rgba(240, 240, 240, 0.16);
  transform: translateY(-50%) scale(1.06);
}

.media-lightbox__prev {
  left: 28px;
}

.media-lightbox__next {
  right: 28px;
}

.media-showcase__title {
  padding: 50px 0 20px;
}

/* Mobile */

@media (max-width: 900px) {
  .media-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 160px;
  }

  .media-item,
  .media-item.is-landscape,
  .media-item.is-portrait,
  .media-item.is-square,
  .media-item.is-ultrawide,
  .media-item.is-hero {
    grid-column: span 1;
    grid-row: span 2;
  }

  .media-item.is-landscape,
  .media-item.is-ultrawide,
  .media-item.is-hero {
    grid-column: span 2;
    grid-row: span 2;
  }

  .media-item.is-portrait {
    grid-column: span 1;
    grid-row: span 3;
  }

  .media-lightbox__stage,
  .media-lightbox__stage img,
  .media-lightbox__stage video {
    max-width: 94vw;
    max-height: 80vh;
  }

  .media-lightbox__close {
    top: 16px;
    right: 16px;
  }

  .media-lightbox__nav {
    width: 44px;
    height: 44px;
    font-size: 36px;
  }

  .media-lightbox__prev {
    left: 12px;
  }

  .media-lightbox__next {
    right: 12px;
  }
}

.led-bento {
  padding: 90px 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(0, 113, 235, .12), transparent 32%),
    radial-gradient(circle at 85% 20%, rgba(252, 81, 48, .09), transparent 30%),
    #f5f8fc;
}

.led-bento__head {
  max-width: 760px;
  margin-bottom: 34px;
}

.led-bento__eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--scheme-blue-color);
  font: 700 13px/1 var(--default-font);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.led-bento__head h2 {
  margin: 0 0 14px;
  color: #07111f;
  font: 800 clamp(32px, 4vw, 54px)/1.05 var(--default-font);
  letter-spacing: -.04em;
}

.led-bento__head p,
.section-head p {
  margin: 0;
  color: rgba(7, 17, 31, .72);
  font: 400 17px/1.65 var(--default-font);
}

.led-bento__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 240px;
  gap: 18px;
}

.led-bento-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 30px;
  text-decoration: none;
  background: #07111f;
  isolation: isolate;
  box-shadow:
    0 18px 46px rgba(7, 17, 31, .12),
    inset 0 0 0 1px rgba(240, 240, 240, .08);
  transform: translateZ(0);
  transition:
    transform .35s ease,
    box-shadow .35s ease;
}

.led-bento-card--large {
  grid-column: span 2;
  grid-row: span 2;
}

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

.led-bento-card__poster,
.led-bento-card__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.led-bento-card__poster {
  z-index: 1;
  transition: transform .7s ease;
}

.led-bento-card__video {
  z-index: 2;
  display: none;
  pointer-events: none;
}

.led-bento-card.is-video-active .led-bento-card__video {
  display: block;
}

.led-bento-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .12) 62%),
    linear-gradient(135deg, rgba(0, 113, 235, .35), transparent 45%);
  pointer-events: none;
}

.led-bento-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(240, 240, 240, .12);
  pointer-events: none;
}

.led-bento-card__content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 5;
  color: var(--scheme-white-color);
}

.led-bento-card__content span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: rgba(240, 240, 240, .84);
  font: 700 11px/1 var(--default-font);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.led-bento-card__content span::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent, var(--scheme-blue-color));
  box-shadow: 0 0 16px var(--accent, var(--scheme-blue-color));
}

.led-bento-card__content h3 {
  margin: 0 0 8px;
  color: var(--scheme-white-color);
  font: 800 clamp(22px, 2vw, 34px)/1.08 var(--default-font);
  letter-spacing: -.03em;
  text-shadow: 0 6px 24px rgba(0, 0, 0, .35);
}

.led-bento-card__content p {
  max-width: 440px;
  margin: 0;
  color: rgba(240, 240, 240, .84);
  font: 500 14px/1.45 var(--default-font);
}

.led-bento-card:hover {
  transform: translateY(-7px);
  box-shadow:
    0 28px 70px rgba(7, 17, 31, .22),
    0 0 0 1px rgba(240, 240, 240, .12),
    0 0 45px color-mix(in srgb, var(--accent, var(--scheme-blue-color)) 38%, transparent);
}

.led-bento-card:hover .led-bento-card__poster,
.led-bento-card.is-video-active .led-bento-card__video {
  transform: scale(1.065);
}

@media (max-width: 991px) {
  .led-bento {
    padding: 70px 0;
  }

  .led-bento__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

  .led-bento-card--large {
    grid-column: span 2;
    grid-row: span 1;
  }

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

@media (max-width: 575px) {
  .led-bento {
    padding: 56px 0;
  }

  .led-bento__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
    gap: 14px;
  }

  .led-bento-card,
  .led-bento-card--large,
  .led-bento-card--wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .led-bento-card {
    border-radius: 24px;
  }

  .led-bento-card__content {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
}

/* portfolio.css */

.portfolio-page {
  background: #05070d;
  color: var(--scheme-white-color);
  overflow: hidden;
}

.portfolio-hero {
  position: relative;
  min-height: calc(100svh - var(--header-height, 100px));
  display: flex;
  align-items: center;
  overflow: hidden;
}

.portfolio-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.78),
      rgba(0,0,0,.35) 45%,
      rgba(0,0,0,.2)
    ),
    radial-gradient(
      circle at 20% 40%,
      rgba(0,113,235,.28),
      transparent 38%
    );
}

.portfolio-hero__content {
  position: relative;
  z-index: 2;
  max-width: 920px;
}

.portfolio-kicker {
  color: var(--scheme-white-color);
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.9),
    0 0 18px rgba(0, 113, 235, 0.65);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
  text-align: center;
}

.portfolio-cta h2 {
  text-align: center;
}

.portfolio-hero h1,
.section-head h2,
.portfolio-showreel h2,
.portfolio-map h2,
.portfolio-cta h2 {
  font-weight: 800;
  line-height: .95;
}

.portfolio-hero h1 {
  color: var(--scheme-white-color);
  font-size: clamp(44px, 6vw, 92px);
  max-width: 820px;
  margin-bottom: 24px;
  text-shadow:
    0 4px 18px rgba(0, 0, 0, 0.85),
    0 0 34px rgba(0, 113, 235, 0.35);
}

.portfolio-hero__lead {
  font-size: clamp(18px, 2vw, 26px);
  max-width: 680px;
  color: rgba(240, 240, 240, 0.92);
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.85);
}

.portfolio-stats {
  display: flex;
  gap: 14px;
  margin-top: 42px;
  align-items: stretch;
}

.portfolio-stat {
  width: 210px;
  min-height: 108px;
  padding: 22px 24px;
  border-left: 3px solid var(--scheme-blue-color);
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.48),
    rgba(0, 0, 0, 0.18)
  );
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.35);
}

.portfolio-stat strong {
  display: block;
}

.portfolio-stat-sup {
  color: var(--scheme-white-color);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.9);
}

.portfolio-stat-sub {
  display: block;
  margin-top: 10px;
  color: rgba(240, 240, 240, 0.88);
  font-size: 14px;
  line-height: 1.35;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
}

.portfolio-featured,
.portfolio-feed,
.portfolio-showreel,
.portfolio-map,
.portfolio-cta {
  padding: 90px 0;
}

.portfolio-featured {
  background:
    linear-gradient(
      180deg,
      rgba(245, 248, 252, 0.70),
      rgba(245, 248, 252, 0.70)
    ),
    url("/assets/mine.gmg/imgs/portfolio.featured.bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: clip;
}

.portfolio-feed {
  background:
    radial-gradient(circle at 20% 10%, rgba(0, 113, 235, .12), transparent 32%),
    radial-gradient(circle at 85% 20%, rgba(252, 81, 48, .09), transparent 30%),
    url("/assets/mine.gmg/imgs/main.lastprojects.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: clip;
}

.section-head {
  margin-bottom: 34px;
}

.section-head h2 {
  font-size: clamp(34px, 4vw, 64px);
}

.section-head--row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 18px;
}

.featured-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background: #111;
}

.featured-card--large {
  grid-row: span 2;
  min-height: 680px;
}

.featured-card img,
.portfolio-item img,
.portfolio-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-card::after,
.portfolio-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.82), transparent 65%);
}

.featured-card__content,
.portfolio-item__info {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
}

.featured-card span,
.portfolio-item span {
  color: #57a8ff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
}

.featured-card h3,
.portfolio-item h3 {
  margin: 8px 0 0;
  font-size: 24px;
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.portfolio-filters button {
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: var(--scheme-white-color);
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
}

.portfolio-filters button.is-active,
.portfolio-filters button:hover {
  background: var(--scheme-blue-color);
  border-color: var(--scheme-blue-color);
}

.portfolio-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 0;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.portfolio-item--wide {
  grid-column: span 2;
}

.portfolio-item--tall {
  grid-row: span 2;
}

.featured-card img,
.portfolio-item img,
.portfolio-item video {
  transition: transform .7s ease, filter .7s ease;
}

.featured-card:hover img,
.portfolio-item:hover img,
.portfolio-item:hover video {
  transform: scale(1.06);
  filter: brightness(1.1);
}

.portfolio-item.is-hidden {
  display: none;
}

.portfolio-item__image,
.portfolio-item__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition:
    opacity .28s ease,
    transform .7s ease,
    filter .7s ease;
}

.portfolio-item__image {
  z-index: 0;
  opacity: 1;
}

.portfolio-item__video {
  z-index: 0;
  opacity: 0;
}

.portfolio-item:hover .portfolio-item__image {
  transform: scale(1.045);
  filter: brightness(1.08) saturate(1.04);
}

.portfolio-item:hover .portfolio-item__video {
  opacity: 1;
  transform: scale(1.045);
  filter: brightness(1.08) saturate(1.04);
}

.showreel-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.portfolio-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  background: var(--scheme-blue-color);
  color: var(--scheme-white-color);
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
}

.portfolio-btn--ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,.28);
}

.portfolio-cta {
  position: relative;
  overflow: clip;
  padding: 100px 0;
  color: var(--scheme-white-color);
  background:
    linear-gradient(
      180deg,
      rgba(7, 17, 31, .68),
      rgba(7, 17, 31, .74)
    ),
    url("/assets/mine.gmg/imgs/main.v8.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.portfolio-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
  pointer-events: none;
}

.portfolio-cta .container {
  position: relative;
  z-index: 2;
  max-width: 980px;
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.13), rgba(255,255,255,.045));
  box-shadow:
    0 24px 80px rgba(0,0,0,.38),
    inset 0 1px 0 rgba(255,255,255,.18);
  backdrop-filter: blur(18px);
}

.portfolio-cta h2 {
  max-width: 780px;
  margin: 0 auto 18px;
  color: var(--scheme-white-color);
  font-size: clamp(34px, 4.6vw, 68px);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -0.04em;
  text-shadow: 0 4px 22px rgba(0,0,0,.45);
}

.portfolio-cta p {
  max-width: 660px;
  margin: 0 auto;
  color: rgba(255,255,255,.78);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.6;
}

.portfolio-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.portfolio-cta .portfolio-btn {
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--scheme-blue-color), #58aaff);
  color: var(--scheme-white-color);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 14px 36px rgba(0,113,235,.34);
}

.portfolio-cta .portfolio-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(0,113,235,.45);
}

.portfolio-cta .portfolio-btn--ghost {
  background: rgba(255,255,255,.08);
  color: var(--scheme-white-color);
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: none;
}

.portfolio-cta .portfolio-btn--ghost:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.45);
}

@media (max-width: 991px) {
  .section-head--row,
  .showreel-card {
    display: block;
  }

  .portfolio-filters {
    margin-top: 22px;
  }

  .featured-grid,
  .portfolio-bento {
    grid-template-columns: 1fr;
  }

  .featured-card--large,
  .portfolio-item--wide,
  .portfolio-item--tall {
    grid-column: auto;
    grid-row: auto;
  }

  .featured-card,
  .featured-card--large,
  .portfolio-item {
    min-height: 360px;
  }
}

/* Featured projects */
.featured-grid--5 {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  grid-template-rows: 340px 340px;
  gap: 18px;
}

.featured-grid--5 .featured-card--hero {
  grid-row: span 2;
}

.featured-card {
  position: relative;
  overflow: hidden;
  background: #080b12;
  cursor: pointer;
}

.featured-card video,
.featured-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .8s ease, filter .8s ease;
}

.featured-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 35% 80%, rgba(0, 113, 235, .28), transparent 34%),
    linear-gradient(0deg, rgba(0,0,0,.82), rgba(0,0,0,.08) 62%);
}

.featured-card:hover video,
.featured-card:hover img {
  transform: scale(1.055);
  filter: brightness(1.12) saturate(1.08);
}

.featured-card__content {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 2;
  pointer-events: none;
}

.featured-card__content span {
  display: inline-block;
  margin-bottom: 8px;
  color: #57a8ff;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.featured-card__content h3 {
  margin: 0;
  max-width: 620px;
  color: var(--scheme-white-color);
  font-size: clamp(20px, 1.8vw, 34px);
  line-height: 1.05;
  font-weight: 800;
}

.featured-card--hero .featured-card__content h3 {
  font-size: clamp(28px, 3vw, 48px);
}

.featured-card__content p {
  max-width: 560px;
  margin: 14px 0 0;
  color: rgba(255,255,255,.76);
  font-size: 16px;
  line-height: 1.45;
}

.featured-card__play {
  position: absolute;
  z-index: 3;
  top: 22px;
  right: 22px;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  background: rgba(0,0,0,.36);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.featured-card__play::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 16px;
  border-left: 14px solid var(--scheme-white-color);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

/* Video modal */
.portfolio-video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0,0,0,.86);
  backdrop-filter: blur(14px);
}

.portfolio-video-modal.is-active {
  display: flex;
}

.portfolio-video-modal__inner {
  width: min(1200px, 96vw);
  max-height: 88vh;
}

.portfolio-video-modal__player {
  width: 100%;
  max-height: 88vh;
  display: block;
  background: var(--scheme-black-color);
}

.portfolio-video-modal__close,
.portfolio-video-modal__nav {
  position: fixed;
  z-index: 10000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.06));
  color: var(--scheme-white-color);
  backdrop-filter: blur(16px);
  box-shadow:
    0 18px 45px rgba(0,0,0,.38),
    inset 0 1px 0 rgba(255,255,255,.18);
  cursor: pointer;
  transition:
    transform .25s ease,
    background .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

.portfolio-video-modal__close {
  top: 22px;
  right: 26px;
  width: 52px;
  height: 52px;
  font-size: 0;
}

.portfolio-video-modal__nav {
  top: 50%;
  width: 58px;
  height: 58px;
  font-size: 0;
  transform: translateY(-50%);
}

.portfolio-video-modal__nav--prev {
  left: 28px;
}

.portfolio-video-modal__nav--next {
  right: 28px;
}

.portfolio-video-modal__nav::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-top: 3px solid var(--scheme-white-color);
  border-left: 3px solid var(--scheme-white-color);
}

.portfolio-video-modal__nav--prev::before {
  transform: rotate(-45deg);
  margin-left: 4px;
}

.portfolio-video-modal__nav--next::before {
  transform: rotate(135deg);
  margin-right: 4px;
}

.portfolio-video-modal__close::before,
.portfolio-video-modal__close::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 3px;
  border-radius: 999px;
  background: var(--scheme-white-color);
}

.portfolio-video-modal__close::before {
  transform: rotate(45deg);
}

.portfolio-video-modal__close::after {
  transform: rotate(-45deg);
}

.portfolio-video-modal__close:hover,
.portfolio-video-modal__nav:hover {
  background:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,.32), transparent 34%),
    linear-gradient(180deg, rgba(0,113,235,.95), rgba(0,75,180,.88));
  border-color: rgba(87,168,255,.85);
  box-shadow:
    0 20px 55px rgba(0,113,235,.42),
    inset 0 1px 0 rgba(255,255,255,.24);
}

.portfolio-video-modal__close:hover {
  transform: scale(1.06);
}

.portfolio-video-modal__nav:hover {
  transform: translateY(-50%) scale(1.06);
}

.portfolio-video-modal__close:active {
  transform: scale(.96);
}

.portfolio-video-modal__nav:active {
  transform: translateY(-50%) scale(.96);
}

@media (max-width: 575px) {
  .portfolio-video-modal__close {
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
  }

  .portfolio-video-modal__close::before,
  .portfolio-video-modal__close::after {
    width: 17px;
    height: 2.5px;
  }

  .portfolio-video-modal__nav {
    width: 46px;
    height: 46px;
  }

  .portfolio-video-modal__nav::before {
    width: 12px;
    height: 12px;
    border-top-width: 2.5px;
    border-left-width: 2.5px;
  }

  .portfolio-video-modal__nav--prev {
    left: 10px;
  }

  .portfolio-video-modal__nav--next {
    right: 10px;
  }
}

/* Portfolio gallery filters */
.section-head--row {
  display: block;
}

.portfolio-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-top: 22px;
  margin-bottom: 28px;
}

.portfolio-filters__main {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  min-width: 0;
  overflow: hidden;
}

.portfolio-filters button {
  flex: 0 0 auto;
  white-space: nowrap;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(0, 113, 235, .22);
  border-radius: 999px;
  background: rgba(0, 113, 235, .06);
  color: #1f2328;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.portfolio-filters button:hover {
  background: rgba(0, 113, 235, .12);
  border-color: rgba(0, 113, 235, .45);
  color: var(--scheme-blue-color);
}

.portfolio-filters button.is-active {
  background: var(--scheme-blue-color);
  border-color: var(--scheme-blue-color);
  color: var(--scheme-white-color);
}

.portfolio-filters-more {
  position: relative;
  flex: 0 0 auto;
}

.portfolio-filters-more.is-hidden {
  display: none;
}

.portfolio-filters-more:hover .portfolio-filters-more__menu {
  display: grid;
  gap: 6px;
}

.portfolio-filters-more:hover .portfolio-filters-more__button {
  background: rgba(0, 113, 235, .12);
  border-color: rgba(0, 113, 235, .45);
  color: var(--scheme-blue-color);
}

.portfolio-filters-more__button::after {
  content: "▾";
  margin-left: 7px;
  font-size: 11px;
}

.portfolio-filters-more__menu {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 50;
  display: none;
  min-width: 240px;
  padding: 12px 8px 8px 8px;
  border: 1px solid rgba(0, 113, 235, .18);
  border-radius: 18px;
  background: var(--scheme-white-color);
  box-shadow: 0 18px 45px rgba(15, 23, 42, .16);
}

.portfolio-filters-more.is-open .portfolio-filters-more__menu {
  display: grid;
  gap: 6px;
  z-index: 100;
}

.portfolio-filters-more__menu button {
  width: 100%;
  justify-content: flex-start;
  text-align: left;
  border-radius: 12px;
}


/* Portfolio gallery */
.portfolio-item {
  position: relative;
  overflow: hidden;
  background: #080b12;
  cursor: pointer;
}

.portfolio-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      0deg,
      rgba(0, 0, 0, .82) 0%,
      rgba(0, 0, 0, .55) 28%,
      rgba(0, 0, 0, .12) 62%,
      rgba(0, 0, 0, 0) 100%
    );
}

.portfolio-item__info {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  color: var(--scheme-white-color);
  pointer-events: none;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .65);
}

.portfolio-item__info span {
  display: inline-block;
  margin-bottom: 7px;
  color: rgba(240, 240, 240, .78);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.portfolio-item__info h3 {
  margin: 0;
  color: var(--scheme-white-color);
  font-size: clamp(18px, 1.6vw, 26px);
  line-height: 1.08;
  font-weight: 800;
}

.portfolio-item.is-hidden {
  display: none;
}

.portfolio-loadmore-wrap {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.portfolio-loadmore, 
.portfolio-loadmore-bluerow {
  min-height: 48px;
  padding: 0 28px;
  margin: 0 14px;
  border: 1px solid;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}

.portfolio-loadmore:hover, 
.portfolio-loadmore-bluerow:hover {
  transform: translateY(-1px);
}

.portfolio-loadmore {
  background: var(--scheme-blue-color);
  border-color: var(--scheme-blue-color);
  color: var(--scheme-white-color);
}

.portfolio-loadmore:hover {
  border-color: var(--scheme-blue-color);
  background: rgba(0, 113, 235, .06);
  color: var(--scheme-blue-color);
}

.portfolio-loadmore-bluerow {
  background: var(--scheme-orange-color);
  border-color: var(--scheme-orange-color);
  color: var(--scheme-white-color);
}

.portfolio-loadmore-bluerow:hover {
  border-color: var(--scheme-orange-color);
  background: rgba(252, 81, 48, .06);
  color: var(--scheme-orange-color);
}

.portfolio-loadmore.is-hidden, 
.portfolio-loadmore-bluerow.is-hidden {
  display: none;
}

.portfolio-loadmore-wrap.is-hidden {
  display: none;
}

.js-portfolio-loadmore.is-hidden {
  display: none;
}

/* Responsive */
@media (max-width: 991px) {
  .featured-grid--5 {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .featured-grid--5 .featured-card,
  .featured-grid--5 .featured-card--hero {
    min-height: 380px;
    grid-row: auto;
  }
}

@media (max-width: 575px) {
  .featured-grid--5 .featured-card,
  .featured-grid--5 .featured-card--hero {
    min-height: 320px;
  }

  .featured-card__content {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .featured-card__content p {
    display: none;
  }

  .featured-card__play {
    width: 46px;
    height: 46px;
    top: 18px;
    right: 18px;
  }

  .featured-card__play::before {
    left: 19px;
    top: 14px;
  }
}

/* ================================
#  clients block
   ================================ */
.uled-clients {
  padding: 100px 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(0, 113, 235, .12), transparent 32%),
    radial-gradient(circle at 85% 20%, rgba(252, 81, 48, .09), transparent 30%),
    url("/assets/mine.gmg/imgs/main.clients.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: clip;
}

.uled-clients::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0, 113, 235, .045) 0 1px, transparent 1px 100%);
  background-size: 46px 46px;
  opacity: .55;
  pointer-events: none;
}

.uled-clients .container {
  position: relative;
  z-index: 1;
}

.uled-clients__head {
  max-width: 780px;
  margin-bottom: 38px;
}

.uled-clients__eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: #0071EB;
  font: 700 13px/1 var(--default-font);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.uled-clients__head h2 {
  margin: 0 0 18px;
  color: #07111f;
  font: 800 clamp(34px, 4vw, 58px)/1.02 var(--default-font);
  letter-spacing: -.05em;
}

.uled-clients__head p {
  margin: 0;
  color: rgba(7, 17, 31, .68);
  font: 500 17px/1.65 var(--default-font);
}

.uled-clients__slider {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.uled-clients__slider::-webkit-scrollbar {
  display: none;
}

.uled-clients__slider.is-dragging {
  cursor: grabbing;
}

.uled-clients__slider::before,
.uled-clients__slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 4;
  pointer-events: none;
}

.uled-clients__slider::before {
  left: 0;
  background: linear-gradient(90deg, rgba(245, 248, 252, .98), transparent);
}

.uled-clients__slider::after {
  right: 0;
  background: linear-gradient(270deg, rgba(245, 248, 252, .98), transparent);
}

.uled-clients__track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 0 max(24px, calc((100vw - 1320px) / 2)) 8px;
  user-select: none;
}

.uled-client-logo {
  flex: 0 0 220px;
  height: 120px;
  display: grid;
  place-items: center;
  padding: 26px;
  border-radius: 28px;
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(240, 240, 240, .96), rgba(240, 240, 240, .76));
  box-shadow:
    0 16px 42px rgba(7, 17, 31, .08),
    inset 0 0 0 1px rgba(0, 113, 235, .08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.uled-client-logo img {
  max-width: 100%;
  max-height: 58px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .62;
  transition:
    filter .25s ease,
    opacity .25s ease,
    transform .25s ease;
}

.uled-client-logo:hover {
  box-shadow:
    0 22px 56px rgba(7, 17, 31, .11),
    inset 0 0 0 1px rgba(0, 113, 235, .16);
}

.uled-client-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.04);
}

@media (max-width: 991px) {
  .uled-clients {
    padding: 76px 0;
  }

  .uled-client-logo {
    flex-basis: 190px;
    height: 106px;
    padding: 22px;
  }

  .uled-client-logo img {
    max-height: 50px;
  }
}

@media (max-width: 575px) {
  .uled-clients {
    padding: 60px 0;
  }

  .uled-clients__track {
    gap: 14px;
    padding-inline: 18px;
  }

  .uled-client-logo {
    flex-basis: 165px;
    height: 96px;
    border-radius: 22px;
    padding: 20px;
  }

  .uled-client-logo img {
    max-height: 44px;
  }

  .uled-clients__slider::before,
  .uled-clients__slider::after {
    width: 42px;
  }
}
.clients-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 34px;
  flex-wrap: wrap;
}

/*--------------------------------------------------------------
# Dottom space img
--------------------------------------------------------------*/
.bottom-space-img {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.bottom-space-img img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}


/* ====================================================================
#  Contacts page
   ==================================================================== */
.uled-contact-page {
  --uled-muted: #667085;
  --uled-line: color-mix(in srgb, var(--scheme-blue-dark-color), transparent 10%);

  color: var(--scheme-black-color);
  background: var(--scheme-white-color);
}


/* =========================
   HERO
========================= */

.uled-contact-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 80px;
  background:
    linear-gradient(
      90deg,
      rgba(3, 18, 38, 0.94) 0%,
      rgba(3, 18, 38, 0.84) 38%,
      rgba(3, 18, 38, 0.62) 68%,
      rgba(3, 18, 38, 0.48) 100%
    ),
    radial-gradient(circle at 16% 20%, rgba(0, 113, 235, 0.34), transparent 34%),
    radial-gradient(circle at 84% 24%, rgba(252, 81, 48, 0.22), transparent 30%),
    url("/assets/mine.gmg/imgs/contacts.hero.bg.jpg") center center / cover no-repeat;
}

.uled-contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(0,0,0,0.22));
  pointer-events: none;
}

.uled-contact-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -45% -10%;
  height: 280px;
  background: radial-gradient(circle, rgba(252,81,48,0.12), transparent 64%);
  filter: blur(30px);
  pointer-events: none;
}

.uled-contact-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 48px;
  align-items: center;
}

.uled-contact-hero__content {
  min-width: 0;
}

.uled-contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.88);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.uled-contact-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--scheme-orange-color);
  box-shadow: 0 0 0 6px rgba(252, 81, 48, 0.18);
}

.uled-contact-hero h1 {
  max-width: 820px;
  margin: 0;
  color: rgba(255,255,255,0.88);
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 800;
}

.uled-contact-hero p {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255,255,255,0.78);
  font-size: 18px;
  line-height: 1.7;
}

.uled-contact-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}


/* HERO IMAGE PANEL */

.uled-contact-hero__panel {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 10px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.46), rgba(255,255,255,0.08)),
    radial-gradient(circle at 35% 20%, rgba(252,81,48,0.34), transparent 38%);
  box-shadow: 0 28px 80px rgba(0,0,0,0.32);
}

.uled-contact-hero__panel::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 190px;
  height: 190px;
  right: -42px;
  top: -42px;
  border-radius: 50%;
  background: rgba(252, 81, 48, 0.24);
  filter: blur(14px);
  pointer-events: none;
}

.uled-contact-hero__panel::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 220px;
  height: 220px;
  left: -80px;
  bottom: -90px;
  border-radius: 50%;
  background: rgba(0, 113, 235, 0.26);
  filter: blur(18px);
  pointer-events: none;
}

.uled-contact-hero__image {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 410px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    rgba(255,255,255,0.08);
}

.uled-contact-hero__image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 80% 16%, rgba(252,81,48,0.22), transparent 34%),
    linear-gradient(
      180deg,
      rgba(3, 18, 38, 0.02) 0%,
      rgba(3, 18, 38, 0.18) 45%,
      rgba(3, 18, 38, 0.84) 100%
    );
  pointer-events: none;
}

.uled-contact-hero__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
  object-position: center;
}

.uled-contact-hero__badge {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 3;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 24px;
  background: rgba(3, 18, 38, 0.66);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: var(--scheme-white-color);
  box-shadow: 0 18px 50px rgba(0,0,0,0.24);
}

.uled-contact-hero__badge span {
  display: block;
  margin: 0;
  color: rgba(255,255,255,0.68);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.uled-contact-hero__badge strong {
  display: block;
  margin-top: 8px;
  color: var(--scheme-white-color);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.uled-contact-hero__badge p {
  margin: 14px 0 0;
  color: rgba(255,255,255,0.76);
  font-size: 14px;
  line-height: 1.6;
}


/* =========================
   MAIN
========================= */

.uled-contact-main {
  padding: 90px 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(0, 113, 235, .12), transparent 32%),
    radial-gradient(circle at 85% 20%, rgba(252, 81, 48, .09), transparent 30%),
    url("/assets/mine.gmg/imgs/contacts.form.bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: clip;
}


/* =========================
   CONTACT CARDS
========================= */

.uled-contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: 100%;
  margin-bottom: 42px;
}

.uled-contact-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 230px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  border: 1px solid var(--uled-line);
  border-radius: 30px;
  background: var(--scheme-white-color);
  color: var(--scheme-black-color);
  box-shadow: 0 16px 46px rgba(16, 24, 40, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease;
}

.uled-contact-card::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -78px;
  top: -78px;
  border-radius: 50%;
  background: rgba(0, 113, 235, 0.08);
  transition:
    transform 0.25s ease,
    background-color 0.25s ease;
}

.uled-contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 113, 235, 0.26);
  box-shadow: 0 24px 64px rgba(16, 24, 40, 0.12);
}

.uled-contact-card:hover::after {
  transform: scale(1.22);
  background: rgba(252, 81, 48, 0.12);
}

.uled-contact-cards .uled-contact-card:nth-child(2) {
  border-color: rgba(0, 113, 235, 0.26);
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 113, 235, 0.12), transparent 42%),
    radial-gradient(circle at 0% 100%, rgba(252, 81, 48, 0.08), transparent 38%),
    var(--scheme-white-color);
}

.uled-contact-cards .uled-contact-card:nth-child(2)::after {
  background: rgba(252, 81, 48, 0.12);
}

.uled-contact-card__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  border-radius: 20px;
  background: rgba(0, 113, 235, 0.1);
  color: var(--scheme-blue-color);
  font-size: 24px;
}

.uled-contact-cards .uled-contact-card:nth-child(2) .uled-contact-card__icon {
  background: rgba(252, 81, 48, 0.12);
  color: var(--scheme-orange-color);
}

.uled-contact-card__label {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 8px;
  color: var(--uled-muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.uled-contact-card strong {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--scheme-black-color);
  font-size: 19px;
  line-height: 1.35;
  font-weight: 800;
}

.uled-contact-card small {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: auto;
  padding-top: 20px;
  color: var(--uled-muted);
  font-size: 14px;
  line-height: 1.5;
}


/* =========================
   FORM + SIDE INFO
========================= */

.uled-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 24px;
  align-items: start;
}

.uled-contact-form-wrap {
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid var(--uled-line);
  border-radius: 34px;
  background: var(--scheme-white-color);
  box-shadow: 0 20px 60px rgba(16, 24, 40, 0.07);
}

.uled-contact-section-head span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--scheme-blue-color);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.uled-contact-section-head h2 {
  margin: 0;
  color: var(--scheme-black-color);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.uled-contact-section-head p {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--uled-muted);
  font-size: 16px;
  line-height: 1.7;
}

.uled-contact-form {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.uled-contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.uled-contact-form label {
  display: grid;
  gap: 8px;
}

.uled-contact-form label span {
  color: #344054;
  font-size: 14px;
  font-weight: 800;
}

.uled-contact-form input,
.uled-contact-form select,
.uled-contact-form textarea {
  width: 100%;
  border: 1px solid rgba(16, 24, 40, 0.14);
  border-radius: 18px;
  background: #F9FAFB;
  color: var(--scheme-black-color);
  font: inherit;
  font-size: 15px;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.uled-contact-form input,
.uled-contact-form select {
  height: 56px;
  padding: 0 18px;
}

.uled-contact-form textarea {
  min-height: 140px;
  padding: 16px 18px;
  resize: vertical;
}

.uled-contact-form input:focus,
.uled-contact-form select:focus,
.uled-contact-form textarea:focus {
  background: var(--scheme-white-color);
  border-color: rgba(0, 113, 235, 0.62);
  box-shadow: 0 0 0 4px rgba(0, 113, 235, 0.12);
}

.uled-contact-form__note {
  margin: -4px 0 0;
  color: var(--uled-muted);
  font-size: 12px;
  line-height: 1.5;
}

.uled-form-message {
  padding: 18px 20px;
  border-radius: 20px;
  font-size: 14px;
  line-height: 1.55;
}

.uled-form-message strong {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
  font-weight: 800;
}

.uled-form-message span {
  display: block;
}

.uled-form-message--success {
  border: 1px solid rgba(0, 113, 235, 0.18);
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 113, 235, 0.12), transparent 34%),
    #eef6ff;
  color: #06316A;
}

.uled-form-message--success strong {
  color: var(--scheme-blue-color);
}

.uled-form-message--error {
  border: 1px solid rgba(252, 81, 48, 0.22);
  background:
    radial-gradient(circle at 100% 0%, rgba(252, 81, 48, 0.12), transparent 34%),
    #fff3ef;
  color: #7a1f0e;
}

.uled-form-message--error strong {
  color: var(--scheme-orange-color);
}

.uled-form-error {
  display: block;
  margin-top: 2px;
  color: var(--scheme-orange-color);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}


/* SIDE INFO */

.uled-contact-info {
  display: grid;
  gap: 18px;
  border-radius: 34px;
}

.uled-contact-info__block {
  padding: 28px;
  border: 1px solid var(--uled-line);
  border-radius: 28px;
  background: var(--scheme-white-color);
  box-shadow: 0 16px 46px rgba(16, 24, 40, 0.06);
}

.uled-contact-info__block--accent {
  color: var(--scheme-white-color);
  border: none;
  background:
    radial-gradient(circle at 100% 0%, rgba(252,81,48,0.34), transparent 36%),
    linear-gradient(135deg, #061A35 0%, #0071EB 100%);
}

.uled-contact-info__tag {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--scheme-blue-color);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.uled-contact-info__block--accent .uled-contact-info__tag {
  color: rgba(255,255,255,0.76);
}

.uled-contact-info h3 {
  margin: 0;
  color: inherit;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.uled-contact-info p {
  margin: 14px 0 0;
  color: var(--uled-muted);
  font-size: 14px;
  line-height: 1.7;
}

.uled-contact-info__block--accent p {
  color: rgba(255,255,255,0.76);
}


/* =========================
   SHOWROOM DARK SECTION
========================= */

.uled-contact-showroom {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  color: var(--scheme-white-color);
  background:
    linear-gradient(
      90deg,
      rgba(3, 18, 38, 0.50) 0%,
      rgba(3, 18, 38, 0.50) 38%,
      rgba(3, 18, 38, 0.50) 68%,
      rgba(3, 18, 38, 0.50) 100%
    ),
    radial-gradient(circle at 12% 16%, rgba(0, 113, 235, 0.28), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(252, 81, 48, 0.18), transparent 30%),
    url("/assets/mine.gmg/imgs/contacts.map.bg.jpg") center center / cover no-repeat;
}

.uled-contact-showroom::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.65), rgba(0,0,0,0.12));
  pointer-events: none;
}

.uled-contact-showroom::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  left: -140px;
  bottom: -160px;
  border-radius: 50%;
  background: rgba(252, 81, 48, 0.12);
  filter: blur(28px);
  pointer-events: none;
}

.uled-contact-showroom .container {
  position: relative;
  z-index: 1;
}

.uled-contact-showroom__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(34px, 5vw, 64px);
  align-items: center;
}

.uled-contact-showroom__content {
  min-width: 0;
}

.uled-contact-showroom__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.78);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.uled-contact-showroom__eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--scheme-orange-color);
  box-shadow: 0 0 0 6px rgba(252, 81, 48, 0.18);
}

.uled-contact-showroom h2 {
  max-width: 620px;
  margin: 0;
  color: var(--scheme-white-color);
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 800;
}

.uled-contact-showroom__content > p {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255,255,255,0.76);
  font-size: 16px;
  line-height: 1.75;
}

.uled-contact-showroom__features {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.uled-contact-showroom__feature {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 22px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.uled-contact-showroom__feature::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: rgba(0, 113, 235, 0.18);
  pointer-events: none;
}

.uled-contact-showroom__feature > span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(252, 81, 48, 0.14);
  color: var(--scheme-orange-color);
  font-size: 13px;
  font-weight: 800;
}

.uled-contact-showroom__feature div {
  position: relative;
  z-index: 1;
}

.uled-contact-showroom__feature strong {
  display: block;
  color: var(--scheme-white-color);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 800;
}

.uled-contact-showroom__feature p {
  margin: 6px 0 0;
  color: rgba(255,255,255,0.66);
  font-size: 13px;
  line-height: 1.55;
}

.uled-contact-showroom__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.uled-contact-showroom__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  color: var(--scheme-white-color);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.uled-contact-showroom__btn:hover {
  transform: translateY(-2px);
  border-color: var(--scheme-blue-color);
  background: var(--scheme-blue-color);
  color: var(--scheme-white-color);
}

.uled-contact-showroom__btn--accent {
  border-color: rgba(252, 81, 48, 0.36);
  background: rgba(252, 81, 48, 0.16);
}

.uled-contact-showroom__btn--accent:hover {
  border-color: var(--scheme-orange-color);
  background: var(--scheme-orange-color);
  color: var(--scheme-white-color);
}

.uled-contact-showroom__map {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.06));
  box-shadow: 0 28px 90px rgba(0,0,0,0.28);
}

.uled-contact-showroom__map::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 220px;
  height: 220px;
  right: -90px;
  top: -90px;
  border-radius: 50%;
  background: rgba(252, 81, 48, 0.18);
  filter: blur(18px);
  pointer-events: none;
}

.uled-contact-showroom__map iframe {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
  border-radius: 26px;
  filter: saturate(0.95) contrast(1.05);
}


/* RESPONSIVE */

@media (max-width: 991px) {
  .uled-contact-showroom {
    padding: 72px 0;
  }

  .uled-contact-showroom__grid {
    grid-template-columns: 1fr;
  }

  .uled-contact-showroom__map,
  .uled-contact-showroom__map iframe {
    min-height: 400px;
  }
}

@media (max-width: 575px) {
  .uled-contact-showroom {
    padding: 58px 0;
  }

  .uled-contact-showroom__feature {
    grid-template-columns: 1fr;
  }

  .uled-contact-showroom__actions {
    flex-direction: column;
  }

  .uled-contact-showroom__btn {
    width: 100%;
  }

  .uled-contact-showroom__map {
    min-height: 340px;
    padding: 7px;
    border-radius: 26px;
  }

  .uled-contact-showroom__map iframe {
    min-height: 326px;
    border-radius: 20px;
  }
}


/* =========================
   CTA
========================= */

.uled-contact-cta {
  padding: 0 0 90px;
  background: var(--scheme-white-color);
}

.uled-contact-cta__inner {
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  padding: clamp(30px, 5vw, 54px);
  border-radius: 36px;
  color: var(--scheme-white-color);
  background:
    radial-gradient(circle at 90% 10%, rgba(252,81,48,0.42), transparent 30%),
    linear-gradient(135deg, #031226 0%, #06316A 55%, #0071EB 100%);
  box-shadow: 0 26px 80px rgba(0, 113, 235, 0.24);
}

.uled-contact-cta__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}

.uled-contact-cta__inner > * {
  position: relative;
  z-index: 1;
}

.uled-contact-cta span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--scheme-white-color);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.uled-contact-cta h2 {
  max-width: 760px;
  margin: 0;
  color: var(--scheme-white-color);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.uled-contact-cta p {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255,255,255,0.76);
  font-size: 16px;
  line-height: 1.7;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1199px) {
  .uled-contact-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
    gap: 32px;
  }

  .uled-contact-layout {
    grid-template-columns: 1fr;
  }

  .uled-contact-info {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .uled-contact-hero {
    padding: 92px 0 64px;
  }

  .uled-contact-hero__grid {
    grid-template-columns: 1fr;
  }

  .uled-contact-hero__panel {
    min-height: 380px;
  }

  .uled-contact-hero__image,
  .uled-contact-hero__image img {
    min-height: 360px;
  }

  .uled-contact-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .uled-contact-card {
    min-height: 210px;
    padding: 24px;
  }

  .uled-contact-card strong {
    font-size: 16px;
  }

  .uled-contact-info {
    grid-template-columns: 1fr;
  }

  .uled-contact-map {
    grid-template-columns: 1fr;
  }

  .uled-contact-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .uled-contact-page .container {
    width: min(100% - 24px, 1320px);
  }

  .uled-contact-hero {
    padding: 78px 0 54px;
  }

  .uled-contact-hero h1 {
    font-size: 42px;
  }

  .uled-contact-hero p {
    font-size: 16px;
  }

  .uled-contact-main {
    padding: 46px 0 64px;
  }

  .uled-contact-cards {
    grid-template-columns: 1fr;
  }

  .uled-contact-card {
    min-height: auto;
  }

  .uled-contact-card small {
    margin-top: 10px;
    padding-top: 0;
  }

  .uled-contact-form__row {
    grid-template-columns: 1fr;
  }

  .uled-contact-hero__actions {
    flex-direction: column;
  }

  .uled-contact-map__frame,
  .uled-contact-map__frame iframe,
  .uled-contact-map__placeholder {
    min-height: 300px;
  }

  .uled-contact-cta {
    padding-bottom: 64px;
  }
}

@media (max-width: 575px) {
  .uled-contact-hero h1 {
    font-size: 38px;
  }

  .uled-contact-eyebrow {
    font-size: 11px;
  }

  .uled-contact-hero__panel {
    min-height: 360px;
    padding: 8px;
    border-radius: 28px;
  }

  .uled-contact-hero__image {
    min-height: 344px;
    border-radius: 22px;
  }

  .uled-contact-hero__image img {
    min-height: 344px;
  }

  .uled-contact-hero__badge {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 18px;
    border-radius: 20px;
  }

  .uled-contact-hero__badge strong {
    font-size: 28px;
  }

  .uled-contact-card {
    padding: 24px;
    border-radius: 24px;
  }

  .uled-contact-form-wrap,
  .uled-contact-map,
  .uled-contact-cta__inner {
    border-radius: 26px;
  }

  .uled-contact-info__block {
    border-radius: 24px;
  }
}

/* =====================================================
#  Portfolio map
   ===================================================== */
.uled-project-map {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background:
    linear-gradient(
      180deg,
      rgba(7, 17, 31, .68),
      rgba(7, 17, 31, .74)
    ),
    url("/assets/mine.gmg/imgs/portfolio.map.bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.uled-project-map__container {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 80px;
  align-items: center;
}

.uled-project-map__content span {
  color: #57a8ff;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 800;
}

.uled-project-map__content h2 {
  margin: 16px 0 20px;
  color: #fff;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
  font-weight: 800;
}

.uled-project-map__content p {
  color: rgba(255,255,255,.72);
  font-size: 17px;
  line-height: 1.7;
}

.uled-project-map__stats {
  display: flex;
  gap: 38px;
  margin-top: 34px;
}

.uled-project-map__stats strong {
  display: block;
  color: #fff;
  font-size: 42px;
  line-height: 1;
}

.uled-project-map__stats span {
  color: rgba(255,255,255,.62);
}

/* Right interface panel */
.uled-project-map__interface {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 34px;
  background:
    radial-gradient(circle at 55% 45%, rgba(0,113,235,.18), transparent 34%),
    radial-gradient(circle at 70% 55%, rgba(252,81,48,.10), transparent 24%),
    rgba(255,255,255,.035);
  box-shadow:
    0 30px 90px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.08);
  overflow: hidden;
}

/* Decorative grid */
.uled-project-map__grid {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, #000 35%, transparent 78%);
}

/* One scalable layer for SVG map + markers */
.uled-project-map__stage {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(86%, 760px);
  aspect-ratio: 1000 / 600;
  transform: translate(-50%, -50%);
}

/* SVG map */
.uled-project-map__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: .82;
  filter:
    drop-shadow(0 0 28px rgba(0,113,235,.28))
    drop-shadow(0 0 70px rgba(0,113,235,.12));
}

/* City markers */
.uled-project-marker {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 3;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #fc5130;
  box-shadow:
    0 0 0 6px rgba(252,81,48,.16),
    0 0 28px rgba(252,81,48,.7),
    0 0 46px rgba(0,113,235,.55);
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.uled-project-marker::before {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1px solid rgba(0,113,235,.75);
  animation: uledMarkerPulse 2.4s infinite;
}

.uled-project-marker span {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 13px);
  transform: translateX(-50%) translateY(4px);
  opacity: 0;
  white-space: nowrap;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(5,9,20,.82);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(12px);
  transition: opacity .25s ease, transform .25s ease;
}

.uled-project-marker:hover span {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.uled-project-marker::before,
.uled-project-marker span {
  pointer-events: none;
}

@keyframes uledMarkerPulse {
  0% {
    transform: scale(.55);
    opacity: 1;
  }

  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

@media (max-width: 991px) {
  .uled-project-map {
    padding: 90px 0;
  }

  .uled-project-map__container {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .uled-project-map__interface {
    min-height: 420px;
  }

  .uled-project-map__stage {
    width: min(92%, 720px);
  }
}

@media (max-width: 575px) {
  .uled-project-map {
    padding: 80px 0;
  }

  .uled-project-map__interface {
    min-height: 340px;
    border-radius: 24px;
  }

  .uled-project-map__stats {
    gap: 24px;
  }

  .uled-project-marker {
    width: 14px;
    height: 14px;
  }

  .uled-project-marker::before {
    inset: -12px;
  }

  .uled-project-marker span {
    display: none;
  }
}

/* ================================
   ULED Footer — compact light style
   ================================ */

.uled-footer {
  position: relative;
  overflow: hidden;
  color: #172033;
  background:
    radial-gradient(circle at 20% 10%, rgba(0, 113, 235, .12), transparent 32%),
    radial-gradient(circle at 85% 20%, rgba(252, 81, 48, .09), transparent 30%),
    url("/assets/mine.gmg/imgs/footer.bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: clip;
  padding: 34px 0 18px;
}

.uled-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 113, 235, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 113, 235, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.42), transparent 78%);
}

.uled-footer__decor {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(64px);
}

.uled-footer__decor--blue {
  width: 260px;
  height: 260px;
  left: -130px;
  top: 80px;
  background: rgba(0, 113, 235, 0.11);
}

.uled-footer__decor--orange {
  width: 240px;
  height: 240px;
  right: -120px;
  bottom: 40px;
  background: rgba(252, 81, 48, 0.10);
}

.uled-footer .container {
  position: relative;
  z-index: 2;
}

/* Main layout: 70% / 30% */

.uled-footer__layout {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(300px, 3fr);
  gap: 22px;
  align-items: start;
}

/* Left column */

.uled-footer__left {
  display: grid;
  grid-template-columns:
    minmax(180px, 0.9fr)
    minmax(160px, 1fr)
    minmax(160px, 1fr);
  gap: 28px;
  align-items: start;
  min-width: 0;
  padding-top: 4px;
}

.uled-footer__brand {
  min-width: 0;
}

.uled-footer__logo {
  display: inline-flex;
  align-items: center;
  max-width: 210px;
  width: 100%;
  margin-bottom: 10px;
  text-decoration: none;
}

.uled-footer__logo img {
  display: block;
  max-width: 100%;
  height: auto;
}

.uled-footer__brand-caption {
  max-width: 250px;
  margin: 0;
  color: #5a667a;
  font-size: 13px;
  line-height: 1.45;
}

/* Footer navigation */

.uled-footer__col {
  min-width: 0;
}

.uled-footer__col h3 {
  margin: 0 0 9px;
  color: #101828;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
}

.uled-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.uled-footer__col li {
  margin-bottom: 6px;
}

.uled-footer__col a {
  color: #5a667a;
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.uled-footer__col a:hover {
  color: #0071EB;
  padding-left: 3px;
}

/* SEO text inside left column */

.uled-footer__seo {
  grid-column: 1 / -1;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 113, 235, 0.10);
}

.uled-footer__seo p {
  max-width: 100%;
  margin: 0;
  color: #687386;
  font-size: 12.5px;
  line-height: 1.45;
}

/* Right column */

.uled-footer__right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  min-width: 0;
}

/* Branch cards */

.uled-footer__branch {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 113, 235, 0.11);
  box-shadow: 0 12px 30px rgba(18, 55, 96, 0.08);
  backdrop-filter: blur(8px);
}

.uled-footer__branch::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -74px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(0, 113, 235, 0.07);
  pointer-events: none;
}

.uled-footer__branch--orange::before {
  background: rgba(252, 81, 48, 0.08);
}

.uled-footer__branch-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 7px;
}

.uled-footer__branch-label {
  display: inline-flex;
  color: #FC5130;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.uled-footer__branch h3 {
  margin: 0;
  color: #101828;
  font-size: 18px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.uled-footer__branch address {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  color: #5a667a;
  font-size: 12.5px;
  line-height: 1.4;
  font-style: normal;
}

/* Contact rows */

.uled-footer__contact-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
}

.uled-footer__contact-row {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 10px;
  align-items: baseline;
  min-width: 0;
  padding-top: 6px;
  border-top: 1px solid rgba(0, 113, 235, 0.08);
}

.uled-footer__contact-row span {
  color: #8a95a8;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.uled-footer__contact-row a {
  color: #263244;
  font-size: 12.5px;
  line-height: 1.3;
  font-weight: 800;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: color 0.2s ease;
}

.uled-footer__contact-row a:hover {
  color: #0071EB;
}

.uled-footer__contact-row p {
  margin: 0;
  color: #5a667a;
  font-size: 12.5px;
  line-height: 1.3;
}

/* Bottom */

.uled-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-top: 16px;
  padding-top: 13px;
  border-top: 1px solid rgba(0, 113, 235, 0.10);
  color: #7b8798;
  font-size: 12px;
}

.uled-footer__bottom p {
  margin: 0;
}

.uled-footer__bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.uled-footer__bottom-links a {
  color: #7b8798;
  text-decoration: none;
  transition: color 0.2s ease;
}

.uled-footer__bottom-links a:hover {
  color: #0071EB;
}

/* Responsive */

@media (max-width: 1199px) {
  .uled-footer__layout {
    grid-template-columns: 1fr;
  }

  .uled-footer__left {
    grid-template-columns:
      minmax(180px, 0.8fr)
      minmax(160px, 1fr)
      minmax(160px, 1fr);
  }

  .uled-footer__right {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .uled-footer {
    padding-top: 32px;
  }

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

  .uled-footer__brand {
    grid-column: 1 / -1;
  }

  .uled-footer__seo {
    grid-column: 1 / -1;
  }

  .uled-footer__right {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .uled-footer {
    padding: 30px 0 18px;
  }

  .uled-footer__left {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .uled-footer__logo {
    max-width: 170px;
    margin-bottom: 8px;
  }

  .uled-footer__brand-caption {
    max-width: 100%;
  }

  .uled-footer__seo {
    margin-top: 0;
    padding-top: 12px;
  }

  .uled-footer__branch {
    padding: 14px;
    border-radius: 17px;
  }

  .uled-footer__branch-head {
    display: block;
  }

  .uled-footer__branch-label {
    margin-bottom: 4px;
  }

  .uled-footer__contact-row {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .uled-footer__bottom {
    flex-direction: column;
    gap: 10px;
  }
}

