#footer {
    border-radius: 0px 0px 12px 12px;
    padding: 32px 16px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.footer_wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
}

.footer_logo {
    min-width: 109px;
    height: 42px;
    background: url(../images/logo.svg) center / contain no-repeat;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer_logo:hover {
    transform: scale(1.02);
}

.footer_title {
    color: #F2F2F2;
    font-family: "HelveticaNeue-Bold";
    font-size: 24px;
    line-height: 20px;
}

.footer_part {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer_content {
    display: flex;
    flex-direction: row;
    max-width: 869px;
    width: 100%;
    justify-content: space-between;
}

.footer_point {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer_link {
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer_link:hover {
    color: #F2F2F2;
}

@media (max-width: 730px) {

    .footer_wrapper {
        flex-direction: column;
    }

}

@media (max-width: 575px) {
    .footer_content {
        flex-direction: column;
        max-width: 100%;
        gap: 24px;
    }
}
/* =========================
   L2 PREMIUM FOOTER (DARK)
   paste to end of footer.css
   ========================= */

#footer{
  position: relative;
  border-radius: 0px 0px 14px 14px;
  padding: 22px 16px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;

  /* премиум фон */
  background: linear-gradient(180deg, rgba(25,25,25,.98), rgba(14,14,14,.98));
  border: 1px solid rgba(255,200,120,.10);
  box-shadow: 0 22px 70px rgba(0,0,0,.65);
  overflow: hidden;
}

/* тонкая "L2" линия сверху */
#footer::before{
  content:"";
  position:absolute;
  left: 14px;
  right: 14px;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,200,120,.55), transparent);
  pointer-events:none;
}

/* легкий “дым” внутри */
#footer::after{
  content:"";
  position:absolute;
  inset: 0;
  background:
    radial-gradient(800px 220px at 20% 0%, rgba(255,200,120,.06), transparent 60%),
    radial-gradient(700px 260px at 90% 20%, rgba(255,255,255,.03), transparent 60%);
  pointer-events:none;
  opacity: .9;
}

/* контейнер */
.footer_wrapper{
  position: relative;
  z-index: 1;
  display:flex;
  flex-direction: row;
  align-items:flex-start;
  justify-content: space-between;
  gap: 18px;
}

/* логотип */
.footer_logo{
  min-width: 128px;
  height: 44px;
  background: url(../images/logo.svg) center / contain no-repeat;
  transition: transform .22s ease, filter .22s ease, opacity .22s ease;
  cursor: pointer;
  filter: drop-shadow(0 0 10px rgba(255,200,120,.18));
  opacity: .95;
}
.footer_logo:hover{
  transform: scale(1.03);
  filter: drop-shadow(0 0 14px rgba(255,200,120,.28));
  opacity: 1;
}

/* правая часть */
.footer_content{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  max-width: 869px;
  width: 100%;
}

/* блоки (Контакты/Полезно/Инфо) — как панели UI */
.footer_part{
  display:flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px 14px 12px;
  border-radius: 12px;

  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(0,0,0,.18));
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 14px 40px rgba(0,0,0,.45), inset 0 0 0 1px rgba(255,255,255,.03);
}

/* заголовки */
.footer_title{
  color: #F2F2F2;
  font-family: "HelveticaNeue-Bold";
  font-size: 14px;
  line-height: 120%;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0;
}

/* небольшая линия под заголовком */
.footer_title::after{
  content:"";
  display:block;
  margin-top: 10px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,200,120,.28), transparent);
  opacity: .95;
}

/* ссылки */
.footer_point{
  display:flex;
  flex-direction: column;
  gap: 8px;
}

.footer_link{
  color: rgba(242,242,242,.72);
  font-family: "HelveticaNeue-Medium";
  font-size: 14px;
  line-height: 120%;
  text-decoration: none;

  transition: color .18s ease, transform .18s ease, opacity .18s ease;
  opacity: .98;
}
.footer_link:hover{
  color: #ffe9b7;
  transform: translateX(2px);
  opacity: 1;
}

/* мобилка */
@media (max-width: 730px){
  #footer{ padding: 18px 14px; border-radius: 0; }
  .footer_wrapper{ flex-direction: column; gap: 14px; }
  .footer_logo{ width: 160px; height: 46px; }
  .footer_content{ grid-template-columns: 1fr; max-width: 100%; }
  .footer_part{ padding: 14px; }
}

