/* ГАГРА-БАНК — красно-белый корпоративный стиль, локальные иллюстрации */
:root {
  --brand: #c8102e;
  --brand-dark: #9e0a24;
  --brand-soft: rgba(200, 16, 46, 0.08);
  --brand-line: rgba(200, 16, 46, 0.2);
  --white: #ffffff;
  --ink: #1a1a1a;
  --muted: #5c5c5c;
  --line: #ececec;
  --wash: #fafafa;
  --navy: #0a1f3d;
  --radius: 14px;
  --radius-sm: 10px;
  --font: "Inter", "Roboto", system-ui, sans-serif;
  --ease: 0.22s ease;
  --header-h: 76px;
  --shadow: 0 4px 24px rgba(26, 26, 26, 0.06);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--brand);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--ease);
}

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

.container {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
}

/* ——— Шапка ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 3px solid var(--navy);
  box-shadow: 0 1px 0 var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.site-header__tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.85rem;
  flex: 1;
  min-width: 0;
}

/* Главный CTA шапки — максимально заметная кнопка */
.header-ib-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.85rem 1.65rem;
  font-size: 1.05rem;
  font-weight: 800;
  font-family: inherit;
  letter-spacing: 0.02em;
  color: var(--white) !important;
  background: linear-gradient(180deg, #e01838 0%, var(--brand) 45%, var(--brand-dark) 100%);
  border: 2px solid var(--navy);
  border-radius: 12px;
  text-decoration: none !important;
  white-space: nowrap;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 4px 0 var(--brand-dark),
    0 10px 28px rgba(200, 16, 46, 0.42);
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease), filter var(--ease);
}

.header-ib-btn:hover {
  color: var(--white) !important;
  background: linear-gradient(180deg, #ff1f42 0%, #d01230 50%, #8b081c 100%);
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.28) inset,
    0 5px 0 #6d0616,
    0 14px 36px rgba(200, 16, 46, 0.5);
  filter: brightness(1.03);
}

.header-ib-btn:active {
  transform: translateY(0);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.15) inset,
    0 2px 0 var(--brand-dark),
    0 6px 20px rgba(200, 16, 46, 0.35);
}

.header-ib-btn:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 3px;
}

.header-ib-btn__icon,
.header-ib-btn svg {
  color: var(--white);
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  stroke-width: 2.25;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--navy);
}

.logo:hover {
  color: var(--navy);
}

.logo__mark {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 2px solid var(--navy);
}

.logo__mark svg {
  width: 26px;
  height: 26px;
}

.logo__name {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.logo__tag {
  font-size: 0.68rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--brand);
  position: relative;
  transition: transform var(--ease);
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  padding: 0.35rem 0;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width var(--ease);
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  width: 100%;
}

.lang-switch {
  display: flex;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.lang-switch button {
  border: 2px solid var(--line);
  background: var(--white);
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  color: var(--muted);
  transition: border-color var(--ease), color var(--ease), background var(--ease);
}

.lang-switch button:hover {
  border-color: var(--brand);
  color: var(--ink);
}

.lang-switch button.is-active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ——— Hero (компактная сетка) ——— */
.hero {
  background: var(--white);
  padding: clamp(1.35rem, 3.5vw, 2.25rem) 0;
  border-bottom: 1px solid var(--line);
}

.hero__grid {
  display: grid;
  gap: 1.15rem;
  align-items: start;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(1.25rem, 3vw, 2rem);
    align-items: center;
  }
}

.hero__badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.45rem;
  padding: 0.28rem 0.55rem;
  background: var(--brand-soft);
  border-radius: 5px;
}

.hero h1 {
  font-size: clamp(1.45rem, 3.2vw, 2.35rem);
  font-weight: 800;
  line-height: 1.14;
  margin: 0 0 0.45rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.hero__lead {
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--muted);
  max-width: 38ch;
  margin: 0 0 0.9rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.hero .btn {
  padding: 0.62rem 1.15rem;
  font-size: 0.88rem;
}

.hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.hero__figure {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 2px 12px rgba(10, 31, 61, 0.06);
  background: var(--white);
  max-width: min(100%, 400px);
}

@media (min-width: 900px) {
  .hero__figure {
    margin-left: auto;
    max-width: 100%;
  }
}

.hero__figure img {
  width: 100%;
  max-height: 200px;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  display: block;
}

.hero__card {
  margin-top: 0;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--wash);
  max-width: min(100%, 400px);
}

@media (min-width: 900px) {
  .hero__card {
    margin-left: auto;
    max-width: 100%;
  }
}

