:root {
  --bg: #0b0d0f;
  --text: #101418;
  --muted: #5b6672;
  --card: #ffffff;
  --alt: #f5f7f9;
  --line: #e6ebef;

  /* фирменный акцент (зелёный «Профессионалы») */
  --accent: #44c000;
  --accent2: #27a300;

  --radius: 18px;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  --shadow2: 0 8px 20px rgba(0, 0, 0, 0.06);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  opacity: 0.9;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}

.skip {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 10px 12px;
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow);
  z-index: 9999;
}

.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.78));
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.82)),
    url("bg.jpg") center/cover no-repeat;
  transform: scale(1.03);
  filter: saturate(0.95) contrast(1.02);
}
.hero__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 70px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), #fff);
}

.hero__content {
  position: relative;
  padding: 28px 0 64px;
}

.hero__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.logos {
  display: flex;
  gap: 14px;
  align-items: center;
}
.logo {
  display: block;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.logo--wide {
  height: 54px;
  width: auto;
}
.logo--round {
  height: 54px;
  width: 54px;
  object-fit: cover;
  border-radius: 50%;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: none;
}

.nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.nav a {
  font-weight: 600;
  font-size: 14px;
  opacity: 0.9;
}
.nav a:hover {
  opacity: 1;
  text-decoration: underline;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  padding-top: 34px;
}
.hero__text h1 {
  margin: 0 0 10px 0;
  font-size: 38px;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.accent {
  color: var(--accent);
}
.lead {
  margin: 0 0 18px 0;
  font-size: 16px;
  opacity: 0.9;
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 10px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  box-shadow: var(--shadow2);
  transition:
    transform 0.08s ease,
    background 0.15s ease,
    border-color 0.15s ease;
}
.btn:active {
  transform: translateY(1px);
}
.btn--primary {
  background: var(--accent);
  color: #0b0d0f;
}
.btn--primary:hover {
  background: var(--accent2);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.chip {
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(6px);
}

.hero__card {
  display: grid;
  gap: 12px;
  align-content: start;
}
.card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 16px;
  backdrop-filter: blur(8px);
}
.card__title {
  font-size: 12px;
  opacity: 0.85;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.card__value {
  font-size: 22px;
  font-weight: 800;
  margin-top: 6px;
}
.card__hint {
  font-size: 13px;
  opacity: 0.85;
  margin-top: 2px;
}

.section {
  padding: 64px 0;
}
.section--alt {
  background: var(--alt);
}
.section__head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.section__head h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.02em;
}
.muted {
  color: var(--muted);
}
.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;
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow2);
}
.panel h3 {
  margin: 0 0 8px 0;
  font-size: 16px;
}
.panel p {
  margin: 0;
  color: var(--muted);
}

.numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 8px;
}
.numbers--wide {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 14px;
}
.number-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow2);
}
.number-card__k {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.number-card__v {
  font-size: 28px;
  font-weight: 900;
  margin-top: 10px;
  color: #0c1116;
}
.number-card__v span {
  color: var(--accent);
}
.number-card__s {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.tl {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow2);
  position: relative;
  overflow: hidden;
}
.tl__badge {
  display: inline-flex;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(68, 192, 0, 0.1);
  border: 1px solid rgba(68, 192, 0, 0.25);
  color: #0c1116;
}
.tl__title {
  margin-top: 12px;
  font-weight: 900;
  font-size: 18px;
}
.tl__desc {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}
.tl--accent {
  border-color: rgba(68, 192, 0, 0.35);
  box-shadow: 0 12px 30px rgba(68, 192, 0, 0.1);
}

.program-tools {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tab {
  border: 1px solid var(--line);
  background: #fff;
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
}
.tab[aria-selected="true"] {
  border-color: rgba(68, 192, 0, 0.45);
  background: rgba(68, 192, 0, 0.1);
}

.search input,
.select select {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 12px;
  font-weight: 600;
  outline: none;
  background: #fff;
  min-width: 220px;
}
.select select {
  min-width: 170px;
}
.search input:focus,
.select select:focus {
  border-color: rgba(68, 192, 0, 0.55);
  box-shadow: 0 0 0 4px rgba(68, 192, 0, 0.12);
}

.table-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: auto;
  box-shadow: var(--shadow2);
}
.table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
}
.table th,
.table td {
  text-align: left;
  padding: 12px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.table th {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 2;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.table td {
  font-size: 14px;
}
.badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  border: 1px solid var(--line);
}
.badge--online {
  background: rgba(39, 163, 0, 0.1);
  border-color: rgba(39, 163, 0, 0.25);
}
.badge--offline {
  background: rgba(0, 0, 0, 0.04);
}
.table tr:hover td {
  background: rgba(245, 247, 249, 0.7);
}
.program-note {
  margin-top: 10px;
}

.footer {
  background: #0b0d0f;
  color: #fff;
  padding: 26px 0;
}
.footer__grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.logos--footer .logo {
  border-color: rgba(255, 255, 255, 0.16);
}
.footer__links {
  display: flex;
  gap: 14px;
}
.footer__links a {
  opacity: 0.9;
  font-weight: 700;
}
.footer__links a:hover {
  opacity: 1;
  text-decoration: underline;
}
.footer__text {
  max-width: 620px;
}

@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
    padding-top: 24px;
  }
  .hero__text h1 {
    font-size: 32px;
  }
  .timeline {
    grid-template-columns: 1fr 1fr;
  }
  .numbers {
    grid-template-columns: 1fr;
  }
  .numbers--wide {
    grid-template-columns: 1fr 1fr;
  }
  .grid3 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 540px) {
  .nav {
    display: none;
  }
  .hero__text h1 {
    font-size: 28px;
  }
  .timeline {
    grid-template-columns: 1fr;
  }
  .numbers--wide {
    grid-template-columns: 1fr;
  }
  .search input {
    min-width: 0;
    width: 100%;
  }
}

