:root{
  --bg:#eef2f5;
  --panel:#ffffff;
  --text:#203244;
  --muted:#6c7a88;
  --line:#dfe6ee;
  --blue:#0c59b7;
  --blue-dark:#083e82;
  --yellow:#f1c40f;
  --yellow-dark:#ddb100;
  --dark:#0f1720;
  --shadow:0 14px 34px rgba(18,30,44,.08);
  --radius:22px;
  --container:1320px;
}

*{box-sizing:border-box}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:"Noto Sans Georgian", Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.5;
}

a{
  color:inherit;
  text-decoration:none;
}

img,
video{
  display:block;
  max-width:100%;
}

.container{
  width:min(var(--container), calc(100% - 48px));
  margin:0 auto;
}

/* ===== HEADER FINAL FIX ===== */
.site-header.mega-header{
  position: sticky;
  top: 0;
  z-index: 1200;
  background: #ffffff;
  border-bottom: 1px solid rgba(18,30,44,.08);
  box-shadow: 0 8px 20px rgba(18,30,44,.04);
}

.site-header .header-row{
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-header .brand{
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: .01em;
  line-height: 1;
  color: #17385e;
}

.site-header .main-nav.desktop-nav{
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.site-header .nav-link{
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 78px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  color: #415466;
  transition: color .18s ease;
}

.site-header .nav-link:hover{
  color: #0c59b7;
}

.site-header .nav-link.active{
  color: #0c59b7;
}

.site-header .nav-link.active::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: #0c59b7;
  border-radius: 2px 2px 0 0;
}

.site-header .desktop-lang{
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.site-header .desktop-lang a{
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f3f6fa;
  border: 1px solid rgba(12,89,183,.14);
  color: #4a6074;
  font-size: 12px;
  font-weight: 700;
}

.site-header .desktop-lang a.active{
  border: 2px solid #e0b400;
  color: #0c59b7;
  background: #fffef7;
}

.site-header .menu-toggle{
  display: none;
  width: 44px;
  height: 44px;
  margin-left: 8px;
  border-radius: 10px;
  border: 1px solid rgba(18,30,44,.12);
  background: #fff;
  padding: 10px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.site-header .menu-toggle span{
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #102030;
}

.site-header .mobile-menu{
  display: none;
  background: #fff;
  border-top: 1px solid rgba(18,30,44,.08);
}

.site-header .mobile-menu.open{
  display: block;
}

.site-header .mobile-menu-inner{
  padding: 14px 0 18px;
}

.site-header .mobile-nav-links{
  display: flex;
  flex-direction: column;
}

.site-header .mobile-nav-links a{
  padding: 12px 0;
  font-size: 15px;
  font-weight: 600;
  color: #24384d;
}

.site-header .mobile-nav-links a.active{
  color: #0c59b7;
}

.site-header .mobile-lang-switch{
  margin-top: 14px;
  display: flex;
  gap: 10px;
}

.site-header .mobile-lang-switch a{
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f3f6fa;
  border: 1px solid rgba(12,89,183,.14);
  color: #4a6074;
  font-size: 12px;
  font-weight: 700;
}

.site-header .mobile-lang-switch a.active{
  border: 2px solid #e0b400;
  color: #0c59b7;
  background: #fffef7;
}
/* ===== HERO FINAL FIX ===== */
.home-hero{
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: #0e151d;
}

.home-hero-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none !important;
  opacity: 1 !important;
}

.home-hero-overlay,
.home-hero::before,
.home-hero::after{
  display: none !important;
  content: none !important;
  background: transparent !important;
}

.home-hero .container{
  position: relative;
  z-index: 2;
  height: 100%;
}

.home-hero-grid{
  min-height: 760px;
  display: flex;
  align-items: flex-end;   /* bottom */
  justify-content: flex-start; /* left */
}

.home-hero-copy{
  width: 100%;
  max-width: 430px;
  text-align: left;
  margin-bottom: 72px;     /* distance from bottom */
  margin-left: 20;
  padding: 0;
}

.eyebrow{
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 15px;
  border-radius: 999px;
  background: rgba(17,25,36,.34);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.home-hero-copy h1{
  margin: 0 0 14px;
  max-width: 430px;
  color: #fff;
  font-size: 62px;
  line-height: .94;
  letter-spacing: -.05em;
  font-weight: 800;
  text-shadow: 0 5px 14px rgba(0,0,0,.14);
}

.home-hero-subline{
  margin: 0 0 18px;
  max-width: 400px;
  color: rgba(255,255,255,.94);
  font-size: 15px;
  line-height: 1.55;
}

.hero-tags{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  max-width: 300px;
  margin: 0 0 18px;
}

.hero-tags span{
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(17,25,36,.32);
  border: 1px solid rgba(255,255,255,.10);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.home-hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}

.home-hero-actions .btn{
  min-height: 46px;
  padding: 0 20px;
  border-radius: 12px;
}
/* =========================
   MAIN SECTIONS
========================= */
.home-sections{
  position:relative;
  z-index:3;
  padding:34px 0 46px;
}

.info-section{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:28px;
  box-shadow:var(--shadow);
  margin-bottom:26px;
  overflow:hidden;
}

.info-section-head{
  padding:26px 30px 18px;
  border-bottom:1px solid #edf2f7;
}

.info-section-head h2{
  margin:0;
  font-size:26px;
  line-height:1.15;
  font-weight:800;
  color:#122f52;
}

.info-section-body{
  padding:24px 30px 30px;
}

/* QUICK GRID */
.quick-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:18px;
}

.quick-card{
  background:#f7fafc;
  border:1px solid #e7edf4;
  border-radius:22px;
  padding:22px 20px;
}

.quick-card h3{
  margin:0 0 10px;
  font-size:18px;
  line-height:1.25;
  color:#17385e;
  font-weight:800;
}

.quick-card p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.65;
}

/* PRODUCTS */
.esit-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:20px;
}

