.fish-footer {
  position: relative;
  min-height: 100svh;
  margin-top: -1px;
  overflow: hidden;
  padding: 140px 28px 42px;
  background: #032946;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fish-footer-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.46;
}

.fish-footer-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      #032946 0%,
      rgba(3, 41, 70, 0.96) 10%,
      rgba(3, 41, 70, 0.78) 34%,
      rgba(1, 17, 34, 0.72) 68%,
      rgba(1, 13, 28, 0.94) 100%
    );
  pointer-events: none;
}

.fish-footer-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 56px, 1560px);
  margin: 0 auto;
  padding: clamp(44px, 4.8vw, 86px);
  border-radius: 46px;
  background: rgba(2, 18, 36, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  text-align: center;
}

.fish-footer-head {
  max-width: 980px;
  margin: 0 auto 56px;
  text-align: center;
}

.fish-footer-kicker {
  margin: 0 0 18px;
  color: rgba(143, 220, 255, 0.78);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.fish-footer-head h2 {
  margin: 0;
  font-size: clamp(72px, 8vw, 150px);
  line-height: 0.88;
  letter-spacing: -0.08em;
}

.fish-footer-main {
  display: grid;
  grid-template-columns: minmax(300px, 0.55fr) minmax(620px, 1.45fr);
  gap: 72px;
  align-items: center;
}

.fish-footer-cta {
  max-width: 430px;
  margin: 0 auto;
  text-align: center;
}

.fish-footer-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.fish-footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 30px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 900;
  color: #ffffff;
  text-decoration: none;
  transition:
    transform 220ms ease,
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.fish-footer-btn:hover {
  transform: translateY(-2px);
}

.fish-footer-btn--telegram {
  background: #2aabee;
  color: #ffffff;
  border: 1px solid rgba(42, 171, 238, 0.48);
  box-shadow: 0 18px 42px rgba(42, 171, 238, 0.18);
}

.fish-footer-btn--telegram:hover {
  background: #38bfff;
  color: #ffffff;
  border-color: rgba(56, 191, 255, 0.66);
  box-shadow: 0 22px 48px rgba(42, 171, 238, 0.24);
}

.fish-footer-btn--call {
  background: #29d66f;
  color: #ffffff;
  border: 1px solid rgba(41, 214, 111, 0.42);
  box-shadow: 0 18px 42px rgba(41, 214, 111, 0.18);
}

.fish-footer-btn--call:hover {
  background: #36ef80;
  color: #ffffff;
  border-color: rgba(54, 239, 128, 0.62);
  box-shadow: 0 22px 48px rgba(41, 214, 111, 0.24);
}

.fish-footer-cta p {
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(17px, 1.1vw, 21px);
  line-height: 1.6;
}

.fish-footer-video {
  position: relative;
  width: min(100%, 760px);
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(2, 18, 36, 0.35);
}

.fish-footer-video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.14);
  pointer-events: none;
}

.fish-footer-video video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.fish-footer-video-toggle {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 38px;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.fish-footer-video-toggle.is-playing {
  font-size: 32px;
}

.fish-footer-location {
  max-width: 980px;
  margin: 62px auto 0;
  text-align: center;
}

.fish-footer-location-label {
  margin: 0 0 12px;
  color: rgba(143, 220, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.fish-footer-location h3 {
  margin: 0;
  font-size: clamp(36px, 3.2vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.fish-footer-location p:last-child {
  max-width: 820px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.55;
}

.fish-footer-bottom {
  position: relative;
  z-index: 2;
  width: min(100% - 56px, 1560px);
  margin: 34px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}

.fish-footer-bottom nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.fish-footer-bottom a {
  color: rgba(255, 255, 255, 0.65);
}

.fish-footer-bottom a:hover {
  color: #ffffff;
}

@media (max-width: 980px) {
  .fish-footer {
    min-height: auto;
    padding: 90px 18px 30px;
    display: block;
  }

.fish-footer-bg-video {
  inset: 0;
  height: 100%;
}

  .fish-footer-bg-overlay {
    background:
      linear-gradient(
        180deg,
        #032946 0%,
        rgba(3, 41, 70, 0.9) 18%,
        rgba(1, 17, 34, 0.82) 68%,
        #010d1c 100%
      );
  }

  .fish-footer-inner {
    width: 100%;
    padding: 30px 18px;
    border-radius: 30px;
    text-align: center;
  }

  .fish-footer-head {
    margin-bottom: 34px;
  }

  .fish-footer-head h2 {
    font-size: clamp(52px, 14vw, 82px);
  }

  .fish-footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .fish-footer-cta {
    max-width: 100%;
    text-align: center;
  }

.fish-footer-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 0;
  border-radius: 24px;
}

.fish-footer-video video {
  min-height: 0;
}

  .fish-footer-video-toggle {
    width: 78px;
    height: 78px;
    font-size: 32px;
  }

  .fish-footer-location {
    margin-top: 36px;
    text-align: center;
  }

  .fish-footer-location h3 {
    font-size: 34px;
  }

  .fish-footer-bottom {
    width: 100%;
    margin-top: 28px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .fish-footer-bottom nav {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .fish-footer-cta a {
    width: 100%;
  }

  .fish-footer-location {
    margin-top: 30px;
  }
}