/* маленькие экраны */
@media (max-width: 575px){
  .footer_content{ gap: 12px; }
}

/* =========================
   FOOTER v2 — CLEAN L2 UI
   paste to END of footer.css
   ========================= */

/* базовый блок */
#footer{
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;

  padding: 22px 16px;
  border-radius: 0 0 14px 14px;

  background: #121212;
  border-top: 1px solid rgba(255,200,120,.14);
  box-shadow: 0 18px 60px rgba(0,0,0,.55);

  position: relative;
  overflow: hidden;
}

/* тонкая "линия UI" сверху */
#footer::before{
  content:"";
  position:absolute;
  left:16px; right:16px; top:0;
  height:2px;
  background: linear-gradient(90deg, transparent, rgba(255,200,120,.45), transparent);
  pointer-events:none;
  opacity:.9;
}

/* раскладка */
.footer_wrapper{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 18px;
}

/* лого */
.footer_logo{
  min-width: 120px;
  height: 44px;
  background: url(../images/logo.svg) center / contain no-repeat;
  cursor: pointer;
  transition: transform .2s ease, filter .2s ease, opacity .2s ease;
  filter: drop-shadow(0 0 10px rgba(255,200,120,.16));
  opacity: .95;
}
.footer_logo:hover{
  transform: scale(1.03);
  filter: drop-shadow(0 0 14px rgba(255,200,120,.26));
  opacity: 1;
}

/* секции справа */
.footer_content{
  width: 100%;
  max-width: 880px;

  display:flex;
  justify-content: space-between;
  gap: 12px;
}

/* каждый столбец — “плашка” */
.footer_part{
  flex: 1;
  min-width: 0;

  padding: 14px 14px 12px;
  border-radius: 12px;

  background: #161616;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.25);
}

/* заголовок */
.footer_title{
  color: #F2F2F2;
  font-family: "HelveticaNeue-Bold";
  font-size: 14px;
  line-height: 120%;
  letter-spacing: .10em;
  text-transform: uppercase;
  margin: 0 0 10px 0;
}

/* разделитель под заголовком */
.footer_title::after{
  content:"";
  display:block;
  margin-top: 10px;
  height: 1px;
  background: rgba(255,200,120,.18);
}

/* список ссылок */
.footer_point{
  display:flex;
  flex-direction: column;
  gap: 10px;
}

/* ссылки */
.footer_link{
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: rgba(242,242,242,.75);
  font-family: "HelveticaNeue-Medium";
  font-size: 14px;
  line-height: 120%;
  text-decoration: none;

  transition: color .18s ease, transform .18s ease, opacity .18s ease;
  opacity: .98;
}

/* маленькая “точка” слева — как маркер */
.footer_link::before{
  content:"";
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: rgba(255,200,120,.35);
  box-shadow: 0 0 0 1px rgba(0,0,0,.35);
  flex: 0 0 auto;
}

.footer_link:hover{
  color: #ffe9b7;
  transform: translateX(2px);
  opacity: 1;
}

/* =========================
   MOBILE OPTIMIZATION
   ========================= */

@media (max-width: 900px){
  #footer{
    border-radius: 0;
    padding: 18px 14px;
  }

  .footer_wrapper{
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  /* лого по центру + больше тапа */
  .footer_logo{
    width: 170px;
    height: 46px;
    margin: 0 auto;
  }

  /* секции в одну колонку */
  .footer_content{
    flex-direction: column;
    max-width: 100%;
    gap: 10px;
  }

  .footer_part{
    padding: 14px;
  }

  /* крупнее ссылки для пальца */
  .footer_link{
    font-size: 15px;
    padding: 10px 10px;
    border-radius: 10px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.05);
  }
  .footer_link:hover{
    transform: none; /* на мобиле не надо ездить */
  }
}

@media (max-width: 420px){
  .footer_title{ font-size: 13px; }
  .footer_link{ font-size: 14px; padding: 10px; }
}
/* =========================
   L2 PREMIUM FOOTER (DARK)
   add to end of footer.css
   ========================= */