/* --- Eventy hero additions --- */
.hero__grid--event {
  padding-top: 28px;
}
.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.kicker__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(68, 192, 0, 0.14);
}
.kicker__text {
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
}

.hero-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 10px 0 14px;
}
.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(6px);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.02em;
}
.pill--date {
  border-color: rgba(255, 255, 255, 0.24);
}
.pill--accent {
  border-color: rgba(68, 192, 0, 0.35);
  background: rgba(68, 192, 0, 0.18);
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 18px;
}
.hero-strip__item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 12px 12px;
  backdrop-filter: blur(8px);
}
.hero-strip__k {
  font-size: 11px;
  opacity: 0.85;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero-strip__v {
  font-size: 20px;
  font-weight: 900;
  margin-top: 6px;
}
.hero-strip__item--countdown .hero-strip__v {
  color: var(--accent);
}

.ticker {
  margin-top: 14px;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
}
.ticker__track {
  display: inline-block;
  padding: 10px 14px;
  white-space: nowrap;
  animation: ticker 18s linear infinite;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.92;
}
.ticker__track span {
  margin-right: 14px;
}
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.hero__card--event .glass {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 16px;
  backdrop-filter: blur(10px);
}
.glass__head {
  margin-bottom: 12px;
}
.glass__title {
  font-weight: 900;
  font-size: 16px;
}
.glass__sub {
  opacity: 0.85;
  font-size: 13px;
  margin-top: 4px;
}
.glass__actions {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}
.mini {
  display: block;
  padding: 12px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.mini__k {
  display: block;
  font-size: 11px;
  opacity: 0.85;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.mini__v {
  display: block;
  margin-top: 6px;
  font-weight: 900;
}
.mini:hover {
  background: rgba(0, 0, 0, 0.24);
}
.glass__note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
  opacity: 0.9;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  margin-top: 4px;
}

/* --- New competencies cards --- */
.comp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.comp {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow2);
  position: relative;
  overflow: hidden;
}
.comp:before {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 140px;
  height: 140px;
  background: rgba(68, 192, 0, 0.1);
  border-radius: 50%;
}
.comp__title {
  margin: 0;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: -0.01em;
  position: relative;
}
.comp__tag {
  display: inline-flex;
  margin-top: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(68, 192, 0, 0.1);
  border: 1px solid rgba(68, 192, 0, 0.25);
  font-weight: 800;
  font-size: 12px;
  position: relative;
}

@media (max-width: 980px) {
  .hero-strip {
    grid-template-columns: 1fr 1fr;
  }
  .comp-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 540px) {
  .comp-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Reveal on scroll --- */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
  will-change: opacity, transform;
}
.reveal.reveal--visible {
  opacity: 1;
  transform: none;
}

/* smoother hover transitions across interactive elements */
.btn,
.tab,
.mini,
.panel,
.number-card,
.tl,
.comp,
.table tr td {
  transition:
    transform 0.12s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    opacity 0.18s ease;
}
.panel:hover,
.number-card:hover,
.tl:hover,
.comp:hover {
  transform: translateY(-2px);
}

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    transition: none;
    transform: none;
    opacity: 1;
  }
  .ticker__track {
    animation: none;
  }
  .btn,
  .tab,
  .mini,
  .panel,
  .number-card,
  .tl,
  .comp,
  .table tr td {
    transition: none;
  }
}

/* --- Smooth navigation --- */
html {
  scroll-behavior: smooth;
}

/* --- Search input small fix --- */
.search input {
  min-width: 280px;
  padding-right: 14px;
}

/* --- Year badge on number cards --- */
.number-card {
  position: relative;
}
.year-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--accent);
  opacity: 0.95;
}

