.info {
  --hook-rotate: -12deg;

  position: relative;
  padding: 0 18px 0;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #056c9f 0%,
      #056c9f 20%,
      #055f91 42%,
      #04466f 66%,
      #033254 84%,
      #032946 100%
    );
}

.info::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.014) 0px,
      rgba(255, 255, 255, 0.014) 1px,
      transparent 1px,
      transparent 30px
    ),
    radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: auto, 54px 54px;
  opacity: 0.1;
  pointer-events: none;
}

.info-line-wrap {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: calc(100% - 260px);
  transform: translateX(-50%);
  z-index: 1;
}

.info-line {
  width: 1px;
  height: 100%;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.46) 0%,
      rgba(255,255,255,0.3) 72%,
      rgba(255,255,255,0.18) 100%
    );
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.12);
}

.info-card {
  position: relative;
  z-index: 3;
  width: min(88vw, 390px);
  min-height: 142px;
  margin: 0 auto 42px;
  padding: 24px 20px 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(4, 24, 50, 0.45);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
  text-align: center;
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
}

.info-card:first-of-type {
  margin-top: 42px;
}

.info-card:last-of-type {
  margin-bottom: 10px;
}

.info-card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -15px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.42);
  transform: translateX(-50%);
}

.info-card.is-visible,
.hook-cta.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.info-card h2 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.info-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.46;
  opacity: 0.84;
}

.hook-cta {
  position: relative;
  z-index: 4;
  height: 238px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0;
  margin-top: -34px;
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
}

.hook-link {
  position: relative;
  display: block;
  width: 230px;
  height: 230px;
  color: #ffffff;
  text-align: center;
  transform: rotate(var(--hook-rotate));
  transform-origin: 50% 50%;
}

.hook-link::before {
  display: none;
}

.hook-img {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  filter:
    drop-shadow(0 24px 54px rgba(0, 0, 0, 0.38))
    drop-shadow(0 0 14px rgba(255, 255, 255, 0.08));
  transform: translate(-50%, -50%);
  animation: hookFloat 2.8s ease-in-out infinite;
}

.hook-badge {
  position: absolute;
  left: 47%;
  top: 58%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  padding: 12px;
  background:
    radial-gradient(circle at 38% 28%, rgba(255,255,255,0.42), transparent 26%),
    linear-gradient(145deg, #ffe078 0%, #f2bd36 54%, #d99b18 100%);
  color: #15324a;
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,0.45),
    inset 0 -7px 18px rgba(116, 75, 0, 0.18),
    0 16px 42px rgba(0, 0, 0, 0.26),
    0 0 0 4px rgba(255, 255, 255, 0.08);
  transform: translate(-50%, -50%) rotate(-12deg);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.hook-badge::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 2px solid rgba(255, 220, 116, 0.36);
  box-shadow: 0 0 22px rgba(255, 199, 66, 0.18);
}

.hook-badge::after {
  content: "";
  position: absolute;
  right: 13px;
  top: 15px;
  width: 19px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
  transform: rotate(-24deg);
}

@keyframes hookFloat {
  0%, 100% {
    transform: translate(-50%, -50%) translateY(0);
  }

  50% {
    transform: translate(-50%, -50%) translateY(8px);
  }
}

@media (min-width: 760px) {
  .info {
    --hook-rotate: -12deg;

    padding-left: max(40px, calc((100vw - 1200px) / 2));
    padding-right: max(40px, calc((100vw - 1200px) / 2));
  }

  .info-line-wrap {
    height: calc(100% - 360px);
  }

  .info-card {
    width: min(780px, 58vw);
    min-height: 220px;
    margin-bottom: 58px;
    padding: 44px 52px 40px;
    border-radius: 30px;
  }

  .info-card:first-of-type {
    margin-top: 58px;
  }

  .info-card:last-of-type {
    margin-bottom: 14px;
  }

  .info-card h2 {
    margin-bottom: 18px;
    font-size: clamp(40px, 2.55vw, 54px);
    line-height: 1;
  }

  .info-card p {
    font-size: clamp(21px, 1.32vw, 26px);
    line-height: 1.48;
  }

  .hook-cta {
    height: 326px;
    margin-top: -44px;
  }

  .hook-link {
    width: 315px;
    height: 315px;
    transform: rotate(var(--hook-rotate));
  }

  .hook-badge {
    width: 118px;
    height: 118px;
    font-size: 15px;
    left: 47%;
    top: 58%;
  }
}