.esit-tile{
  position:relative;
  min-height:355px;
  border-radius:24px;
  overflow:hidden;
  background:#dbe3eb;
  box-shadow:var(--shadow);
}

.esit-tile-bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transform:scale(1.01);
}

.esit-tile::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(11,20,30,.08) 0%, rgba(11,20,30,.24) 46%, rgba(11,20,30,.72) 100%);
  z-index:1;
}

.esit-tile-content{
  position:relative;
  z-index:2;
  min-height:355px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:24px;
}

.esit-tile-content h3{
  margin:0 0 10px;
  color:#fff;
  font-size:24px;
  line-height:1.12;
  font-weight:800;
}

.esit-tile-content p{
  margin:0 0 14px;
  color:rgba(255,255,255,.9);
  font-size:14px;
  line-height:1.6;
}

.esit-tile-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.text-link,
.photo-open-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
  font-size:13px;
  font-weight:700;
  backdrop-filter:blur(4px);
  -webkit-backdrop-filter:blur(4px);
  cursor:pointer;
}

.category-cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center;
  margin-top:26px;
}

/* TEXT / WHY / PROJECTS */
.panel-text p{
  margin:0 0 16px;
  color:#45596d;
  font-size:15px;
  line-height:1.82;
}

.panel-text p:last-child{
  margin-bottom:0;
}

.inline-link{
  color:var(--blue);
  font-weight:700;
}

.why-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:24px;
}

.why-copy p{
  margin:0 0 16px;
  color:#45596d;
  font-size:15px;
  line-height:1.82;
}

.clean-list{
  margin:0;
  padding-left:22px;
  color:#45596d;
}

.clean-list li{
  margin-bottom:10px;
  line-height:1.65;
}

.why-panel{
  background:#f7fafc;
  border:1px solid #e7edf4;
  border-radius:24px;
  padding:14px;
}

.why-row{
  display:grid;
  grid-template-columns:140px 1fr;
  gap:18px;
  padding:16px 14px;
  border-bottom:1px solid #e7edf4;
}

.why-row:last-child{
  border-bottom:0;
}

.why-row strong{
  color:#17385e;
  font-size:15px;
  font-weight:800;
}

.why-row span{
  color:#5b6c7b;
  font-size:14px;
  line-height:1.6;
}

.projects-grid{
  display:grid;
  grid-template-columns:1.3fr .85fr .85fr;
  grid-template-rows:260px 260px;
  gap:16px;
}

