/* =====================================================
   ГЛОБАЛЬНЫЕ СТИЛИ САЙТА (БЕЗ MAIN CONTENT)
   Header, Footer, Navigation, Sidebar, etc.
   ===================================================== */

/* =====================================================
   CSS VARIABLES
   ===================================================== */
:root {
  --brand: #1A315F;
  --brandB: #4A90E2;
  --brandC: #1f3e74;
  --blackC:#000;
  --accent: #4A90E2;
  --ink: #000;
  --muted: #6b778c;
  --bg: #ffffff;
  --border: #e7ecf7;
  --shadow: 0 10px 30px rgba(0,0,0,.10);
  --nav-h: 100px;
  --nav-bg: rgba(255,255,255,1);
  --hover-bg: #EAF0FA;
  --brand-alpha: rgba(26,49,95,.85);
  --brand-soft: #1A315FB5;
  --brandA: rgba(26,49,95,.85);
  --card: #ffffff;
  --radius: 0px;
  --acc-speed: .55s; 

  /* Шрифты */
  --font-ui: "aglet-sans", "Rubik", system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans", Arial, sans-serif;
  --font-head: "futura-pt", "Jost", "Rubik", system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans", Arial, sans-serif;

  /* Веса */
  --w-light: 300;
  --w-regular: 400;
  --w-medium: 500;
  --w-semibold: 600;
  --w-bold: 700;
  --w-heavy: 800;

  /* Базовые размеры */
  --fz-xxs: clamp(12px, 0.80vw, 14px);
  --fz-xs: clamp(14px, 0.95vw, 16px);
  --fz-sm: clamp(16px, 1.05vw, 18px);
  --fz-md: clamp(18px, 1.25vw, 20px);
  --fz-lg: clamp(22px, 1.60vw, 28px);
  --fz-xl: clamp(28px, 2.20vw, 36px);
  --fz-2xl: clamp(36px, 3.20vw, 48px);
  --fz-3xl: clamp(44px, 4.40vw, 64px);
  --fz-4xl: clamp(56px, 5.60vw, 72px);

  /* Межстрочные */
  --lh-tight: 1.1;
  --lh-snug: 1.2;
  --lh-base: 1.35;
  --lh-comfy: 1.5;

  /* Буквенные интервалы */
  --track-0: 0;
  --track-cta: 0.04em;
  --track-eyebrow: 0.08em;

  /* Для Main Content */
  --sec-y: 30px;
  --sec-y-sm: 30px;
  --round-lg: 14px;
}
.copy  ul { 
    list-style: unset;
	margin-left: 20px;
 
}
/* =====================================================
   RESET & BASE
   ===================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-head);
  color: var(--ink);
  background: var(--bg);
  font-size: var(--fz-sm);
  line-height: var(--lh-comfy);
  font-weight: var(--w-regular);
  letter-spacing: var(--track-0);
}
 section .solutions {
    padding: 90px 0 90px 0;
  }
a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

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

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

/* =====================================================
   CONTAINERS
   ===================================================== */
.nav-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 28px;
}

@media (min-width: 1520px) {
  .nav-container {
    /* padding: 0 33px; */
    /* padding: 0 40px 0 0; */
  }
}

@media (min-width: 1920px) {
  .nav-container {
    padding: 0 40px 0 12px;
  }
}

.container {
  max-width: 1485px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (min-width: 1520px) {
  .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
  }
}

/* =====================================================
   HEADER & NAVIGATION
   ===================================================== */
.nav-shell {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 6px 12px rgba(0, 0, 0, .18);
}

.navbar {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

@media (max-width: 768px) {
  .nav-container {
    height: 74px;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  height: 36px;
  max-width: 130px;
}
.fa-bars:before, .fa-navicon:before {
    font-size: 25px;
}

/* Desktop Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5vw;
  font-weight: 500;
  text-transform: uppercase;
}

@media (min-width: 1520px) {
  .main-nav {
    gap: 50px;
  }
}

.main-nav > li {
  position: static;
}

.main-nav > li > a,
.main-nav > li > button.toplink {
  padding: 12px 14px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(1.25rem, 1.1vw + 0.3rem, 1.3rem);
  line-height: 1;
  color: var(--ink);
  font-weight: 300;
  transition: background 0.2s, color 0.2s;
  text-transform: uppercase;
}

.main-nav .chev {
  font-size: 0.8em;
  opacity: 0.7;
  transition: transform 0.2s;
}

.main-nav .has-sub.open .chev {
  transform: rotate(180deg);
}

/* Actions Bar */
.actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--hover-bg);
  color: var(--brand);
  transition: background 0.2s;
}

