.kemove-kbot-assistant {
  padding-block: 0 30px;
  font-family: var(--kemove-font-stack, Inter, Arial, sans-serif);
  background: #f5f7fa;
}

.kemove-kbot-assistant__inner {
  max-width: var(--kemove-home-width, 1320px);
}

.kemove-kbot-assistant__panel {
  display: grid;
  grid-template-columns: minmax(170px, 240px) minmax(260px, 0.9fr) minmax(420px, 1.35fr);
  gap: 28px;
  align-items: center;
  min-height: 224px;
  padding: 30px 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 20%, rgb(53 216 255 / 24%), transparent 26%),
    linear-gradient(135deg, #f5faff 0%, #fff 100%);
  border: 1px solid rgb(0 145 255 / 16%);
  border-radius: 22px;
  box-shadow: 0 10px 30px rgb(15 23 42 / 6%);
}

.kemove-kbot-assistant__visual {
  position: relative;
  display: grid;
  place-items: end center;
  min-height: 160px;
}

.kemove-kbot-assistant__visual::before {
  position: absolute;
  inset: auto 16% 0;
  height: 34px;
  content: "";
  background: radial-gradient(ellipse at center, rgb(0 145 255 / 18%), transparent 68%);
  filter: blur(4px);
}

.kbot-assistant-image {
  position: relative;
  z-index: 1;
  display: block;
  width: min(210px, 100%);
  height: auto;
  object-fit: contain;
  animation: kemoveKbotFloat 4.8s ease-in-out infinite;
}

.kemove-kbot-assistant__title {
  margin: 0;
  color: #111827;
  font-size: clamp(24px, 2.25vw, 34px);
  font-weight: 800;
  line-height: 1.1;
}

.kemove-kbot-assistant__text {
  max-width: 470px;
  margin: 12px 0 0;
  color: #4b5563;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

.kemove-kbot-assistant__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  margin-block-start: 22px;
  color: #fff !important;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  background: linear-gradient(135deg, #0091ff, #006be6);
  border-radius: 10px;
  box-shadow: 0 10px 28px rgb(0 145 255 / 24%);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.kemove-kbot-assistant__features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.kemove-kbot-feature {
  display: grid;
  gap: 12px;
  min-height: 150px;
  padding: 20px 16px;
  text-align: center;
  background: rgb(255 255 255 / 82%);
  border: 1px solid rgb(229 231 235 / 72%);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgb(15 23 42 / 5%);
}

.kemove-kbot-feature__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-inline: auto;
  color: #0091ff;
  background: rgb(0 145 255 / 8%);
  border: 1px solid rgb(0 145 255 / 16%);
  border-radius: 14px;
}

.kemove-kbot-feature__icon svg {
  width: 22px;
  height: 22px;
}

.kemove-kbot-feature__title {
  margin: 0;
  color: #111827;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.kemove-kbot-feature__text {
  margin: 0;
  color: #6b7280;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}

@media (hover: hover) and (pointer: fine) {
  .kemove-kbot-assistant__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgb(0 145 255 / 30%);
  }

  .kemove-kbot-feature:hover {
    border-color: rgb(0 145 255 / 32%);
    transform: translateY(-2px);
  }
}

@media (max-width: 1180px) {
  .kemove-kbot-assistant__panel {
    grid-template-columns: 180px 1fr;
  }

  .kemove-kbot-assistant__features {
    grid-column: 1 / -1;
  }
}

@media (max-width: 749px) {
  .kemove-kbot-assistant {
    padding-block-end: 26px;
  }

  .kemove-kbot-assistant__panel {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
    text-align: left;
    border-radius: 18px;
  }

  .kemove-kbot-assistant__visual {
    min-height: 120px;
    justify-items: start;
  }

  .kbot-assistant-image {
    width: 150px;
  }

  .kemove-kbot-assistant__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kemove-kbot-feature {
    min-height: 132px;
    padding: 16px 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .kbot-assistant-image {
    animation: none;
  }

  .kemove-kbot-assistant__button,
  .kemove-kbot-feature {
    transition: none;
  }
}

@keyframes kemoveKbotFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}
