* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  display: flex;
  flex-direction: column;
  font-family: Arial, Helvetica, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-color);
  transition: background-color .3s, color .3s;
  padding-top: var(--hdr-height) !important;
  font-size: 1rem;
  line-height: 1.6;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: auto;
}



main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: color var(--transition-speed);
}


:root {
  --primary-color: #00e676;
  --accent-color: #66ff94;
  --bg-color: #f5f5f5;
  --text-color: #252525;
  --header-bg: rgba(3, 25, 38, 0);
  --footer-bg: #031926;
  --footer-text: #c0c0c0;
  --bg-light: #0e1616;
  --bg-dark: #070B0B;
  --bg-pattern-color: #070B0B;
  --bg-pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='12' viewBox='0 0 20 12'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='charlie-brown' fill='%23020f16' fill-opacity='0.4'%3E%3Cpath d='M9.8 12L0 2.2V.8l10 10 10-10v1.4L10.2 12h-.4zm-4 0L0 6.2V4.8L7.2 12H5.8zm8.4 0L20 6.2V4.8L12.8 12h1.4zM9.8 0l.2.2.2-.2h-.4zm-4 0L10 4.2 14.2 0h-1.4L10 2.8 7.2 0H5.8z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  --text-light: #f5f5f5;
  --text-mid: #c0c0c0;
  --transition-speed: .4s;
  --radius: 12px;
  --headline-font: 'Segoe UI', sans-serif;
  --hdr-bg: rgba(7, 11, 11, 0.6);
  --hdr-fg: #fff;
  --hdr-accent: #00e676;
  --hdr-border: rgba(255, 255, 255, 0.1);
  --hdr-shadow: rgba(0, 0, 0, 0.2);
  --hdr-height: 80px;

  --qn-size: 44px;
  --qn-gap: 8px;
  --transition: .3s;
  --st-size: 44px;
  --accent: var(--hdr-accent);
  --text: var(--hdr-fg);

  --error-color: #E53E3E;
  --toast-success-bg: var(--primary-color);
  --toast-error-bg: var(--error-color);
  --toast-text: var(--text-light);
  --toast-font: var(--headline-font);
}


.site-header {
  height: var(--hdr-height);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--hdr-bg);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 8px var(--hdr-shadow);
  z-index: 1000;
  transition: transform .2s ease-out, background .3s ease;
}

.site-header--hidden {
  transform: translateY(-100%);
}

.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.1rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#toast-container.toast-top-right {
  top: 1rem !important;
  right: 1rem !important;
}

.toast {
  position: relative !important;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: var(--radius) !important;
  font-family: var(--toast-font) !important;
  color: var(--toast-text) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
  background-color: #222 !important;
}

.toast-success {
  background-color: var(--toast-success-bg) !important;
}

.toast-error {
  background-color: var(--toast-error-bg) !important;
}

.toast-info {
  background-color: var(--accent-color) !important;
}

.toast-warning {
  background-color: #FFA000 !important;
}

.toast .toast-close-button {
  position: absolute !important;
  top: 50% !important;
  right: 0.75rem !important;
  transform: translateY(-50%) !important;
  padding: 0.25rem 0.5rem !important;
  font-size: 1.2rem !important;
  line-height: 1 !important;
}

.toast .toast-close-button:hover {
  opacity: 1 !important;
  color: var(--text-light);
}

@media (max-width: 576px) {
  .toast {
    width: auto !important;
    max-width: 70% !important;
  }
}

.site-header__logo img {
  height: 48px;
  transition: transform .3s ease;
}

.site-header__logo img:hover {
  transform: scale(1.1);
}

.main-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.main-nav__link {
  position: relative;
  color: var(--hdr-fg);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.25rem 0;
  transition: color .2s;
}

.main-nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--hdr-accent);
  transition: width .25s;
}

.main-nav__link:hover::after {
  width: 100%;
}

.main-nav__link:hover {
  color: var(--hdr-accent);
}

.main-nav__cta,
.mobile-menu__cta {
  position: relative;
  display: inline-block;
  padding: 0.4rem 1rem;
  background: none;
  color: var(--hdr-fg);
  border: none;
  transition: color .2s;
}

.main-nav__cta::after,
.mobile-menu__cta::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--hdr-accent);
  border-radius: 50px;
  clip-path: inset(0 100% 0 0);
  transition: clip-path .3s ease;
  pointer-events: none;
}

.main-nav__cta:hover::after,
.mobile-menu__cta:hover::after {
  clip-path: inset(0 0 0 0);
}

.main-nav__cta:hover,
.mobile-menu__cta:hover {
  color: var(--hdr-fg);
}