.icon:hover {
  background: var(--brand);
  color: #fff;
}

/* Language Dropdown (Desktop) */
.lang {
  position: relative;
  display: flex;
  align-items: center;
}

.lang-toggle {
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid #e4e9f7;
  background: #fff;
  color: var(--brand);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, color 0.2s;
}

.lang-toggle:hover {
  background: var(--brand);
  color: #fff;
}

.lang .dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  background: var(--brand);
  color: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 6px;
  display: none;
  min-width: 70px;
}

.lang .dropdown a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  color: #fff;
  transition: background 0.2s;
}

.lang .dropdown a:hover {
  background: rgba(255,255,255,.15);
}

.lang.open .dropdown {
  display: block;
}

/* Burger Menu (Mobile Only) */
.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 0px;
  background: #fff;
  color: var(--brand);
  transition: background 0.2s;
  align-items: center;
  justify-content: center;
}

.burger:hover {
  background: var(--hover-bg);
}

/* Mobile Contact Icons */
.mobile-contact-icons {
  display: none;
  align-items: center;
  gap: 8px;
}

/* =====================================================
   SEARCH OVERLAY
   ===================================================== */
.searchbar {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--nav-h);
  z-index: 1001;
  display: none;
  border-bottom: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
}

.searchbar[data-open="true"] {
  display: block;
}

.searchbar-inner {
  padding: 12px 0;
}

.search-form {
  display: flex;
  gap: 12px;
  align-items: center;
}

.search-form input {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 16px;
}

.search-form button {
  padding: 14px 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand));
  color: #fff;
  font-weight: 700;
  transition: opacity 0.2s;
}

.search-form button:hover {
  opacity: 0.9;
}

/* =====================================================
   SUBMENU (DESKTOP DROPDOWN)
   ===================================================== */
.submenu {
  position: absolute;
  left: 0;
  right: 0;
  top: 80%;
  transform: translateY(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.has-sub:hover .submenu,
.has-sub:focus-within .submenu,
.has-sub.open .submenu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.submenu-panel {
  background: #fff;
  border-top: 3px solid rgba(26, 49, 95, 0.13);
  box-shadow: var(--shadow);
}

.submenu .nav-container {
  padding: 18px 28px;
}

.submenu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.submenu h4 {
  margin: 0 0 8px;
  color: var(--brand);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
}

.submenu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 12px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 400;
  transition: background 0.2s;
}

.submenu a .ico {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--hover-bg);
  color: var(--brand);
  flex-shrink: 0;
}

.submenu a:hover {
  background: #F4F7FD;
}

.submenu small {
  display: block;
  color: var(--muted);
  margin-top: 3px;
}

/* =====================================================
   MOBILE PANEL
   ===================================================== */
.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 1202;
  display: flex;
  flex-direction: column;
  height: 100dvh;
  overflow: hidden;
  transform: translateY(-100%);
  transition: transform 0.28s ease;
}

.mobile-panel.open {
  transform: translateY(0);
}

.mobile-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/images/image_mb_background.png') center/cover no-repeat;
  transform: scale(1.04);
  z-index: 0;
  margin-top: 80px;
}

.mobile-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,-8.05) 0%, rgba(255,255,255,0.9) 40%, rgba(255,255,255,0.85) 100%);
  z-index: 1;
  pointer-events: none;
}

.mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #e6ebf8;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.mobile-head .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-panel .mobile-scroll {
  position: relative;
  z-index: 3;
  flex: 1;
  overflow: auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.m-headspace {
  height: 14vh;
  flex-shrink: 0;
}

.menu-wrap {
  position: relative;
  display: block;
  width: 100%;
}

.menu-wrap .m-underlay {
  position: absolute;
  inset: 0;
  height: auto;
  background: rgb(255 255 255 / 0%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
  z-index: 1;
}

.menu-wrap .m-list {
  position: relative;
  z-index: 2;
  padding-right: 20px;
}

#mobilePanel .m-list .m-link {
  background: transparent;
  color: #0e1a34;
  font-family: var(--font-ui);
  font-weight: var(--w-regular);
  font-size: clamp(20px, 5.2vw, 38px);
  line-height: 1.2;
  padding: 24px 16px;
  justify-content: flex-end;
  border-radius: 0;
  text-align: right;
  padding-right: 70px;
  padding-left: 16px;
  position: relative;
}
/* Пункты меню — вправо */
#mobilePanel .m-list .m-link{
text-align: right !important;
justify-content: flex-end !important;
padding-right: 70px; /* упор к правому краю */
padding-left: 16px; /* чуть меньше слева */
}
/* Мобильно-узкие экраны — чуть компактнее отступы */
@media (max-width: 360px){
#mobilePanel .m-list .m-link{ padding-right: 16px; }
}
/* Пункты мобильного меню (только в панели) */
#mobilePanel .m-list .m-link{
background:transparent; color:#0e1a34;
font-family: var(--font-ui);
font-weight: var(--w-regular);
font-size: clamp(20px, 5.2vw, 38px);
line-height:1.2;
padding:24px 16px;
border-radius:0;

}
/* линии между пунктами меню */
.mobile-panel .m-link{
  position: relative; /* нужно для ::after */
}
 .m-link {
      position: relative;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 44px 12px 14px;
      border-radius: 12px;
      background: #f4f6fb;
      color: var(--brand);
      font-weight: 700;
      width: 100%;
      transition: background 0.2s;
    }

