.aitech-consent {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  width: min(420px, calc(100vw - 32px));
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
}

.aitech-consent.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.aitech-consent__panel {
  display: grid;
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(24, 172, 229, 0.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(24, 172, 229, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(8, 12, 14, 0.98) 0%, rgba(2, 4, 4, 0.98) 100%);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.34);
  color: #fff;
  backdrop-filter: blur(12px);
}

.aitech-consent__eyebrow {
  margin: 0 0 8px;
  color: #18ace5;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.aitech-consent__title {
  margin: 0;
  color: #fff;
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.aitech-consent__text {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
  line-height: 1.6;
}

.aitech-consent__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 14px;
}

.aitech-consent__links a {
  color: #18ace5;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

.aitech-consent__links a:hover,
.aitech-consent__links a:focus {
  color: #dff7ff;
  outline: none;
}

.aitech-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.aitech-consent__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.aitech-consent__button:hover,
.aitech-consent__button:focus {
  transform: translateY(-2px);
  outline: none;
}

.aitech-consent__button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.aitech-consent__button--ghost:hover,
.aitech-consent__button--ghost:focus {
  border-color: rgba(24, 172, 229, 0.28);
  background: rgba(24, 172, 229, 0.12);
}

.aitech-consent__button--primary {
  border: 1px solid #18ace5;
  background: #18ace5;
  color: #fff;
  box-shadow: 0 14px 28px rgba(24, 172, 229, 0.24);
}

.aitech-consent__button--primary:hover,
.aitech-consent__button--primary:focus {
  background: #020400;
  color: #fff;
  box-shadow: inset 240px 0 0 0 #020400, 0 16px 30px rgba(0, 0, 0, 0.28);
}

@media (max-width: 767px) {
  .aitech-consent {
    right: 16px;
    bottom: 16px;
    left: 16px;
    width: auto;
  }

  .aitech-consent__panel {
    padding: 18px;
    border-radius: 20px;
  }

  .aitech-consent__actions {
    flex-direction: column;
  }

  .aitech-consent__button {
    width: 100%;
  }
}