@keyframes shimmer {
  to {
    left: calc(100% + 2px);
  }
}

.has-submenu {
  position: relative;
}

.submenu-arrow {
  margin-left: 4px;
  font-size: 0.75rem;
  transition: transform .25s;
}

.has-submenu:hover .submenu-arrow {
  transform: rotate(180deg);
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--hdr-bg);
  border: 1px solid var(--hdr-border);
  list-style: none;
  margin: 0;
  padding: 0.25rem 0;
  box-shadow: 0 2px 8px var(--hdr-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s, transform .2s;
  min-width: 140px;
}

.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu-link {
  display: block;
  padding: 0.4rem 1rem;
  font-size: 0.875rem;
  color: var(--hdr-fg);
  text-decoration: none;
  transition: background .2s;
}

.submenu-link:hover {
  background: var(--hdr-border);
}

.social-icons {
  display: flex;
  gap: 0.5rem;
}

.social-icons a {
  color: var(--hdr-fg);
  font-size: 1rem;
  transition: color .2s, transform .2s;
}

.social-icons a:hover {
  color: var(--hdr-accent);
  transform: scale(1.2);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  padding: 4px;
  flex-direction: column;
  justify-content: space-between;
}

.nav-toggle__bar {
  width: 100%;
  height: 3px;
  background: var(--hdr-fg);
  transition: transform .25s, opacity .25s;
}

.nav-toggle__bar:nth-child(1) {
  width: 20px;
}

.nav-toggle__bar:nth-child(2) {
  width: 25px;
}

.nav-toggle__bar:nth-child(3) {
  width: 30px;
}

.nav-toggle.open .nav-toggle__bar:nth-child(1) {
  transform: rotate(45deg) translate(6px, 12px);
  width: 20px !important;
}

.nav-toggle.open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open .nav-toggle__bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -12px);
  width: 20px !important;
}

@media (max-width: 768px) {
  .site-header__social {
    display: none !important;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 60%;
  max-width: 240px;
  height: 100vh;
  background: var(--hdr-bg);
  border-left: 1px solid var(--hdr-border);
  transform: translateX(100%);
  transition: transform .3s ease-out;
  z-index: 900;
  padding-top: 48px;
  display: flex;
  flex-direction: column;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: 1rem;
}

.mobile-menu__list li {
  margin-bottom: 0.75rem;
}

.mobile-menu__link {
  display: block;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  color: var(--hdr-fg);
  text-decoration: none;
  transition: background .2s;
}

.mobile-menu__link:hover {
  background: var(--hdr-border);
}

.mobile-menu__cta {
  position: relative;
  overflow: hidden;
  display: inline-block;
  border: 2px solid var(--hdr-accent);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  margin: 1rem;
  background: none;
  color: var(--hdr-fg);
  transition: color .2s;
}

.mobile-menu__cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  transform: skewX(-20deg);
}

.mobile-menu__cta:hover::before {
  animation: shimmer 0.8s ease-out forwards;
}

.mobile-menu__cta:hover {
  color: var(--hdr-accent);
}

.has-mobile-submenu .mobile-submenu {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.has-mobile-submenu .mobile-submenu-arrow {
  margin-left: 4px;
  font-size: 0.75rem;
  transition: transform .25s;
}

.has-mobile-submenu.open .mobile-submenu {
  max-height: 300px;
}

.has-mobile-submenu.open .mobile-submenu-arrow {
  transform: rotate(180deg);
}

.mobile-submenu__link {
  display: flex;
  width: 100%;
  padding: 0.5rem 2rem;
  font-size: 0.9rem;
  color: var(--hdr-fg);
  text-decoration: none;
}

.mobile-submenu__link:hover {
  background: var(--hdr-border);
}

@media (max-width: 992px) {
  .main-nav__list {
    gap: 0.75rem;
  }

  .main-nav__link {
    font-size: 0.85rem;
  }

  .main-nav__cta {
    padding: 0.35rem 0.9rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {

  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header__inner {
    justify-content: space-between;
    padding: 1rem 2rem 1rem 2rem;
  }


  .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 80vw;
    max-width: 300px;
    height: 100vh;
    min-height: 100vh;
    padding-top: calc(48px + env(safe-area-inset-top));
    padding-bottom: calc(1rem + env(safe-area-inset-bottom));
    background: var(--hdr-bg);
    backdrop-filter: blur(6px);
    border-left: 1px solid var(--hdr-border);
    transform: translateX(100%);
    transition: transform .3s ease-out;
    z-index: 900;
    display: flex;
    flex-direction: column;
  }

  .mobile-menu.open {
    transform: translateX(0);
  }

  .mobile-menu__list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 2rem 0;
  }

  .mobile-menu__link {
    display: block;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    color: var(--hdr-fg);
    text-decoration: none;
    transition: background .2s;
  }

  .mobile-menu__link:hover {
    background: var(--hdr-border);
  }

  .mobile-menu__cta {
    position: relative;
    display: block;
    margin: 0 1rem 1rem;
    padding: 0.5rem 1rem;
  }

  .mobile-menu__social {
    margin-top: auto;
    padding: 1rem;
  }
}



.ng-hero {
  position: relative;
  min-height: calc(100vh - 80px);
  height: auto;
  overflow: visible;
  font-family: 'Inter', sans-serif;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow-x: hidden;
}

@keyframes bgPulse {

  0%,
  100% {
    filter: brightness(0.35);
  }

  50% {
    filter: brightness(0.4);
  }
}

.ng-hero__bg {
  position: absolute;
  inset: 0;
  background: url('/img/background.webp') center/cover no-repeat;
  animation: bgPulse 10s ease-in-out infinite;
  z-index: 0;
}

.ng-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 11, 11, 0.6);
  z-index: 1;
}