#mobilePanel .m-list .m-link::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 0%;
  bottom: 0;
  height: 1px;
  background: rgba(0,0,0,.12);
}

#mobilePanel .m-list .m-link:last-child::after {
  display: none;
}

#mobilePanel .m-list .m-link:nth-child(1)::after { left: 48%; right: 0%; }
#mobilePanel .m-list .m-link:nth-child(2)::after { left: 28%; right: 0%; }
#mobilePanel .m-list .m-link:nth-child(3)::after { left: 28%; right: 0%; }
#mobilePanel .m-list .m-link:nth-child(4)::after { left: 48%; right: 0%; }

#mobilePanel .m-list .m-link:hover {
  background: rgba(255,255,255,.35);
}

#mobilePanel .m-list .m-link.active {
  color: #1A315F;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 12px;
}

#mobilePanel .m-list .m-link i:first-child {
  display: none;
}

.m-lang {
  margin-top: 12px;
  padding: 0 20px;
  text-align: left;
}

.m-lang .lang-current {
  background: transparent;
  border: 0;
  font: inherit;
  cursor: pointer;
}

.m-bottom-stroke {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: linear-gradient(90deg, #0c2a57, #1a315f, #0c2a57);
  z-index: 2;
  pointer-events: none;
}

/* Mobile Language Chips */
.lang-chips {
  display: flex;
  gap: 8px;
}

.lang-chip {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #e4e9f7;
  background: #fff;
  color: var(--brand);
  font-weight: 800;
  transition: all 0.2s;
}

.lang-chip.active,
.lang-chip:hover {
  background: var(--brand-soft);
  color: #fff;
}

/* Scroll Lock */
html.no-scroll,
body.no-scroll {
  overflow: hidden;
  height: 100dvh;
  touch-action: none;
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  margin-top: 0;
  background: #8f8c87;
  color: #fff;
  /*text-align: center;*/
}

.site-footer .container {
  padding: 40px 40px 10px;
}

.footer-inner {
  padding: 40px 0 24px;
}

.fgrid {
  display: grid;
  grid-template-columns: 1fr 1fr 0fr;
  gap: 28px;
}

.fcol h4 {
  margin: 0 0 12px;
  letter-spacing: 0.2px;
  font-size: 16px;
}

.fcol ul {
  display: grid;
  gap: 8px;
}

.fcol a {
  transition: color 0.2s;
}

.fcol a:hover {
  color: var(--brand);
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 12px;
   justify-content: center;
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  color: #fff;
  transition: background 0.2s;
}

.socials a:hover {
  background: rgba(255, 255, 255, 0.25);
}

.footbar {
 /*  border-top: 1px solid rgba(255, 255, 255, 0.2);*/
  padding: 18px 0;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}


.footbar{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;

  /* прежние отступы/бордер у тебя уже есть */
}

/* выравнивания внутри колонок */
.footbar .fb-left{  justify-self: start;   /*padding-left: 30%;*/
    padding-bottom: 10px;
} 
.footbar .fb-center{ justify-self: center; text-align: center; }

/* одиночная иконка слева стилизована как в .socials */
.footbar .social-single{
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background .2s;
}

.footbar .social-single img{
  max-width: 34px; height: auto;
}



.footlinks {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}



/* Footer Mobile Accordion */
.f-accordion {
  display: none;
  gap: 10px;
}

.f-acc {
  overflow: hidden;
}

.f-acc summary {
  list-style: none;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  transition: background 0.6s;
  font-size: 20px;
  font-weight: var(--w-bold);
}

.f-acc li {
  font-weight: var(--w-light);
}

.f-acc summary::-webkit-details-marker {
  display: none;
}

@media (hover: none) and (pointer: coarse){
  .f-acc summary{
    -webkit-tap-highlight-color: transparent; /* iOS/Android */
  }
  .f-acc summary:focus,
  .f-acc summary:focus-visible{
    outline: none;
    box-shadow: none;
  }
}
/* не даём выделять текст заголовка при тапе */
.f-acc summary{ user-select: none; }
/* и ссылки внутри — без серой вспышки при тапе */
.f-acc a{ -webkit-tap-highlight-color: rgba(0,0,0,0); }


.f-acc .content {
  padding: 0 14px 14px;
}

.f-acc .content ul {
  display: grid;
  gap: 6px;
}

@media (max-width: 640px) {
  .f-acc .content{
    display: grid;
    grid-template-rows: 0fr;          /* закрыто */
    transition: grid-template-rows var(--acc-speed) ease;
  }
  .f-acc[open] .content{
    grid-template-rows: 1fr;          /* открыто */
  }
  /* чтобы внутри ничего не «выпирало» при 0fr */
  .f-acc .content > *{ overflow: hidden; }
}

/* ============================================
       FLOATING CONTACT SIDEBAR 
    ============================================ */

 /* Floating Phone Button (с PNG) */
    .floating-phone-btn {
      position: fixed;
      right: 4.1vw;
      transform: translateX(50%);
      top: 50vh;
      margin-top: -28px;
      z-index: 1001;
      width: 64px;
      height: 64px;
      border-radius: 16px;
      background: none;
      border: none;
      cursor: pointer;
      display: grid;
      place-items: center;
      /*box-shadow: 0 6px 24px rgba(26, 49, 95, 0.3);*/
      transition: all 0.3s ease;
    }



    .floating-phone-btn:hover {
      transform: translateX(50%) scale(1.08);
     /* box-shadow: 0 8px 32px rgba(26, 49, 95, 0.4);*/
    }

.floating-phone-btn__icon {
      width: 60px;
      height: 60px;
      display: block;
      object-fit: contain;
      image-rendering: -webkit-optimize-contrast;
      filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.05));
	  border-radius: 6px;
    }

	
			  /* Мобильная версия */
		@media (max-width: 768px) {
		#contactSidebar { top: 74px; height: calc(100dvh - 74px); }
		#sidebarBackdrop { top: 74px; }
		}


		/* Десктопная версия */
		@media (min-width: 981px) {
		#contactSidebar { top: 100px; height: calc(100dvh - 100px); }
		#sidebarBackdrop { top: 100px; }
		}


		header, .site-header { z-index: 1200; position: sticky; top: 0; }
		#contactSidebar { z-index: 1100; }
		#sidebarBackdrop { z-index: 1050; }
	 
    .contact-sidebar {
      position: fixed;
      right: 0;
      top: 0;
      bottom: 0;
      width: 100%;
      max-width: 350px;
      background: #fff;
      box-shadow: -4px 0 40px rgba(0, 0, 0, 0.2);
      z-index: 1002;
      transform: translateX(100%);
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }

    .contact-sidebar.open {
      transform: translateX(0);
    }

    .sidebar-content {
      padding: 40px 20px 60px;
      overflow-y: auto;
      flex: 1;
      background: #fff;
      display: grid;
      grid-template-columns: 3fr 1fr;
      gap: 10px;
      position: relative;
     /* padding-top: 100px;*/
	 padding-top: 135px;
    }

    .sidebar-content::-webkit-scrollbar { width: 6px; }
    .sidebar-content::-webkit-scrollbar-track { background: #f1f1f1; }
    .sidebar-content::-webkit-scrollbar-thumb { background: #4a90e2; border-radius: 3px; }

    .content-main { width: 100%; margin-left: 20px; }

    .sidebar-brand {
      font-size: 11px;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--muted);
      margin-bottom: 16px;
	  font-family: var(--font-ui);
    }

    .sidebar-title {
      font-size: 32px;
      font-weight: 700;
      color: var(--ink);
      line-height: 1.1;
      margin-bottom: 30px;
	  font-family: var(--font-head);
    }

    .sidebar-title .line1 { display: block; color: var(--ink); }
    .sidebar-title .line2 { display: block; color: var(--brand); }

    .contact-block { margin-bottom: 0; }
    .contact-block:last-of-type { border-bottom: none; }

    .contact-link {
      display: block;
      padding: 16px 0;
      text-decoration: none;
      color: var(--ink);
      transition: all 0.3s ease;
    }
    .contact-link:hover .contact-text { color: var(--brand); }

    .contact-text { font-family: var(--font-head); font-size: 18px; font-weight: 400; color: var(--ink); line-height: 1.6; transition: color 0.3s ease; }
    .contact-text.large { font-weight: 700; }
    .contact-text.email { color: var(--brand); text-decoration: underline; font-weight: 400; }

    .fa-arrow-right:before { content: "\f054"; }

    .social-column {
      display: flex;
      flex-direction: column;
      gap: 0;
      align-items: center;
      justify-content: flex-start;
      position: relative;
      padding-top: 17vh;
    }

    .social-column p { padding: 1px 0; margin: 4px; }

    .close-arrow {
      width: 48px;
      height: 48px;
      background: transparent;
      border: none;
      color: var(--brand);
      cursor: pointer;
      font-size: 40px;
      transition: all 0.3s ease;
      margin-bottom: 10px;
      display: grid;
      place-items: center;
    }

    .close-arrow:hover { color: var(--ink); transform: scale(1.1); }

    .social-link {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      background: #d0d0d0;
      border-radius: 5px;
      text-decoration: none;
      color: #fff;
      font-size: 24px;
      transition: all 0.3s ease;
    }

    .social-link:hover { background: var(--brand); color: #fff; transform: scale(1.05); }

 
 .sidebar-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.4);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
      z-index: 998;
    }

    .sidebar-backdrop.open { opacity: 1; pointer-events: auto; }

   @media (max-width: 768px) {
      .floating-phone-btn { width: 60px; height: 60px; border-radius: 14px; right: 9.5vw; }
      .contact-sidebar { max-width: 100%; }
      .social-column { padding-top: 17vh; }
      /* .sidebar-content { grid-template-columns: 1fr auto; gap: 20px; padding-top: 100px; }*/
       /*.sidebar-brand { font-size: 10px; }*/
      /* .sidebar-title { font-size: 28px; margin-bottom: 24px; }*/
      .contact-link { padding: 16px 0; }
       /*.contact-text { font-size: 13px; }*/
      .contact-text.large { font-size: 16px; }
      .close-arrow { width: 60px; height: 60px; font-size: 44px; }
      .social-link { width: 60px; height: 60px; font-size: 22px; }
    }
	

   /* @media (max-width: 480px) {
      .sidebar-title { font-size: 24px; }
      .contact-text { font-size: 12px; }
      .contact-text.large { font-size: 15px; }
      .close-arrow { width: 40px; height: 40px; font-size: 22px; }
      .social-link { width: 40px; height: 40px; font-size: 20px; }
    }*/
	 /* ============================================
       ENDE FLOATING CONTACT SIDEBAR 
    ============================================ */