/* --- Reveal animation --- */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  will-change: opacity, transform;
}
.reveal.show {
  opacity: 1;
  transform: none;
}

/* --- Smooth hover micro-interactions --- */
.btn,
.tab,
.panel,
.number-card,
.tl,
.table tr td {
  transition:
    transform 0.18s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    opacity 0.22s ease;
}
.panel:hover,
.number-card:hover,
.tl:hover {
  transform: translateY(-2px);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    transition: none;
    transform: none;
    opacity: 1;
  }
  .btn,
  .tab,
  .panel,
  .number-card,
  .tl,
  .table tr td {
    transition: none;
  }
}

/* Fix year badge overlap */
.number-card {
  padding-top: 30px;
}
.year-badge {
  top: 8px;
  font-size: 11px;
  background: #ffffff;
  padding: 2px 6px;
  border-radius: 8px;
}

/* Video block */
.video-card {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 14px;
  align-items: stretch;
}
.video-embed {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow2);
}
.video-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}
.video-side {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.video-side__title {
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 8px;
}

.footer__grid--simple {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.footer__dev {
  opacity: 0.9;
  font-weight: 700;
}

@media (max-width: 980px) {
  .video-card {
    grid-template-columns: 1fr;
  }
  .video-embed iframe {
    min-height: 320px;
  }
}

/* Partners highlight */
.panel--employers {
  border-color: rgba(68, 192, 0, 0.35);
  box-shadow: 0 12px 30px rgba(68, 192, 0, 0.1);
  position: relative;
}
.employers-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(68, 192, 0, 0.12);
  border: 1px solid rgba(68, 192, 0, 0.28);
  color: #0c1116;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
}

/* Footer layout */
.footer__wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  flex-wrap: wrap;
}
.footer__left {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 800;
}
.footer__left a {
  opacity: 0.92;
}
.footer__left a:hover {
  opacity: 1;
  text-decoration: underline;
}
.footer__right {
  display: flex;
  justify-content: flex-end;
  flex: 1;
}
.footer__top {
  font-weight: 900;
  opacity: 0.95;
}
.footer__top:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer__devline {
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
  font-weight: 700;
  opacity: 0.9;
}

/* Video block */
.video-card {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 14px;
  align-items: stretch;
}
.video-embed {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow2);
}
.video-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}
.video-side {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.video-side__title {
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 8px;
}
@media (max-width: 980px) {
  .video-card {
    grid-template-columns: 1fr;
  }
  .video-embed iframe {
    min-height: 320px;
  }
}

/* partners cards alignment */

#partners .grid3 {
  align-items: stretch;
}

#partners .panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px;
  min-height: 300px;
}

#partners .panel__footer {
  margin-top: auto;
}

#partners .panel__footer .btn {
  width: 100%;
  padding: 14px 16px;
  justify-content: center;
}

#partners .employers-badge {
  position: absolute;
  top: 14px;
  right: 14px;
}

.event-title {
  font-weight: 700;
}

.event-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(68, 192, 0, 0.35);
  background: rgba(68, 192, 0, 0.1);
  font-weight: 800;
  font-size: 12px;
  color: #0c1116;
}

.event-link:hover {
  background: rgba(68, 192, 0, 0.16);
  border-color: rgba(68, 192, 0, 0.5);
  text-decoration: none;
}

.section__head--program {
  align-items: center;
}

.section__head--program .muted {
  margin: 0;
}

.program-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(68, 192, 0, 0.35);
  background: rgba(68, 192, 0, 0.1);
  font-weight: 800;
  font-size: 13px;
  color: #0c1116;
  text-decoration: none;
  white-space: nowrap;
}

.program-link:hover {
  background: rgba(68, 192, 0, 0.16);
  border-color: rgba(68, 192, 0, 0.5);
}

@media (max-width: 540px) {
  .section__head--program {
    justify-content: center;
    text-align: center;
  }
}

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

.footer__logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.15s ease;
}

.footer__logo-link:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

.footer__logo {
  width: 28px;
  height: 28px;
  display: block;
}

.footer__logo-link--tooltip {
  position: relative;
}

.footer__logo-link--tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: #0b0d0f;
  color: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  z-index: 10;
}

.footer__logo-link--tooltip::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #0b0d0f;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.footer__logo-link--tooltip:hover::after,
.footer__logo-link--tooltip:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.partners-intro {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow2);
  margin-bottom: 18px;
}