.project-item{
  border-radius:24px;
  background-size:cover;
  background-position:center;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.project-item.wide{
  grid-row:1 / span 2;
}

/* CTA */
.home-cta{
  display:grid;
  grid-template-columns:1.25fr .75fr;
  gap:24px;
  align-items:center;
  background:linear-gradient(180deg, #123f78 0%, #0b2f5a 100%);
  color:#fff;
  border-radius:30px;
  padding:28px 30px;
  box-shadow:var(--shadow);
}

.home-cta h2{
  margin:0 0 10px;
  font-size:30px;
  line-height:1.12;
  font-weight:800;
}

.home-cta p{
  margin:0;
  color:rgba(255,255,255,.92);
  font-size:15px;
  line-height:1.78;
}

.home-cta .inline-link{
  color:#ffd84f;
}

.home-cta-actions{
  display:flex;
  flex-direction:column;
  gap:14px;
  align-items:stretch;
}

.phone-cta{
  display:flex;
  align-items:center;
  gap:14px;
  min-height:72px;
  padding:16px 18px;
  border-radius:20px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.12);
}

.phone-cta-icon{
  width:48px;
  height:48px;
  border-radius:14px;
  background:#fff;
  color:#0f2742;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.phone-cta-icon svg{
  width:24px;
  height:24px;
}

.phone-cta-text{
  display:flex;
  flex-direction:column;
}

.phone-cta-text small{
  color:rgba(255,255,255,.8);
  font-size:12px;
}

.phone-cta-text strong{
  color:#fff;
  font-size:18px;
  font-weight:800;
}

/* FOOTER */
.site-footer{
  padding:0 0 34px;
}

.footer-row{
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
  align-items:center;
  padding:22px 2px 0;
  color:#6b7a88;
  font-size:13px;
}

/* GALLERY */
.gallery-modal{
  position:fixed;
  inset:0;
  z-index:3000;
  display:none;
}

.gallery-modal.open{
  display:block;
}

.gallery-backdrop{
  position:absolute;
  inset:0;
  background:rgba(8,14,22,.76);
  backdrop-filter:blur(4px);
  -webkit-backdrop-filter:blur(4px);
}

.gallery-dialog{
  position:relative;
  z-index:2;
  width:min(1100px, calc(100% - 34px));
  margin:30px auto;
  background:#fff;
  border-radius:26px;
  box-shadow:0 24px 60px rgba(5,10,16,.35);
  padding:22px;
}

.gallery-close{
  position:absolute;
  top:18px;
  right:18px;
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid #dfe6ee;
  background:#fff;
  color:#102030;
  font-size:26px;
  cursor:pointer;
}

.gallery-topbar{
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:center;
  margin-bottom:18px;
  padding-right:54px;
}

.gallery-topbar h3{
  margin:0;
  color:#17385e;
  font-size:22px;
  font-weight:800;
}

.gallery-counter{
  color:#6c7a88;
  font-size:14px;
  font-weight:700;
}

.gallery-stage{
  display:grid;
  grid-template-columns:56px 1fr 56px;
  gap:14px;
  align-items:center;
}

.gallery-image-wrap{
  min-height:560px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#f5f8fb;
  border:1px solid #e3eaf1;
  border-radius:20px;
  overflow:hidden;
}

.gallery-image-wrap img{
  max-width:100%;
  max-height:78vh;
  object-fit:contain;
  transform-origin:center center;
}

.gallery-nav{
  width:56px;
  height:56px;
  border-radius:999px;
  border:1px solid #dfe6ee;
  background:#fff;
  color:#102030;
  font-size:34px;
  cursor:pointer;
}

.gallery-zoom-controls{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:16px;
}

.gallery-zoom-btn{
  min-width:58px;
  height:42px;
  padding:0 14px;
  border-radius:12px;
  border:1px solid #dfe6ee;
  background:#fff;
  color:#102030;
  font-size:16px;
  font-weight:800;
  cursor:pointer;
}

.gallery-thumbs{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(92px, 1fr));
  gap:10px;
  margin-top:16px;
}

.gallery-thumb{
  height:72px;
  border-radius:14px;
  background-size:cover;
  background-position:center;
  border:2px solid transparent;
  cursor:pointer;
}

.gallery-thumb.active{
  border-color:var(--blue);
}

/* RESPONSIVE */
@media (max-width: 1320px){
  .site-header .header-row{
    gap:22px;
  }

  .site-header .main-nav.desktop-nav{
    gap:20px;
  }

  .site-header .nav-link{
    font-size:12px;
  }

  .home-hero-copy h1{
    font-size:58px;
  }
}

@media (max-width: 1100px){
  .site-header .main-nav.desktop-nav{
    gap:14px;
  }

  .site-header .nav-link{
    font-size:11px;
  }

  .site-header .desktop-lang a{
    width:36px;
    height:36px;
    font-size:11px;
  }

  .quick-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }

  .esit-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }

  .why-grid,
  .home-cta{
    grid-template-columns:1fr;
  }
}