#footer{
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 18px;

  padding: 26px 26px;
  border-radius: 0 0 18px 18px;

  background: linear-gradient(180deg, rgba(20,20,20,.92), rgba(10,10,10,.96));
  border: 1px solid rgba(255,200,120,.12);
  box-shadow: 0 26px 80px rgba(0,0,0,.65), inset 0 0 0 1px rgba(255,255,255,.03);

  position: relative;
  overflow: hidden;
}

/* фирменная L2 линия сверху */
#footer::before{
  content:"";
  position:absolute;
  top:0;
  left:26px;
  right:26px;
  height:2px;
  background: linear-gradient(90deg, transparent, rgba(255,200,120,.55), transparent);
  opacity:.9;
  pointer-events:none;
}

/* лёгкая “аура” */
#footer::after{
  content:"";
  position:absolute;
  inset:-30%;
  background:
    radial-gradient(40% 35% at 20% 20%, rgba(255,200,120,.10), transparent 60%),
    radial-gradient(35% 30% at 80% 40%, rgba(120,180,255,.07), transparent 60%),
    radial-gradient(40% 40% at 50% 100%, rgba(255,80,80,.06), transparent 65%);
  filter: blur(10px);
  pointer-events:none;
  opacity:.85;
}

.footer_wrapper,
.footer_wrapper *{
  position: relative;
  z-index: 2;
}

.footer_wrapper{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 26px;
}

.footer_logo{
  min-width: 120px;
  height: 44px;
  background: url(../images/logo.svg) center/contain no-repeat;
  filter: drop-shadow(0 0 10px rgba(255,200,120,.18));
  transition: transform .2s ease, filter .2s ease;
}

.footer_logo:hover{
  transform: translateY(-1px) scale(1.02);
  filter: drop-shadow(0 0 14px rgba(255,200,120,.28));
}

/* колонки */
.footer_content{
  display:flex;
  width: 100%;
  max-width: 880px;
  justify-content: space-between;
  gap: 18px;
}

/* каждая секция как “панель” */
.footer_part{
  display:flex;
  flex-direction:column;
  gap: 12px;
  min-width: 220px;

  padding: 14px 14px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.06);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(0,0,0,.18));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
}

.footer_title{
  font-family: "HelveticaNeue-Bold";
  font-size: 16px;
  line-height: 120%;
  color: #F2F2F2;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(255,200,120,.14);
}

/* список ссылок */
.footer_point{
  display:flex;
  flex-direction:column;
  gap: 8px;
}

.footer_link{
  color: rgba(242,242,242,.78);
  font-family: "HelveticaNeue-Medium";
  font-size: 14px;
  letter-spacing: .02em;
  text-decoration: none;

  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0);
  background: transparent;

  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}

.footer_link:hover{
  color:#F2F2F2;
  background: rgba(255,200,120,.08);
  border-color: rgba(255,200,120,.18);
  transform: translateY(-1px);
}

/* =========================
   MOBILE OPTIMIZATION
   ========================= */

@media (max-width: 900px){
  #footer{
    margin: 0 16px 16px;
    padding: 22px 18px;
    border-radius: 16px;
  }

  .footer_wrapper{
    flex-direction: column;
    gap: 16px;
  }

  .footer_logo{
    height: 40px;
    min-width: 110px;
  }

  .footer_content{
    flex-direction: column;
    max-width: 100%;
    gap: 12px;
  }

  .footer_part{
    min-width: unset;
    padding: 14px;
  }

  /* в мобиле ссылки в 2 колонки внутри секции (если много) */
  .footer_point{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .footer_link{
    text-align: center;
    padding: 10px 10px;
  }
}

@media (max-width: 480px){
  #footer{
    margin: 0 12px 14px;
    padding: 18px 14px;
  }

  .footer_point{
    grid-template-columns: 1fr; /* на совсем маленьких — в 1 колонку */
  }

  .footer_title{
    font-size: 15px;
  }
}

/* =========================
   L2-SERVER PREMIUM FOOTER (OUR STYLE)
   paste to END of footer.css
   ========================= */

#footer{
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 18px;
  padding: 26px 26px;

  border-radius: 0 0 18px 18px;
  position: relative;
  overflow: hidden;

  /* тёмная панель + “премиум” глубина */
  background: linear-gradient(180deg, rgba(20,20,20,.92), rgba(10,10,10,.96));
  border: 1px solid rgba(255,200,120,.12);
  box-shadow:
    0 26px 80px rgba(0,0,0,.65),
    inset 0 0 0 1px rgba(255,255,255,.03);
}