/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .searchbar {
    display: none !important;
  }

  .burger {
    display: flex;
  }

  .lang {
    display: none;
  }

  .search-toggle {
    display: none;
  }

  .mobile-contact-icons {
    display: flex;
  }

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

  .navbar {
    gap: 12px;
  }

  .brand {
    justify-content: center;
  }

  .burger {
    order: 1;
  }

  .actions {
    order: 3;
    gap: 8px;
  }
  .footbar .fb-left{ padding-left: 46%;

} 
}

@media (max-width: 768px) {
  .contact-sidebar { max-width: 100%; }
}

@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }

  .site-footer .container {
    padding: 40px 20px 10px;
  }

  .fgrid {
    display: none;
  }

  .f-accordion {
    display: grid;
    margin-left: -20px;
    margin-right: -20px;
	    text-align: center;
  }

  .f-acc {
    border-radius: 0;
  }

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

  .nav-container {
    padding: 0 16px;
  }
}

@media (max-width: 360px) {
  #mobilePanel .m-list .m-link { padding-left: 16px; padding-right: 16px; }
}

@media (max-width: 768px) {
  #mobilePanel .m-underlay {
    display: none;
  }
  #mobilePanel .m-headspace { height: 18vh; }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

	@media (max-width:1200px){
      .solutions-grid{grid-template-columns:1fr 1fr}
    }
    @media (max-width:1024px){
      .hero{min-height:460px}
      .news-card .thumb{height:260px}
      .news-card.tall .thumb{height:300px}
      .cta-box{grid-template-columns:1fr}
      .cta-box .img{clip-path:none}
      .cta-box.invrel .img{height:320px}
    }
    @media (max-width:640px){

      .solutions-grid{grid-template-columns:1fr}
      .navbar{height:auto;padding:16px 0;flex-wrap:wrap}
      .main-nav{flex-wrap:wrap;gap:12px}
      .actions{width:100%;justify-content:flex-end;margin-top:6px}
    }

/* === Floating Phone Button — unify between design2 & design3 === */



 /*Безопасная зона (iPhone 16 Pro Max и др.) 
@supports (padding:max(0px)){
.floating-phone-btn{ right: calc(12.9vw + env(safe-area-inset-right, 0px)); }
}	*/
	