@media (max-width: 980px){
  .container{
    width:min(var(--container), calc(100% - 26px));
  }

  .site-header .header-row{
    grid-template-columns:1fr auto;
    min-height:74px;
  }

  .site-header .main-nav.desktop-nav,
  .site-header .desktop-lang{
    display:none;
  }

  .site-header .menu-toggle{
    display:flex;
  }

  .home-hero{
    min-height:640px;
  }

  .home-hero-grid{
    min-height:640px;
  }

  .home-hero-copy{
    max-width:420px;
    padding-top:36px;
  }

  .home-hero-copy h1{
    font-size:52px;
  }

  .projects-grid{
    grid-template-columns:1fr 1fr;
    grid-template-rows:240px 240px 240px;
  }

  .project-item.wide{
    grid-row:auto;
    grid-column:1 / span 2;
  }

  .gallery-stage{
    grid-template-columns:1fr;
  }

  .gallery-nav{
    display:none;
  }

  .gallery-image-wrap{
    min-height:420px;
  }
}

@media (max-width: 700px){
  .info-section-head,
  .info-section-body{
    padding-left:18px;
    padding-right:18px;
  }

  .quick-grid,
  .esit-grid,
  .projects-grid{
    grid-template-columns:1fr;
  }

  .projects-grid{
    grid-template-rows:240px 240px 240px 240px;
  }

  .project-item.wide{
    grid-column:auto;
  }

  .why-row{
    grid-template-columns:1fr;
    gap:8px;
  }

  .home-hero{
    min-height:560px;
  }

  .home-hero-grid{
    min-height:560px;
  }

  .home-hero-copy{
    max-width:100%;
    padding-top:28px;
  }

  .home-hero-copy h1{
    font-size:38px;
    max-width:100%;
  }

  .home-hero-subline{
    max-width:100%;
    font-size:15px;
  }

  .hero-tags{
    max-width:100%;
  }

  .home-hero-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .home-hero-actions .btn{
    width:100%;
  }

  .phone-cta{
    min-height:66px;
  }

  .gallery-dialog{
    padding:16px;
    margin:14px auto;
  }

  .gallery-image-wrap{
    min-height:280px;
  }
}
/* =========================================================
   UNIVERSAL HEADER / MENU — COMMON ON ALL PAGES
   Paste at the END of /assets/css/site.css
   ========================================================= */

:root{
  --site-header-h: 78px;
  --site-header-max: 1320px;
  --site-header-bg: #ffffff;
  --site-header-line: rgba(18,30,44,.08);
  --site-header-shadow: 0 8px 20px rgba(18,30,44,.04);

  --site-header-brand: #17385e;
  --site-header-link: #415466;
  --site-header-link-hover: #0c59b7;
  --site-header-link-active: #0c59b7;

  --site-lang-bg: #f3f6fa;
  --site-lang-border: rgba(12,89,183,.14);
  --site-lang-text: #4a6074;
  --site-lang-active-ring: #e0b400;
  --site-lang-active-bg: #fffef7;
}

/* main header shell */
.site-header,
.site-header.mega-header{
  position: sticky;
  top: 0;
  z-index: 1200;
  background: var(--site-header-bg);
  border-bottom: 1px solid var(--site-header-line);
  box-shadow: var(--site-header-shadow);
  backdrop-filter: none;
}

/* force the header width to stay common even if page CSS changes .container */
.site-header .header-row{
  width: min(var(--site-header-max), calc(100% - 48px));
  margin: 0 auto;
  min-height: var(--site-header-h);
  display: flex;
  align-items: center;
  gap: 26px;
}

/* brand */
.site-header .brand{
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  text-decoration: none;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: .01em;
  line-height: 1;
  color: var(--site-header-brand);
}

/* desktop nav */
.site-header .main-nav.desktop-nav,
.site-header .desktop-nav{
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: nowrap;
}

/* supports BOTH:
   1) home page links with .nav-link
   2) product page links without .nav-link
*/
.site-header .main-nav.desktop-nav > a,
.site-header .desktop-nav > a,
.site-header .nav-link{
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: var(--site-header-h);
  padding: 0;
  white-space: nowrap;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--site-header-link);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition: color .18s ease;
}