.hero__card h3 {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem 0.35rem;
  text-align: center;
}

.hero__stat-num {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
}

.hero__stat-label {
  font-size: 0.65rem;
  color: var(--muted);
  margin-top: 0.1rem;
  font-weight: 500;
  line-height: 1.25;
}

.hero .icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.1rem;
  margin-top: 0.75rem;
}

.icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.icon-row__item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 500;
}

.hero .icon-row__item {
  gap: 0.35rem;
  font-size: 0.8rem;
}

.hero .icon-row__item svg {
  width: 18px;
  height: 18px;
}

.icon-row__item svg {
  color: var(--brand);
  flex-shrink: 0;
}

/* ——— Кнопки ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.8rem 1.45rem;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--ease), color var(--ease), transform var(--ease), border-color var(--ease);
}

.btn:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.btn--primary {
  background: var(--brand);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
}

.btn--outline:hover {
  background: var(--brand);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--secondary {
  background: var(--ink);
  color: var(--white);
}

.btn--secondary:hover {
  background: #333;
  transform: translateY(-1px);
}

.btn--muted {
  background: var(--white);
  color: var(--ink);
  border: 2px solid var(--line);
}

.btn--muted:hover {
  border-color: var(--brand);
  color: var(--brand);
}

/* ——— Секции (плотный вертикальный ритм, как на современных лендингах) ——— */
.section {
  padding: clamp(1.25rem, 2.8vw, 1.85rem) 0;
}

.section--alt {
  background: var(--wash);
}

.section__head {
  max-width: 560px;
  margin-bottom: 1.1rem;
}

.section__head h2 {
  font-size: clamp(1.35rem, 2.75vw, 1.75rem);
  margin: 0 0 0.35rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
}

.section__head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

/* Карточки преимуществ */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.05rem;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--ease), transform var(--ease);
}

.feature-card:hover {
  box-shadow: 0 8px 32px rgba(200, 16, 46, 0.1);
  transform: translateY(-2px);
}

.feature-card__art {
  margin: 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.feature-card__art img {
  width: 100%;
  height: auto;
}

.feature-card__body {
  padding: 1.05rem 1.2rem 1.2rem;
}

.feature-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--brand-soft);
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
  color: var(--brand);
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.feature-card p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--muted);
}

/* Красная промо-полоса */
.section--brand {
  background: var(--brand);
  color: var(--white);
  padding: clamp(1.15rem, 2.5vw, 1.65rem) 0;
}

.section--brand h2 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.25rem, 2.65vw, 1.6rem);
  font-weight: 800;
  line-height: 1.22;
}

.section--brand p {
  margin: 0;
  opacity: 0.95;
  line-height: 1.5;
  max-width: 48ch;
  font-size: 0.95rem;
}

.brand-strip {
  display: grid;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .brand-strip {
    grid-template-columns: minmax(200px, 320px) 1fr;
  }
}

.brand-strip__visual {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.brand-strip__visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* Двухколоночник */
.two-col {
  display: grid;
  gap: 1rem;
  align-items: start;
}

@media (min-width: 768px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
  }
}

.info-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.25rem 1.3rem;
  box-shadow: var(--shadow);
}

.info-block--accent {
  border-left: 5px solid var(--brand);
}

/* Иллюстрация как шапка карточки (не «висящий» блок над сеткой) */
.info-block--with-figure {
  padding: 0;
  overflow: hidden;
}

.info-block--with-figure .info-block__body {
  padding: 1.05rem 1.25rem 1.25rem;
}

.info-block__figure {
  margin: 0;
  padding: 0.45rem 0.85rem 0.55rem;
  background: linear-gradient(180deg, var(--brand-soft) 0%, var(--white) 92%);
  border-bottom: 1px solid var(--line);
  text-align: center;
  line-height: 0;
}

.info-block__figure img {
  width: auto;
  max-width: 100%;
  max-height: 72px;
  height: auto;
  margin: 0 auto;
  display: block;
  object-fit: contain;
  object-position: center;
}

.info-block h2,
.info-block h3 {
  margin-top: 0;
  color: var(--ink);
}

.info-block dl {
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.info-block dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 700;
}

.info-block dd {
  margin: 0;
  font-weight: 600;
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-check li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.55rem;
  color: var(--muted);
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
}

/* Внутренние страницы — заголовок */
.page-hero {
  background: var(--white);
  color: var(--ink);
  padding: 1.35rem 0 1.15rem;
  border-bottom: 4px solid var(--brand);
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(1.55rem, 3.2vw, 2rem);
  font-weight: 800;
}