/* верхняя “UI-линия” */
#footer::before{
  content:"";
  position:absolute;
  top:0;
  left:26px;
  right:26px;
  height:2px;
  background: linear-gradient(90deg,
    transparent,
    rgba(255,200,120,.55),
    rgba(170,60,60,.45),
    rgba(255,200,120,.55),
    transparent
  );
  opacity:.9;
  pointer-events:none;
}

/* аура/дым */
#footer::after{
  content:"";
  position:absolute;
  inset:-30%;
  background:
    radial-gradient(40% 35% at 20% 20%, rgba(255,200,120,.10), transparent 60%),
    radial-gradient(35% 30% at 80% 40%, rgba(170,60,60,.10), transparent 60%),
    radial-gradient(40% 40% at 50% 100%, rgba(120,180,255,.06), transparent 65%);
  filter: blur(10px);
  pointer-events:none;
  opacity:.85;
}

/* чтобы контент был поверх “ауры” */
.footer_wrapper,
.footer_wrapper *{
  position: relative;
  z-index: 2;
}

.footer_wrapper{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 26px;
}

/* лого: чуть “дороже” */
.footer_logo{
  min-width: 120px;
  height: 44px;
  background: url(../images/logo.svg) center/contain no-repeat;
  filter: drop-shadow(0 0 10px rgba(255,200,120,.18));
  transition: transform .2s ease, filter .2s ease, opacity .2s ease;
  opacity: .95;
  cursor: pointer;
}
.footer_logo:hover{
  transform: translateY(-1px) scale(1.02);
  filter: drop-shadow(0 0 14px rgba(255,200,120,.28));
  opacity: 1;
}

/* колонки */
.footer_content{
  width: 100%;
  max-width: 880px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

/* панели секций */
.footer_part{
  display:flex;
  flex-direction:column;
  gap: 12px;

  padding: 14px 14px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.06);

  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(0,0,0,.18));
  box-shadow:
    0 14px 40px rgba(0,0,0,.45),
    inset 0 0 0 1px rgba(255,255,255,.03);
}

/* заголовки секций */
.footer_title{
  font-family: "HelveticaNeue-Bold";
  font-size: 14px;
  line-height: 120%;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: #F2F2F2;
  text-shadow: 0 0 10px rgba(255,200,120,.14);
  margin: 0;
}
.footer_title::after{
  content:"";
  display:block;
  margin-top: 10px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,200,120,.28), rgba(170,60,60,.18), transparent);
  opacity: .95;
}

/* ссылки */
.footer_point{
  display:flex;
  flex-direction: column;
  gap: 10px;
}

.footer_link{
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 9px 10px;
  border-radius: 12px;

  color: rgba(242,242,242,.78);
  font-family: "HelveticaNeue-Medium";
  font-size: 14px;
  line-height: 120%;
  text-decoration: none;

  background: transparent;
  border: 1px solid rgba(255,255,255,0);

  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  opacity: .98;
}

/* маркер слева */
.footer_link::before{
  content:"";
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: rgba(255,200,120,.35);
  box-shadow: 0 0 0 1px rgba(0,0,0,.35);
  flex: 0 0 auto;
}

.footer_link:hover{
  color: #ffe9b7;
  background: rgba(170,60,60,.10);
  border-color: rgba(170,60,60,.22);
  transform: translateY(-1px);
  opacity: 1;
}

/* ===== MOBILE ===== */
@media (max-width: 900px){
  #footer{
    margin: 0 16px 16px;
    padding: 22px 18px;
    border-radius: 16px;
  }
  .footer_wrapper{
    flex-direction: column;
    gap: 16px;
  }
  .footer_logo{
    height: 40px;
    min-width: 110px;
    margin: 0 auto;
  }
  .footer_content{
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 12px;
  }
  .footer_part{
    padding: 14px;
  }
  .footer_link{
    font-size: 15px;
    padding: 10px 10px;
  }
  .footer_link:hover{
    transform: none; /* на мобиле без “прыжков” */
  }
}