.partners-intro__title {
  margin: 0 0 10px 0;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.partners-intro__subtitle {
  margin: 14px 0 10px 0;
  font-size: 16px;
  font-weight: 900;
}

.partners-intro p {
  margin: 10px 0;
  color: var(--text);
}

.partners-list {
  margin: 10px 0 0 18px;
  padding: 0;
}

.partners-list li {
  margin: 10px 0;
  padding-left: 6px;
  color: var(--text);
}

.partners-callout {
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(68, 192, 0, 0.1);
  border: 1px solid rgba(68, 192, 0, 0.25);
  font-weight: 700;
}

.partners-intro {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px 22px 26px;
  box-shadow: var(--shadow2);
  margin-bottom: 18px;
}

.partners-intro::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--accent), var(--accent2));
  border-radius: 6px;
}

.section__head--partners {
  align-items: center;
}

.section__head--partners .muted {
  margin: 0;
  max-width: 520px;
}

/* Footer logo – brighter accent */
.footer__logo-link {
  width: 56px; /* чуть крупнее */
  height: 56px;
  border-radius: 14px;

  background: linear-gradient(
    180deg,
    rgba(68, 192, 0, 0.28),
    rgba(68, 192, 0, 0.18)
  );

  border: 1px solid rgba(68, 192, 0, 0.55);

  box-shadow:
    0 8px 22px rgba(68, 192, 0, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.25);

  transition:
    transform 0.18s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.footer__logo-link:hover {
  background: linear-gradient(
    180deg,
    rgba(68, 192, 0, 0.38),
    rgba(68, 192, 0, 0.26)
  );

  box-shadow:
    0 10px 26px rgba(68, 192, 0, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.35);

  transform: translateY(-2px);
}

.footer__logo {
  width: 30px;
  height: 30px;
  filter: brightness(1.15) contrast(1.1);
}

.footer__logo-link {
  width: 56px;
  height: 56px;
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.45);

  box-shadow:
    0 8px 22px rgba(255, 255, 255, 0.25),
    inset 0 0 0 1px rgba(255, 255, 255, 0.35);

  display: inline-flex;
  align-items: center;
  justify-content: center;

  transition:
    transform 0.18s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.footer__logo-link:hover {
  background: rgba(255, 255, 255, 0.22);

  box-shadow:
    0 10px 28px rgba(255, 255, 255, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.55);

  transform: translateY(-2px);
}

.footer__logo {
  width: 30px;
  height: 30px;
  display: block;

  filter: brightness(0) invert(1);
}

@keyframes footerGlow {
  0%,
  100% {
    box-shadow:
      0 8px 22px rgba(255, 255, 255, 0.22),
      0 0 0 rgba(255, 255, 255, 0),
      inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  }
  50% {
    box-shadow:
      0 10px 28px rgba(255, 255, 255, 0.32),
      0 0 18px rgba(255, 255, 255, 0.2),
      inset 0 0 0 1px rgba(255, 255, 255, 0.45);
  }
}

@keyframes footerPopIn {
  from {
    opacity: 0;
    transform: translateY(6px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.footer__logo-link {
  width: 56px;
  height: 56px;
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.45);

  display: inline-flex;
  align-items: center;
  justify-content: center;

  animation:
    footerPopIn 520ms ease-out 120ms both,
    footerGlow 2400ms ease-in-out 700ms infinite;

  transition:
    transform 0.18s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.footer__logo-link:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);

  box-shadow:
    0 12px 32px rgba(255, 255, 255, 0.4),
    0 0 22px rgba(255, 255, 255, 0.25),
    inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.footer__logo {
  width: 30px;
  height: 30px;
  display: block;
  filter: brightness(0) invert(1);
}

@media (prefers-reduced-motion: reduce) {
  .footer__logo-link {
    animation: none;
  }
}

.nav-partners {
  position: relative;
  font-weight: 800;
}

.nav-partners::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.85;
  transform: scaleX(0.4);
  transform-origin: center;
  animation: navGlowLine 2.6s ease-in-out infinite;
}

.nav-partners::before {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
  box-shadow: 0 0 0 rgba(68, 192, 0, 0);
  animation: navPulseDot 2.2s ease-in-out infinite;
}

.nav-partners:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-partners:hover::before {
  box-shadow: 0 0 10px rgba(68, 192, 0, 0.6);
}

@keyframes navGlowLine {
  0%,
  100% {
    transform: scaleX(0.35);
    opacity: 0.5;
  }
  50% {
    transform: scaleX(0.9);
    opacity: 1;
  }
}

@keyframes navPulseDot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(68, 192, 0, 0);
    opacity: 0.8;
  }
  50% {
    box-shadow: 0 0 10px 4px rgba(68, 192, 0, 0.35);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-partners::before,
  .nav-partners::after {
    animation: none;
  }
}

.nav a.nav-partners {
  line-height: 1;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-right: 14px;
  padding-bottom: 10px;
  font-weight: 800;
}

.nav a.nav-partners::after {
  content: "";
  position: absolute;
  left: 0;
  right: 14px;
  bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.75;
  transform: scaleX(0.45);
  transform-origin: center;
  animation: navPartnersLine 2.2s ease-in-out infinite;
  pointer-events: none;
}

.nav a.nav-partners::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  transform: translateY(-55%);
  box-shadow: 0 0 0 0 rgba(68, 192, 0, 0);
  animation: navPartnersDot 1.8s ease-in-out infinite;
  pointer-events: none;
}