.page-hero p {
  margin: 0.5rem 0 0;
  color: var(--muted);
  max-width: 52ch;
}

/* Услуги — две панели без тяжёлых иллюстраций */
.services-split {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .services-split {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: stretch;
  }
}

.service-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem 1rem;
  border-left: 3px solid var(--brand);
  box-shadow: 0 1px 10px rgba(10, 31, 61, 0.05);
}

.service-panel__title {
  margin: 0 0 0.55rem;
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
}

.service-panel__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  margin-top: 0.05rem;
  border-radius: 8px;
  background: var(--brand-soft);
  color: var(--brand);
}

.service-panel__icon svg {
  display: block;
}

.service-panel__list {
  margin: 0;
}

.service-panel__list li {
  margin-bottom: 0.35rem;
  font-size: 0.94rem;
}

.service-panel__list li:last-child {
  margin-bottom: 0;
}

.services-foot {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1rem;
}

.services-foot__note {
  margin: 0;
  flex: 1 1 16rem;
  font-size: 0.9rem;
  line-height: 1.45;
}

/* Новости */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.news-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--ease);
}

.news-card:hover {
  box-shadow: 0 8px 28px rgba(200, 16, 46, 0.12);
}

.news-card__thumb {
  width: 100%;
  height: auto;
  border-bottom: 1px solid var(--line);
  background: var(--wash);
}

.news-card__body {
  padding: 1.2rem 1.35rem 1.35rem;
}

.news-card time {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand);
}

.news-card h3 {
  margin: 0.45rem 0;
  font-size: 1.02rem;
}

.news-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--brand-soft);
  color: var(--brand-dark);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

/* Контакты */
.contact-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.contact-card a {
  font-weight: 700;
}

.page-illustration {
  margin: 0 0 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.page-illustration img {
  width: 100%;
  height: auto;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  margin-top: 0.5rem;
}

.map-wrap iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

/* Руководство — без декоративных иконок, плотный список */
.mgmt-grid {
  display: grid;
  gap: 0.55rem;
}

.mgmt-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.9rem 0.75rem;
  border-left: 3px solid var(--brand);
  box-shadow: 0 1px 8px rgba(10, 31, 61, 0.04);
}

.mgmt-card__role {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin: 0 0 0.2rem;
}

.mgmt-card h3 {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.3;
}

.mgmt-section-title {
  margin: 1.25rem 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 800;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--brand-soft);
  color: var(--ink);
}

/* Футер — тот же красный бренд */
.site-footer {
  background: var(--brand);
  color: rgba(255, 255, 255, 0.95);
  padding: 1.75rem 0 1rem;
  font-size: 0.9rem;
  margin-top: 0;
}

.site-footer a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer a:hover {
  color: var(--white);
  opacity: 0.85;
}

.site-footer h4 {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  color: var(--white);
  opacity: 0.95;
}

.footer-grid {
  display: grid;
  gap: 1.15rem;
  margin-bottom: 1.15rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.site-footer p,
.site-footer address {
  margin: 0 0 0.45rem;
  font-style: normal;
  line-height: 1.6;
}

.footer-bottom {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.8rem;
  opacity: 0.9;
}

/* Анимации */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__content {
  animation: fadeUp 0.65s ease both;
}

.hero__visual {
  animation: fadeUp 0.7s 0.08s ease both;
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Мобильное меню */
@media (max-width: 1024px) {
  .site-header__tools {
    flex: 0 1 auto;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-wrap {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 2rem;
    gap: 1rem;
    transform: translateX(100%);
    transition: transform var(--ease);
    overflow-y: auto;
    border-top: 1px solid var(--line);
  }

  .nav-wrap.is-open {
    transform: translateX(0);
  }

  .main-nav ul {
    flex-direction: column;
  }

  .main-nav a {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
  }

  .lang-switch {
    justify-content: center;
    padding-top: 0.5rem;
  }
}

@media (max-width: 420px) {
  .header-ib-btn {
    font-size: 0.72rem;
    padding: 0.65rem 0.9rem;
    letter-spacing: 0.02em;
    min-height: 44px;
  }

  .header-ib-btn svg,
  .header-ib-btn__icon {
    width: 18px;
    height: 18px;
  }
}

@media (min-width: 1025px) {
  .nav-wrap {
    display: flex !important;
  }
}

.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;
}

.text-muted {
  color: var(--muted);
}
