/*
 * AI24Solutions — Anvera product landing v1
 * Scope: /anvera/ and /en/anvera/ only.
 */

.anvera-hero {
  overflow: hidden;
  background:
    radial-gradient(
      circle at 82% 20%,
      rgba(127,154,130,.18),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      #f8faf7,
      #eef3ee
    );
}

.anvera-product-visual {
  position: relative;
  display: grid;
  min-height: 390px;
  place-items: center;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(75,103,80,.14);
  border-radius: 30px;
  background:
    linear-gradient(
      145deg,
      #18221b,
      #26362a
    );
  box-shadow:
    0 26px 70px rgba(27,45,31,.18);
}

.anvera-product-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(
      rgba(255,255,255,.04) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,.04) 1px,
      transparent 1px
    );
  background-size: 34px 34px;
  mask-image:
    linear-gradient(
      to bottom,
      rgba(0,0,0,.9),
      transparent
    );
}

.anvera-visual-core {
  position: relative;
  z-index: 1;
  display: grid;
  width: 138px;
  height: 138px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 34px;
  background: rgba(255,255,255,.96);
  box-shadow:
    0 24px 54px rgba(0,0,0,.22);
}

.anvera-visual-core img {
  display: block;
  width: 110px;
  height: 110px;
  object-fit: contain;
}

.anvera-visual-note {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 3px;
  min-width: 150px;
  padding: 12px 15px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 15px;
  background: rgba(20,30,22,.88);
  box-shadow:
    0 16px 36px rgba(0,0,0,.18);
  color: #eef5ef;
}

.anvera-visual-note strong {
  font-size: 13px;
}

.anvera-visual-note span {
  color: #b8c8ba;
  font-size: 11px;
}

.anvera-visual-note--knowledge {
  top: 54px;
  left: 30px;
}

.anvera-visual-note--test {
  top: 92px;
  right: 26px;
}

.anvera-visual-note--widget {
  right: 46px;
  bottom: 44px;
}

.anvera-ownership-note {
  margin-top: 18px;
  color: #657268;
  font-size: 14px;
  font-weight: 750;
}

.anvera-boundaries {
  display: grid;
  grid-template-columns:
    minmax(0,.92fr)
    minmax(0,1.08fr);
  gap: 50px;
  align-items: start;
  padding: 44px;
  border: 1px solid rgba(75,103,80,.12);
  border-radius: 28px;
  background: #fff;
  box-shadow:
    0 18px 48px rgba(31,48,34,.06);
}

.anvera-boundary-list {
  display: grid;
  gap: 12px;
}

.anvera-boundary-list > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: 16px;
  background: #f5f8f5;
}

.anvera-boundary-list span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 10px;
  background: #e4ece5;
  color: #536b57;
  font-size: 11px;
  font-weight: 900;
}

.anvera-boundary-list p {
  margin: 4px 0 0;
  color: #59645b;
  line-height: 1.55;
}

@media (max-width: 1050px) {
  .anvera-product-visual {
    min-height: 350px;
  }

  .anvera-boundaries {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 680px) {
  .anvera-product-visual {
    min-height: 330px;
    padding: 24px;
  }

  .anvera-visual-core {
    width: 112px;
    height: 112px;
    border-radius: 28px;
  }

  .anvera-visual-core img {
    width: 88px;
    height: 88px;
  }

  .anvera-visual-note {
    min-width: 125px;
    padding: 10px 12px;
  }

  .anvera-visual-note--knowledge {
    top: 34px;
    left: 18px;
  }

  .anvera-visual-note--test {
    top: 88px;
    right: 14px;
  }

  .anvera-visual-note--widget {
    right: 24px;
    bottom: 30px;
  }

  .anvera-boundaries {
    padding: 26px 20px;
  }
}