.ng-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 2rem;
  box-sizing: border-box;
}

.ng-hero__title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: .5rem;
  opacity: 0;
}

.ng-hero__title span {
  color: var(--hdr-accent);
}

.ng-hero__subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  margin-bottom: 2rem;
  opacity: 0;
  max-width: 600px;
  color: rgba(255, 255, 255, 0.9);
}

.ng-hero__buttons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.ng-hero__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
  overflow: hidden;
  border-radius: 50px;
  opacity: 0;
  transform: translateY(20px);
  transition: transform .3s, background .3s;
  z-index: 1;
  cursor: pointer;
}

.ng-hero__btn i {
  font-size: 1.1rem;
}

.ng-hero__btn--primary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 2px solid #00e676;
  box-shadow: 0 6px 16px rgba(0, 230, 118, 0.3);
}

.ng-hero__btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px) scale(1.02);
}

.ng-hero__btn--secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #00e676;
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 230, 118, 0.3);

}

.ng-hero__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px) scale(1.02);
  transform: translateY(-3px) scale(1.02);

}


.ng-hero__logos {
  position: absolute;
  z-index: 2;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  display: flex;
  justify-content: center;
  gap: 4rem;
  overflow-x: auto;
  padding: 0 2rem;
  box-sizing: content-box;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.ng-hero__logos::-webkit-scrollbar {
  display: none;
}

.ng-hero__logos img {
  height: 48px;
  opacity: .9;
  transition: transform .3s, opacity .3s;
}

.ng-hero__logos img:hover {
  transform: scale(1.2);
  opacity: 1;
}

.product-carousel-wrapper {
  position: relative;
  margin-top: 3rem;
  z-index: 2;
}

.product-carousel {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  padding-bottom: 1rem;
  scroll-behavior: smooth;
}

.product-carousel::-webkit-scrollbar {
  display: none;
}

.product-card {
  flex: none;
  width: 120px;
  text-align: center;
  transition: transform .3s;
}

.product-card a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.product-card img {
  width: 100%;
  height: 100px;
  object-fit: contain;
  filter: brightness(1) saturate(1.2);
  transition: filter .3s;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card:hover img {
  filter: brightness(1.4) saturate(1.4);
}

.product-name {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #00e676;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.carousel-prev {
  left: 0.5rem;
}

.carousel-next {
  right: 0.5rem;
}



@keyframes scrollBounce {

  0%,
  100% {
    transform: translateY(0);
    opacity: .8;
  }

  50% {
    transform: translateY(10px);
    opacity: 1;
  }
}

.ng-hero__scroll-icon {
  position: absolute;
  bottom: 2rem;
  transform: translateX(-50%) translateY(20px);
  background: rgba(255, 255, 255, 0.15);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 2;
  opacity: 0;
  transition: transform .3s, background .3s;
  animation: scrollBounce 2s infinite;
}

.ng-hero__scroll-icon i {
  font-size: 1.5rem;
  color: #fff;
}

.ng-hero__scroll-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(-50%) translateY(15px) scale(1.1);
}

@media screen and (min-width: 1281px) {
  .ng-hero__content {
    padding: 0 4rem;
  }

  .ng-hero__buttons {
    gap: 2rem;
  }

  .product-card {
    width: 160px;
  }

  .product-card img {
    height: 140px;
  }
}

@media screen and (max-width: 1280px) and (min-width: 1025px) {
  .ng-hero__content {
    padding: 0 3rem;
  }

  .ng-hero__buttons {
    gap: 1.5rem;
  }

  .product-card {
    width: 140px;
  }

  .product-card img {
    height: 120px;
  }
}

@media screen and (max-width: 1024px) and (min-width: 769px) {
  .ng-hero {
    padding-top: 4rem;
  }

  .ng-hero__content {
    align-items: center;
    text-align: center;
    padding: 0 !important;
  }
  .product-carousel{
    overflow-x: hidden;
    gap: 0.5rem;
  }
  .ng-hero__buttons {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .ng-hero__btn {
    width: auto;
  }

  .ng-hero__logos {
    bottom: 4rem;
    gap: 2rem;
  }

  .product-card {
    width: 120px;
  }

  .product-card img {
    height: 100px;
  }
}

@media screen and (max-width: 768px) and (min-width: 577px) {
  .ng-hero__content {
    padding: 0 1.5rem;
  }

  .ng-hero__title {
    font-size: clamp(2.5rem, 7vw, 4rem);
  }

  .ng-hero__subtitle {
    font-size: clamp(1rem, 2.2vw, 1.25rem);
  }

  .ng-hero__buttons {
    flex-direction: column;
    gap: .75rem;
    align-items: center;
  }

  .ng-hero__btn {
    width: 100%;
  }

  .ng-hero__logos {
    position: relative !important;
    flex-wrap: wrap;
    padding: 1rem 0;
    margin: 2rem auto 0;
  }

  .ng-hero__scroll-icon {
    display: none;
  }

  .product-carousel {
    display: flex;
    justify-content: center;
    overflow-x: hidden;
    padding-bottom: 0;
  }

  .product-card {
    flex: 1 1 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
    margin: 0.5rem;
    width: auto;
  }
}

@media screen and (max-width: 576px) and (min-width: 321px) {
  .ng-hero {
    padding-top: 3rem;
  }

  .ng-hero__content {
    padding: 0 1rem;
  }

  .ng-hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-bottom: .5rem;
  }

  .ng-hero__subtitle {
    font-size: clamp(.9rem, 3vw, 1rem);
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .ng-hero__buttons {
    gap: .5rem;
  }

  .ng-hero__btn {
    font-size: .9rem;
    padding: .5rem 1rem;
  }
  .product-carousel{
    gap: 0.5rem;
  }
  .ng-hero__logos {
    justify-content: center;
    gap: 1.5rem;
  }

  .product-card {
    flex: 1 1 100%;
    max-width: 100%;
    margin: 0.5rem 0;
    width: auto;
  }

  .product-card img {
    height: 70px;
  }
}

@media screen and (max-width: 320px) {
  .ng-hero {
    padding-top: 2.5rem;
  }

  .ng-hero__content {
    padding: 0 .5rem;
  }

  .ng-hero__title {
    font-size: clamp(1.75rem, 10vw, 2.5rem);
  }

  .ng-hero__subtitle {
    font-size: clamp(.8rem, 4vw, .9rem);
  }

  .ng-hero__buttons {
    gap: .5rem;
  }

  .ng-hero__btn {
    font-size: .85rem;
    padding: .4rem .75rem;
  }

  .ng-hero__logos {
    display: none;
  }

  .ng-hero__scroll-icon {
    display: none;
  }

  .product-card {
    width: 80px;
  }

  .product-card img {
    height: 60px;
  }
}


.map-full {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.map-full iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  background: var(--bg-dark) var(--bg-pattern);
  color: var(--text-light);
  font-size: 0.9rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
}

.footer-content h4 {
  color: var(--accent-color);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  position: relative;
}

.footer-content h4::after {
  position: absolute;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary-color);
}

.footer-about img {
  width: 140px;
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-icons a {
  color: var(--text-light);
  font-size: 1.2rem;
  transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover {
  color: var(--primary-color);
  transform: scale(1.1);
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin: 0.5rem 0;
}

.footer-nav a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s, padding-left 0.3s;
}

.footer-nav a:hover {
  color: var(--primary-color);
  padding-left: 6px;
}

.footer-contact address {
  font-style: normal;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.5rem 0;
}

.footer-contact a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: var(--primary-color);
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.newsletter-form input[type="email"] {
  flex: 1 1 200px;
  min-width: 200px;
  padding: 0 1rem;
  height: 48px;
  border: none;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  font-size: 1rem;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.4);
  transition: background 0.3s, box-shadow 0.3s;
}

.newsletter-form input::placeholder {
  color: var(--text-mid);
}

.newsletter-form input:hover {
  background: rgba(255, 255, 255, 0.1);
}

.newsletter-form input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 0 0 2px var(--accent-color);
}