.nav a.nav-partners:hover,
.nav a.nav-partners:focus-visible {
  opacity: 1;
  text-decoration: none;
}

.nav a.nav-partners:hover::after,
.nav a.nav-partners:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav a.nav-partners:hover::before,
.nav a.nav-partners:focus-visible::before {
  box-shadow: 0 0 16px 6px rgba(68, 192, 0, 0.28);
}

@keyframes navPartnersLine {
  0%,
  100% {
    transform: scaleX(0.45);
    opacity: 0.55;
  }
  50% {
    transform: scaleX(0.95);
    opacity: 0.95;
  }
}

@keyframes navPartnersDot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(68, 192, 0, 0);
    opacity: 0.8;
  }
  50% {
    box-shadow: 0 0 18px 7px rgba(68, 192, 0, 0.22);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav a.nav-partners::before,
  .nav a.nav-partners::after {
    animation: none;
    transform: none;
    opacity: 1;
  }
}

.nav a.nav-partners {
  position: relative;
  display: inline-flex;
  align-items: center;

  font-weight: 800;
  line-height: 1.2;
  padding-right: 16px;
  padding-bottom: 10px;

  opacity: 0.95;
}

.nav a.nav-partners::after {
  content: "";
  position: absolute;
  left: 0;
  right: 16px;
  bottom: 2px;

  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);

  transform: scaleX(0.45);
  transform-origin: center;
  opacity: 0.65;

  animation: navPartnersLine 2.4s ease-in-out infinite;
  pointer-events: none;
}

.nav a.nav-partners::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);

  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);

  box-shadow: 0 0 0 0 rgba(68, 192, 0, 0);
  animation: navPartnersDot 1.8s ease-in-out infinite;

  pointer-events: none;
}

.nav a.nav-partners:hover,
.nav a.nav-partners:focus-visible {
  opacity: 1;
  text-decoration: none;
}

.nav a.nav-partners:hover::after,
.nav a.nav-partners:focus-visible::after {
  transform: scaleX(1);
  opacity: 1;
}

.nav a.nav-partners:hover::before,
.nav a.nav-partners:focus-visible::before {
  box-shadow: 0 0 18px 6px rgba(68, 192, 0, 0.3);
}

@keyframes navPartnersLine {
  0%,
  100% {
    transform: scaleX(0.45);
    opacity: 0.55;
  }
  50% {
    transform: scaleX(0.95);
    opacity: 0.95;
  }
}

@keyframes navPartnersDot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(68, 192, 0, 0);
    opacity: 0.8;
  }
  50% {
    box-shadow: 0 0 18px 7px rgba(68, 192, 0, 0.22);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav a.nav-partners::before,
  .nav a.nav-partners::after {
    animation: none;
    transform: none;
    opacity: 1;
  }
}

.nav a.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(68, 192, 0, 0.16);
  border: 1px solid rgba(68, 192, 0, 0.35);
  font-weight: 800;
  opacity: 1;
  transition:
    transform 0.18s ease,
    background 0.22s ease,
    border-color 0.22s ease;
}

.nav a.nav-cta:hover {
  background: rgba(68, 192, 0, 0.24);
  border-color: rgba(68, 192, 0, 0.55);
  transform: translateY(-1px);
}

.nav a.nav-cta:active {
  transform: translateY(0);
}
.nav a.nav-arrow {
  font-weight: 900;
}

.nav a.nav-arrow::after {
  content: " ↗";
  color: var(--accent);
  font-weight: 900;
  transition: transform 0.18s ease;
  display: inline-block;
}

.nav a.nav-arrow:hover::after {
  transform: translateX(2px) translateY(-1px);
}

.nav a.nav-wow {
  position: relative;
  font-weight: 900;
  letter-spacing: 0.02em;

  background: linear-gradient(
    120deg,
    #ffffff 0%,
    var(--accent) 45%,
    #ffffff 90%
  );
  background-size: 300% 100%;

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  animation: navTextEnergy 3.2s ease-in-out infinite;

  transition: letter-spacing 0.25s ease;
}

.nav a.nav-wow:hover {
  letter-spacing: 0.06em;
  animation-duration: 1.6s;
}

@keyframes navTextEnergy {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav a.nav-wow {
    animation: none;
    color: var(--accent);
    background: none;
  }
}

