.deskavio-footer {
  background: radial-gradient(circle at top left, #020617 0%, #020617 22%, #020617 45%, #020617 100%);
  border-top: 1px solid rgba(30, 64, 175, 0.6);
  color: #e5e7eb;
  padding-top: 2.5rem;
  padding-bottom: 4.5rem;
}

.deskavio-footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding-inline: 1.25rem;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 2fr);
  gap: 2.5rem;
}

.deskavio-footer__brand {
  max-width: 320px;
}

.deskavio-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: inherit;
}

.deskavio-footer__logo-mark {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 20%, #38bdf8, #0f172a 55%, #020617 100%);
  box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.4);
}

.deskavio-footer__logo-text {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.deskavio-footer__tagline {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: #9ca3af;
}

.deskavio-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.deskavio-footer__heading {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #e5e7eb;
  margin: 0 0 0.9rem;
}

.deskavio-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.deskavio-footer__link {
  font-size: 0.9rem;
  color: #9ca3af;
  text-decoration: none;
}

.deskavio-footer__link:hover,
.deskavio-footer__link:focus-visible {
  color: #e5f1ff;
}

.deskavio-footer__link:focus-visible {
  outline: 2px solid #38bdf8;
  outline-offset: 3px;
  border-radius: 3px;
}

.deskavio-footer__bottom {
  max-width: 1120px;
  margin: 1.75rem auto 0;
  padding-inline: 1.25rem;
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  padding-top: 1.25rem;
}

.deskavio-footer__copy {
  margin: 0;
  font-size: 0.8rem;
  color: #6b7280;
}

/* Cookie banner */
.deskavio-cookie {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 50;
  display: none;
  padding: 0.85rem 0.75rem 1rem;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.98), #020617);
  box-shadow: 0 -12px 30px rgba(15, 23, 42, 0.85);
}

.deskavio-cookie--visible {
  display: block;
  animation: deskavio-cookie-slide-up 0.24s ease-out;
}

.deskavio-cookie--hidden {
  animation: deskavio-cookie-slide-down 0.22s ease-in forwards;
}

.deskavio-cookie__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding-inline: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
}

.deskavio-cookie__text {
  flex: 1 1 60%;
}

.deskavio-cookie__title {
  margin: 0 0 0.35rem;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #e5e7eb;
}

.deskavio-cookie__description {
  margin: 0 0 0.35rem;
  font-size: 0.85rem;
  color: #cbd5f5;
}

.deskavio-cookie__more {
  font-size: 0.8rem;
  color: #93c5fd;
  text-decoration: underline;
}

.deskavio-cookie__more:focus-visible {
  outline: 2px solid #38bdf8;
  outline-offset: 2px;
  border-radius: 2px;
}

.deskavio-cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}

.deskavio-cookie__button {
  min-width: 9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  cursor: pointer;
}

.deskavio-cookie__button--secondary {
  background: transparent;
  color: #e5e7eb;
  border-color: rgba(148, 163, 184, 0.7);
}

.deskavio-cookie__button--secondary:hover,
.deskavio-cookie__button--secondary:focus-visible {
  border-color: #f87171;
  color: #fecaca;
}

.deskavio-cookie__button--primary {
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  color: #0b1120;
}

.deskavio-cookie__button--primary:hover,
.deskavio-cookie__button--primary:focus-visible {
  filter: brightness(1.05);
}

.deskavio-cookie__button:focus-visible {
  outline: 2px solid #38bdf8;
  outline-offset: 2px;
}

@keyframes deskavio-cookie-slide-up {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes deskavio-cookie-slide-down {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(100%);
    opacity: 0;
  }
}

@media (max-width: 800px) {
  .deskavio-footer__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .deskavio-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .deskavio-footer {
    padding-bottom: 5.5rem;
  }

  .deskavio-footer__inner {
    padding-inline: 1rem;
  }

  .deskavio-footer__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .deskavio-cookie__inner {
    padding-inline: 1rem;
    flex-direction: column;
    align-items: stretch;
  }

  .deskavio-cookie__actions {
    justify-content: stretch;
  }

  .deskavio-cookie__button {
    width: 100%;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .deskavio-cookie {
    animation: none !important;
  }
}