.newsletter-form .pv-button {
  flex: 0 0 auto;
  padding: 0 .75rem;
  height: 48px;
  border: none !important;
  border-radius: var(--radius);
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color)) !important;
  color: var(--bg-dark) !important;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.newsletter-form .pv-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 230, 118, 0.4);
}

.newsletter-form .pv-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3) !important;
  transform: skewX(-25deg);
  transition: left 0.6s ease;
}

.newsletter-form .pv-button:hover::before {
  left: 125%;
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: var(--text-mid);
  font-size: 0.85rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-content>* {
  opacity: 0;
  animation: fadeInUp 0.6s forwards;
}

.footer-content>*:nth-child(1) {
  animation-delay: .2s;
}

.footer-content>*:nth-child(2) {
  animation-delay: .3s;
}

.footer-content>*:nth-child(3) {
  animation-delay: .4s;
}

.footer-content>*:nth-child(4) {
  animation-delay: .5s;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr !important;
    text-align: center;
    padding: 3rem 1rem 2rem !important;
  }

  .footer-section {
    margin: 0 auto;
    max-width: 480px;
  }

  .social-icons {
    justify-content: center;
    margin-top: 1rem;
  }

  .footer-nav ul {
    display: inline-block;
    padding: 0;
  }

  .footer-nav li {
    margin: 0.75rem 0;
  }

  .footer-contact address p {
    justify-content: center;
  }

  .newsletter-form {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0.75rem;
    margin-top: 1.5rem;
    max-height: 3rem;
  }

  .footer-bottom {
    text-align: center;
  }
}