.footer__logo {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

@media (max-width: 540px) {
  .footer__logo-link {
    width: 64px;
    height: 64px;
  }

  .footer__logo {
    width: 36px;
    height: 36px;
  }
}

.footer__logo {
  filter: brightness(0) invert(1);

  background: linear-gradient(
    120deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.65) 45%,
    #ffffff 90%
  );
  background-size: 300% 100%;

  -webkit-mask-image: url("logo3.png");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;

  mask-image: url("logo3.png");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;

  animation: footerLogoEnergy 3.2s ease-in-out infinite;
}

.footer__logo-link:hover .footer__logo {
  animation-duration: 1.6s;
}

@keyframes footerLogoEnergy {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer__logo {
    animation: none;
    background: none;
    filter: brightness(0) invert(1);
  }
}

.footer__logo {
  width: 30px;
  height: 30px;
  display: block;
  object-fit: contain;

  background: linear-gradient(
    120deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.55) 45%,
    #ffffff 90%
  );
  background-size: 300% 100%;
  background-position: 0% 50%;

  -webkit-mask: url("logo3.png") center / contain no-repeat;
  mask: url("logo3.png") center / contain no-repeat;

  animation: navTextEnergy 3.2s ease-in-out infinite;

  content: "";
}

.footer__logo-link:hover .footer__logo {
  animation-duration: 1.6s;
}

@keyframes navTextEnergy {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer__logo {
    animation: none;
    background: #fff;
  }
}

.footer__logo-link {
  position: relative;
  overflow: visible;
}

.footer__logo {
  width: 30px;
  height: 30px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

@supports (-webkit-mask: url("") no-repeat) or (mask: url("") no-repeat) {
  .footer__logo {
    opacity: 0;
  }

  .footer__logo-link::before {
    content: "";
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;

    background: linear-gradient(
      120deg,
      #ffffff 0%,
      rgba(255, 255, 255, 0.45) 45%,
      #ffffff 90%
    );
    background-size: 300% 100%;
    animation: navTextEnergy 3.2s ease-in-out infinite;

    -webkit-mask: url("logo3.png") center / contain no-repeat;
    mask: url("logo3.png") center / contain no-repeat;

    pointer-events: none;
  }

  .footer__logo-link:hover::before {
    animation-duration: 1.6s;
  }
}

@keyframes navTextEnergy {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer__logo-link::before {
    animation: none !important;
  }
}

@media (max-width: 540px) {
  .footer__logo {
    width: 36px;
    height: 36px;
  }

  @supports (-webkit-mask: url("") no-repeat) or (mask: url("") no-repeat) {
    .footer__logo-link::before {
      width: 36px;
      height: 36px;
    }
  }
}

.footer__logo-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

.footer__logo {
  width: 30px;
  height: 30px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

@supports (-webkit-mask: url("") no-repeat) or (mask: url("") no-repeat) {
  .footer__logo {
    opacity: 0;
  }

  .footer__logo-link::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 30px;
    height: 30px;

    z-index: 1;

    background: linear-gradient(
      120deg,
      #ffffff 0%,
      rgba(255, 255, 255, 0.45) 45%,
      #ffffff 90%
    );
    background-size: 300% 100%;
    animation: navTextEnergy 3.2s ease-in-out infinite;

    -webkit-mask: url("logo3.png") center / contain no-repeat;
    mask: url("logo3.png") center / contain no-repeat;

    pointer-events: none;
  }

  .footer__logo-link:hover::before {
    animation-duration: 1.6s;
  }
}

@keyframes navTextEnergy {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer__logo-link::before {
    animation: none !important;
  }
}

@media (max-width: 540px) {
  .footer__logo {
    width: 36px;
    height: 36px;
  }

  @supports (-webkit-mask: url("") no-repeat) or (mask: url("") no-repeat) {
    .footer__logo-link::before {
      width: 36px;
      height: 36px;
    }
  }
}

.footer__logo-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.footer__logo {
  width: 30px;
  height: 30px;
  display: block;
  object-fit: contain;

  filter: brightness(0) invert(1);
}

@supports (-webkit-mask: url("") no-repeat) or (mask: url("") no-repeat) {
  .footer__logo-link::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 30px;
    height: 30px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 2;

    background: linear-gradient(
      120deg,
      #ffffff 0%,
      rgba(255, 255, 255, 0.45) 45%,
      #ffffff 90%
    );
    background-size: 300% 100%;
    animation: navTextEnergy 3.2s ease-in-out infinite;

    -webkit-mask: url("logo3.png") center / contain no-repeat;
    mask: url("logo3.png") center / contain no-repeat;

    mix-blend-mode: screen;
    opacity: 0.95;
  }

  .footer__logo-link:hover::before {
    animation-duration: 1.6s;
  }
}

@keyframes navTextEnergy {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.footer__logo-link--tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);

  background: #0b0d0f;
  color: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;

  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  z-index: 10;
}

