/* === HEADER === */
.header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft);
}

.header .navbar {
  width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 6px; /* расстояние между логотипом и текстом */
    text-decoration: none;
    color: #fff;
    font-weight: 700;
}

.logo-mark {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
}

.logo-text {
    line-height: 1;
    color: #000;
}

/* Скрываем только когда navbar раскрыт горизонтально (lg и выше) */
@media (min-width: 992px) and (max-width: 1199px) {
  .nav-hide-lg {
    display: none !important;
  }
}

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

/* так как убрал нативный nav
.nav { display: flex; gap: 32px; align-items: center; }

.nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.header-actions { display: flex; align-items: center; gap: 14px; }
*/


.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 100px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--cta);
  color: white;
  box-shadow: var(--shadow-cta);
}
.btn-primary:hover {
  background: var(--cta-deep);
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(45, 143, 254, 0.4);
}
.btn-secondary {
  background: white;
  color: var(--text);
  border-color: var(--border);
}
.btn-secondary:hover { border-color: var(--text); }
.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 12px 8px;
}
.btn-ghost:hover { color: var(--brand); }

.btn-large { padding: 16px 28px; font-size: 15px; }

/* === HEADER MOBILE === */
@media (max-width: 720px) {
  .btn-large { padding: 14px 22px; font-size: 14px; }
}

@media (max-width: 480px) {
  .btn-large { padding: 13px 18px; font-size: 14px; }
  .btn { font-size: 13px; }
}

.arrow-icon {
  display: inline-block;
  width: 14px; height: 14px;
  position: relative;
  margin-left: 2px;
}
.arrow-icon::after {
  content: '→';
  font-size: 16px;
  line-height: 14px;
}