.site-header .main-nav.desktop-nav > a:hover,
.site-header .desktop-nav > a:hover,
.site-header .nav-link:hover{
  color: var(--site-header-link-hover);
  background: transparent;
}

.site-header .main-nav.desktop-nav > a.active,
.site-header .desktop-nav > a.active,
.site-header .nav-link.active{
  color: var(--site-header-link-active);
  background: transparent;
}

.site-header .main-nav.desktop-nav > a.active::after,
.site-header .desktop-nav > a.active::after,
.site-header .nav-link.active::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: var(--site-header-link-active);
  border-radius: 2px 2px 0 0;
}

/* language switch */
.site-header .desktop-lang,
.site-header .lang-switch.desktop-lang{
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.site-header .desktop-lang a,
.site-header .lang-switch.desktop-lang a{
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--site-lang-bg);
  border: 1px solid var(--site-lang-border);
  color: var(--site-lang-text);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  transition: .18s ease;
}

.site-header .desktop-lang a:hover,
.site-header .lang-switch.desktop-lang a:hover{
  color: var(--site-header-link-hover);
  border-color: rgba(12,89,183,.28);
}

.site-header .desktop-lang a.active,
.site-header .lang-switch.desktop-lang a.active{
  border: 2px solid var(--site-lang-active-ring);
  color: var(--site-header-link-hover);
  background: var(--site-lang-active-bg);
}

/* mobile toggle */
.site-header .menu-toggle{
  display: none;
  width: 44px;
  height: 44px;
  margin-left: 8px;
  border-radius: 10px;
  border: 1px solid rgba(18,30,44,.12);
  background: #fff;
  padding: 10px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.site-header .menu-toggle span{
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #102030;
}

/* mobile menu */
.site-header .mobile-menu{
  display: none;
  background: #fff;
  border-top: 1px solid rgba(18,30,44,.08);
}

.site-header .mobile-menu.open{
  display: block;
}

/* supports BOTH home page and product page mobile structures */
.site-header .mobile-menu-inner,
.site-header .mobile-menu > .mobile-nav-links,
.site-header .mobile-menu > .mobile-lang-switch{
  width: min(var(--site-header-max), calc(100% - 48px));
  margin: 0 auto;
}

.site-header .mobile-menu-inner{
  padding: 14px 0 18px;
}

.site-header .mobile-menu > .mobile-nav-links{
  padding: 14px 0 0;
}

.site-header .mobile-menu > .mobile-lang-switch{
  padding: 14px 0 18px;
}

.site-header .mobile-nav-links{
  display: flex;
  flex-direction: column;
}

.site-header .mobile-nav-links a{
  padding: 12px 0;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: #24384d;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.site-header .mobile-nav-links a.active{
  color: var(--site-header-link-hover);
}

.site-header .mobile-lang-switch{
  margin-top: 14px;
  display: flex;
  gap: 10px;
}

.site-header .mobile-lang-switch a{
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--site-lang-bg);
  border: 1px solid var(--site-lang-border);
  color: var(--site-lang-text);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}

.site-header .mobile-lang-switch a.active{
  border: 2px solid var(--site-lang-active-ring);
  color: var(--site-header-link-hover);
  background: var(--site-lang-active-bg);
}

/* responsive */
@media (max-width: 1320px){
  .site-header .header-row{
    gap: 22px;
  }

  .site-header .main-nav.desktop-nav,
  .site-header .desktop-nav{
    gap: 20px;
  }

  .site-header .main-nav.desktop-nav > a,
  .site-header .desktop-nav > a,
  .site-header .nav-link{
    font-size: 12px;
  }
}

@media (max-width: 1100px){
  .site-header .main-nav.desktop-nav,
  .site-header .desktop-nav{
    gap: 14px;
  }

  .site-header .main-nav.desktop-nav > a,
  .site-header .desktop-nav > a,
  .site-header .nav-link{
    font-size: 11px;
  }

  .site-header .desktop-lang a,
  .site-header .lang-switch.desktop-lang a{
    width: 36px;
    height: 36px;
    font-size: 11px;
  }
}

@media (max-width: 980px){
  .site-header .header-row{
    width: min(var(--site-header-max), calc(100% - 26px));
    min-height: 74px;
  }

  .site-header .main-nav.desktop-nav,
  .site-header .desktop-nav,
  .site-header .desktop-lang,
  .site-header .lang-switch.desktop-lang{
    display: none;
  }

  .site-header .menu-toggle{
    display: flex;
  }

  .site-header .mobile-menu-inner,
  .site-header .mobile-menu > .mobile-nav-links,
  .site-header .mobile-menu > .mobile-lang-switch{
    width: min(var(--site-header-max), calc(100% - 26px));
  }
}