.footer__logo-link--tooltip:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .footer__logo-link::before {
    animation: none !important;
  }
}

@media (max-width: 540px) {
  .footer__logo-link {
    width: 64px;
    height: 64px;
  }
  .footer__logo {
    width: 36px;
    height: 36px;
  }

  @supports (-webkit-mask: url("") no-repeat) or (mask: url("") no-repeat) {
    .footer__logo-link::before {
      width: 36px;
      height: 36px;
    }
  }
}

.footer__logo-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  transform: none !important;
  box-shadow: none !important;
}

.footer__logo-link:hover {
  transform: none !important;
  box-shadow: none !important;
}

.footer__logo {
  width: 30px;
  height: 30px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

@supports (-webkit-mask: url("") no-repeat) or (mask: url("") no-repeat) {
  .footer__logo-link::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 30px;
    height: 30px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 2;

    background: linear-gradient(
      120deg,
      #ffffff 0%,
      rgba(255, 255, 255, 0.35) 45%,
      #ffffff 90%
    );
    background-size: 300% 100%;
    animation: navTextEnergy 3.2s ease-in-out infinite;

    -webkit-mask: url("logo3.png") center / contain no-repeat;
    mask: url("logo3.png") center / contain no-repeat;

    opacity: 1;
    mix-blend-mode: normal;
    filter: none;
  }

  .footer__logo-link:hover::before {
    animation-duration: 1.6s;
  }
}

@keyframes navTextEnergy {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer__logo-link::before {
    animation: none !important;
  }
}

@media (max-width: 540px) {
  .footer__logo {
    width: 36px;
    height: 36px;
  }

  @supports (-webkit-mask: url("") no-repeat) or (mask: url("") no-repeat) {
    .footer__logo-link::before {
      width: 36px;
      height: 36px;
    }
  }
}

.footer__logo-link {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 0 !important;
  line-height: 0 !important;

  width: 56px;
  height: 56px;

  border: 1px solid rgba(255, 255, 255, 0.45) !important;
  background: rgba(255, 255, 255, 0.12) !important;

  transform: none !important;
  box-shadow: none !important;
  transition: none !important;

  overflow: hidden !important;
}

.footer__logo-link:hover,
.footer__logo-link:active,
.footer__logo-link:focus {
  transform: none !important;
  box-shadow: none !important;
  border: 1px solid rgba(255, 255, 255, 0.45) !important;
  background: rgba(255, 255, 255, 0.12) !important;
}

.footer__logo {
  width: 30px;
  height: 30px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

@supports (-webkit-mask: url("") no-repeat) or (mask: url("") no-repeat) {
  .footer__logo-link::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 30px;
    height: 30px;
    pointer-events: none;
    z-index: 2;

    background: linear-gradient(
      120deg,
      #ffffff 0%,
      rgba(255, 255, 255, 0.35) 45%,
      #ffffff 90%
    );
    background-size: 300% 100%;
    animation: navTextEnergy 3.2s ease-in-out infinite;

    -webkit-mask: url("logo3.png") center / contain no-repeat;
    mask: url("logo3.png") center / contain no-repeat;

    opacity: 1;
    mix-blend-mode: normal;
    filter: none;
  }

  .footer__logo-link:hover::before {
    animation-duration: 1.6s;
  }
}

@keyframes navTextEnergy {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer__logo-link::before {
    animation: none !important;
  }
}

@media (max-width: 540px) {
  .footer__logo-link {
    width: 64px;
    height: 64px;
  }
  .footer__logo {
    width: 36px;
    height: 36px;
  }
  @supports (-webkit-mask: url("") no-repeat) or (mask: url("") no-repeat) {
    .footer__logo-link::before {
      width: 36px;
      height: 36px;
    }
  }
}

.footer__logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 0;

  transform: none !important;
  box-shadow: none !important;
  transition: none !important;
}
.footer__logo-link:hover,
.footer__logo-link:active,
.footer__logo-link:focus {
  transform: none !important;
  box-shadow: none !important;
}

.footer__logo-wow {
  width: 30px;
  height: 30px;
  display: block;
}

