/* Общие дополнения для вынесенного layout */
.header__nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.header__nav-link--dropdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.header__nav-link--dropdown::after {
  content: '';
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform .2s ease;
}

.header__dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 320px;
  padding: 12px;
  border: 1px solid rgba(228,232,240,.9);
  border-radius: 16px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 18px 48px rgba(0,0,0,.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 220;
  backdrop-filter: blur(12px);
}

.header__nav-item--dropdown:hover .header__dropdown,
.header__nav-item--dropdown:focus-within .header__dropdown,
.header__nav-item--dropdown.is-open .header__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.header__nav-item--dropdown:hover .header__nav-link--dropdown::after,
.header__nav-item--dropdown:focus-within .header__nav-link--dropdown::after,
.header__nav-item--dropdown.is-open .header__nav-link--dropdown::after {
  transform: rotate(225deg) translateY(-1px);
}

.header__dropdown-link {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-muted, var(--muted, #5A6070));
  transition: background .2s ease, color .2s ease;
}

.header__dropdown-link:hover,
.header__dropdown-link.is-active {
  background: var(--blue-light, rgba(19,84,249,.08));
  color: var(--blue, #1354F9);
}

.footer__info--meta {
  margin-top: 6px;
}

@media (max-width: 1024px) {
  .header__dropdown {
    min-width: 280px;
  }
}

@media (max-width: 768px) {
  .header__dropdown {
    display: none;
  }
}

/* Кнопка */

.fcta {
  position: fixed; bottom: 50px; right: 50px; z-index: 500;
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
}
.fcta__trigger {
  position: relative; width: 60px; height: 60px; border-radius: 50%;
  background: var(--page-accent, #1354F9); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,.28);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s, background .3s;
  flex-shrink: 0;
}
.fcta__trigger:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(0,0,0,.35); }
.fcta.open .fcta__trigger { background: #1E293B; }
.fcta__trigger-icon {
  position: absolute; display: flex; align-items: center; justify-content: center; color: #fff;
  transition: opacity .25s, transform .25s;
}
.fcta__trigger-icon--open  { opacity: 1; transform: scale(1) rotate(0deg); }
.fcta__trigger-icon--close { opacity: 0; transform: scale(.4) rotate(-90deg); }
.fcta.open .fcta__trigger-icon--open  { opacity: 0; transform: scale(.4) rotate(90deg); }
.fcta.open .fcta__trigger-icon--close { opacity: 1; transform: scale(1) rotate(0deg); }
.fcta__pulse {
  position: absolute; inset: -5px; border-radius: 50%;
  border: 2px solid var(--page-accent, #1354F9);
  animation: fctaPulse 2.5s ease-out infinite;
}
.fcta.open .fcta__pulse { animation: none; opacity: 0; }
@keyframes fctaPulse {
  0%   { transform: scale(1);    opacity: .6; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}
.fcta__items { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; pointer-events: none; }
.fcta__item {
  display: flex; align-items: center; gap: 10px;
  background: #0A1628; border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px; padding: 10px 18px 10px 12px;
  color: #fff; font-family: 'Inter', sans-serif; font-size: .85rem; font-weight: 600;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,.3); backdrop-filter: blur(12px);
  opacity: 0; transform: translateY(14px) scale(.9); pointer-events: none;
  transition: opacity .2s, transform .2s, background .2s, box-shadow .2s;
}
.fcta__item:hover { background: #132338; box-shadow: 0 6px 28px rgba(0,0,0,.4); transform: translateY(-1px) scale(1) !important; }
.fcta__item-icon {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.fcta__item--call .fcta__item-icon { background: rgba(0,212,180,.2); color: #00D4B4; }
.fcta__item--form .fcta__item-icon { background: rgba(19,84,249,.25); color: #7CB9FF; }
.fcta__item--call:hover .fcta__item-icon { background: rgba(0,212,180,.35); }
.fcta__item--form:hover .fcta__item-icon { background: rgba(19,84,249,.45); }
.fcta.open .fcta__items { pointer-events: all; }
.fcta.open .fcta__item   { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }
.fcta.open #fctaCall { transition: opacity .25s .06s, transform .32s .06s cubic-bezier(.34,1.56,.64,1), background .2s, box-shadow .2s; }
.fcta.open #fctaForm { transition: opacity .25s .14s, transform .32s .14s cubic-bezier(.34,1.56,.64,1), background .2s, box-shadow .2s; }
@media (max-width: 768px) {
  .fcta { right: auto; left: 20px; bottom: 20px; align-items: flex-start; }
  .fcta__items { align-items: flex-start; }
  .fcta__item  { flex-direction: row-reverse; padding: 10px 12px 10px 18px; }
}

/* Кнопка */