.qn-nav {
  position: fixed;
  bottom: 24px;
  right: 96px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: var(--qn-gap);
  background: none;
  padding: 0;
  z-index: 9999;
}

.qn-nav__toggle {
  width: var(--qn-size);
  height: var(--qn-size);
  background: var(--accent);
  color: var(--text);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.qn-nav__toggle:hover {
  transform: scale(1.1);
  background: var(--accent) brightness(1.2);
}

.qn-nav__list {
  display: flex;
  gap: var(--qn-gap);
  transition: opacity var(--transition), transform var(--transition);
  margin-bottom: 0px;
  padding-left: 1rem;
}

.qn-nav__list.closed {
  opacity: 0;
  transform: translateX(-8px);
  pointer-events: none;
}

.qn-nav__item {
  width: var(--qn-size);
  height: var(--qn-size);
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.qn-nav__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.qn-nav__item:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.qn-nav__item--beam {
  background: #ce484e;
}

.qn-nav__item--qdms {
  background: #ac4683;
}

.qn-nav__item--csp {
  background: #19203ac9;
}

.qn-nav__item--ensemble {
  background: #00463d;
}

.qn-nav__item--eba {
  background: #927442;
}

.qn-nav__item--envanty {
  background: #607d8bcb;
}

.st-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: var(--st-size);
  height: var(--st-size);
  background: var(--accent);
  color: #070B0B;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer !important;
  opacity: 0;
  pointer-events: none !important;
  transform: translateY(20px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 9999;
}

.st-btn.show {
  opacity: 1;
  pointer-events: auto !important;
  transform: translateY(0);
}

.st-btn:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  :root {
    --qn-size: 36px;
    --qn-gap: 6px;
    --st-size: 36px;
  }

  .qn-nav {
    right: 20%;
  }

}

@media (max-width: 480px) {
  :root {
    --qn-size: 32px;
    --qn-gap: 4px;
    --st-size: 32px;
  }
}



@media (max-width: 991px) and (min-width: 768px) {
  .mega-menu {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .panel--dark {
    flex: 0 0 clamp(180px, 25vw, 240px) !important;
    width: clamp(180px, 25vw, 240px) !important;
    height: 100vh;
    overflow-y: auto;
  }

  .panel--light {
    flex: 1 0 auto !important;
    width: auto !important;
    height: 100vh;
    overflow-y: auto;
  }
}

@media (max-width: 767px) {
  .mega-menu {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto;
    overflow-y: hidden;
    height: 100vh;
  }

  .panel--dark {
    flex: 0 0 clamp(200px, 30vw, 200px) !important;
    width: clamp(150px, 30vw, 200px) !important;
    height: 100vh;
    overflow-y: auto;
  }

  .panel--light {
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: calc(100vw - clamp(150px, 30vw, 200px)) !important;
    height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-left: 2vh;
    box-sizing: border-box;
  }
}