.footer__logo-fallback {
  width: 30px;
  height: 30px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

@supports (-webkit-mask: url("") no-repeat) or (mask: url("") no-repeat) {
  .footer__logo-fallback {
    display: none;
  }

  .footer__logo-wow {
    background: linear-gradient(
      120deg,
      #ffffff 0%,
      rgba(255, 255, 255, 0.35) 45%,
      #ffffff 90%
    );
    background-size: 300% 100%;
    animation: navTextEnergy 3.2s ease-in-out infinite;

    -webkit-mask: url("logo3.png") center / contain no-repeat;
    mask: url("logo3.png") center / contain no-repeat;
  }

  .footer__logo-link:hover .footer__logo-wow {
    animation-duration: 1.6s;
  }
}

@keyframes navTextEnergy {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media (max-width: 540px) {
  .footer__logo-wow,
  .footer__logo-fallback {
    width: 36px;
    height: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer__logo-wow {
    animation: none !important;
  }
}

.footer__logo {
  display: none !important;
}

.footer__logo-link {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  line-height: 0 !important;
  transform: none !important;
  transition: none !important;
  box-shadow: none !important;
}

.footer__logo-link:hover,
.footer__logo-link:active,
.footer__logo-link:focus {
  transform: none !important;
  box-shadow: none !important;
}

.footer__logo-wow,
.footer__logo-fallback {
  width: 30px;
  height: 30px;
  display: block;
}

.footer__logo-fallback {
  object-fit: contain;
  filter: brightness(0) invert(1);
}

@supports (-webkit-mask: url("") no-repeat) or (mask: url("") no-repeat) {
  .footer__logo-fallback {
    display: none;
  }

  .footer__logo-wow {
    background: linear-gradient(
      120deg,
      #fff 0%,
      rgba(255, 255, 255, 0.35) 45%,
      #fff 90%
    );
    background-size: 300% 100%;
    background-position: 0% 50%;
    -webkit-mask: url("logo3.png") center/contain no-repeat;
    mask: url("logo3.png") center/contain no-repeat;
    animation: navTextEnergy 3.2s ease-in-out infinite;
  }

  .footer__logo-link:hover .footer__logo-wow {
    animation-duration: 1.6s;
  }
}

@keyframes navTextEnergy {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media (max-width: 540px) {
  .footer__logo-wow,
  .footer__logo-fallback {
    width: 36px;
    height: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer__logo-wow {
    animation: none !important;
  }
}
.footer img[src$="logo3.png"] {
  display: none !important;
}

.footer__logo-link {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  line-height: 0 !important;
  transform: none !important;
  transition: none !important;
  box-shadow: none !important;
}

.footer__logo-link:hover,
.footer__logo-link:active,
.footer__logo-link:focus {
  transform: none !important;
  box-shadow: none !important;
}

.footer__logo-fallback {
  display: block !important;
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer__logo-wow {
  display: none;
  width: 30px;
  height: 30px;
}

@supports (-webkit-mask: url("") no-repeat) or (mask: url("") no-repeat) {
  .footer__logo-fallback {
    display: none !important;
  }
  .footer__logo-wow {
    display: block;
  }

  .footer__logo-wow {
    background: linear-gradient(
      120deg,
      #fff 0%,
      rgba(255, 255, 255, 0.35) 45%,
      #fff 90%
    );
    background-size: 300% 100%;
    background-position: 0% 50%;
    -webkit-mask: url("logo3.png") center/contain no-repeat;
    mask: url("logo3.png") center/contain no-repeat;
    animation: navTextEnergy 3.2s ease-in-out infinite;
  }

  .footer__logo-link:hover .footer__logo-wow {
    animation-duration: 1.6s;
  }
}

@keyframes navTextEnergy {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media (max-width: 540px) {
  .footer__logo-fallback,
  .footer__logo-wow {
    width: 36px;
    height: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer__logo-wow {
    animation: none !important;
  }
}
.footer__logo-link::before,
.footer__logo-link::after {
  content: none !important;
}

.footer__logo-link {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  line-height: 0 !important;
  transform: none !important;
  transition: none !important;
  box-shadow: none !important;
}

.footer__logo-link:hover,
.footer__logo-link:active,
.footer__logo-link:focus {
  transform: none !important;
  box-shadow: none !important;
}

.footer__logo-wow,
.footer__logo-fallback {
  width: 30px;
  height: 30px;
  display: block;
}

.footer__logo-fallback {
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer__logo-wow {
  display: none;
}

@supports (-webkit-mask: url("") no-repeat) or (mask: url("") no-repeat) {
  .footer__logo-fallback {
    display: none;
  }
  .footer__logo-wow {
    display: block;
    background: linear-gradient(
      120deg,
      #fff 0%,
      rgba(255, 255, 255, 0.35) 45%,
      #fff 90%
    );
    background-size: 300% 100%;
    background-position: 0% 50%;
    -webkit-mask: url("logo3.png") center/contain no-repeat;
    mask: url("logo3.png") center/contain no-repeat;
    animation: navTextEnergy 3.2s ease-in-out infinite;
  }

  .footer__logo-link:hover .footer__logo-wow {
    animation-duration: 1.6s;
  }
}

@keyframes navTextEnergy {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media (max-width: 540px) {
  .footer__logo-wow,
  .footer__logo-fallback {
    width: 36px;
    height: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer__logo-wow {
    animation: none !important;
  }
}