@media (max-width: 520px){
  .site-header .brand{
    font-size: 18px;
  }

  .site-header .mobile-lang-switch a{
    width: 34px;
    height: 34px;
    font-size: 11px;
  }
}
/* =========================================================
   PRODUCT PAGE MENU OVERRIDE
   Paste at the VERY END of /assets/css/landing-125x125.css
   ========================================================= */

body.series-page.industrial-series-page .site-header{
  position: sticky !important;
  top: 0 !important;
  z-index: 1200 !important;
  background: #ffffff !important;
  backdrop-filter: none !important;
  border-bottom: 1px solid rgba(18,30,44,.08) !important;
  box-shadow: 0 8px 20px rgba(18,30,44,.04) !important;
}

body.series-page.industrial-series-page .header-row{
  width: min(1320px, calc(100% - 48px)) !important;
  margin: 0 auto !important;
  min-height: 78px !important;
  display: grid !important;
  grid-template-columns: max-content minmax(0, 1fr) max-content !important;
  align-items: center !important;
  gap: 24px !important;
}

body.series-page.industrial-series-page .brand{
  white-space: nowrap !important;
  text-decoration: none !important;
  font-weight: 800 !important;
  font-size: 24px !important;
  letter-spacing: .01em !important;
  line-height: 1 !important;
  color: #17385e !important;
}

body.series-page.industrial-series-page .desktop-nav{
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 18px !important;
  flex-wrap: nowrap !important;
  min-width: 0 !important;
  overflow: hidden !important;
}

body.series-page.industrial-series-page .desktop-nav a{
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 78px !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  font-size: clamp(11px, 0.82vw, 13px) !important;
  font-weight: 600 !important;
  color: #415466 !important;
}

body.series-page.industrial-series-page .desktop-nav a:hover{
  background: transparent !important;
  color: #0c59b7 !important;
}

body.series-page.industrial-series-page .desktop-nav a.active{
  background: transparent !important;
  color: #0c59b7 !important;
  box-shadow: none !important;
}

body.series-page.industrial-series-page .desktop-nav a.active::after{
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: -1px !important;
  height: 3px !important;
  background: #0c59b7 !important;
  border-radius: 2px 2px 0 0 !important;
}

body.series-page.industrial-series-page .desktop-lang{
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-left: 0 !important;
  white-space: nowrap !important;
}

body.series-page.industrial-series-page .desktop-lang a{
  width: 42px !important;
  height: 42px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #4a6074 !important;
  border: 1px solid rgba(12,89,183,.14) !important;
  border-radius: 999px !important;
  background: #f3f6fa !important;
  box-shadow: none !important;
}

body.series-page.industrial-series-page .desktop-lang a:hover{
  border-color: rgba(12,89,183,.28) !important;
  color: #0c59b7 !important;
}

body.series-page.industrial-series-page .desktop-lang a.active{
  background: #fffef7 !important;
  border: 2px solid #e0b400 !important;
  color: #0c59b7 !important;
}

@media (max-width: 1320px){
  body.series-page.industrial-series-page .header-row{
    width: min(1320px, calc(100% - 32px)) !important;
    gap: 18px !important;
  }

  body.series-page.industrial-series-page .desktop-nav{
    gap: 14px !important;
  }
}

@media (max-width: 1180px){
  body.series-page.industrial-series-page .header-row{
    gap: 14px !important;
  }

  body.series-page.industrial-series-page .brand{
    font-size: 22px !important;
  }

  body.series-page.industrial-series-page .desktop-nav{
    gap: 10px !important;
  }

  body.series-page.industrial-series-page .desktop-nav a{
    font-size: 11px !important;
  }

  body.series-page.industrial-series-page .desktop-lang a{
    width: 38px !important;
    height: 38px !important;
    font-size: 11px !important;
  }
}

@media (max-width: 980px){
  body.series-page.industrial-series-page .header-row{
    width: min(1320px, calc(100% - 26px)) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 14px !important;
    min-height: 74px !important;
  }

  body.series-page.industrial-series-page .desktop-nav,
  body.series-page.industrial-series-page .desktop-lang{
    display: none !important;
  }

  body.series-page.industrial-series-page .menu-toggle{
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}