body {
  background: #fcfcfc;
  color: #0b0b0b;
  font-family: "Rubik", sans-serif;
}

html {
  scroll-behavior: smooth;
}

img {
  border-radius: 16px;
}

input,
textarea,
select {
  border-radius: 12px;
}

.card-soft,
.team-card,
.service-card,
.contact-card {
  border-radius: 24px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.button-outline,
button,
[type="submit"],
[type="button"] {
  border-radius: 0;
  border: 1.5px solid #2e2e2e;
  background: transparent;
  color: #2e2e2e;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button-outline:hover,
button:hover,
[type="submit"]:hover,
[type="button"]:hover {
  background: #2e2e2e;
  color: #ffffff;
  border-color: #2e2e2e;
}

a,
button,
[type="submit"],
[type="button"] {
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

a:hover,
button:hover,
[type="submit"]:hover,
[type="button"]:hover {
  transform: translateY(-1px);
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: #0085b9;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  transform: scaleX(1);
}

.geom-shape {
  position: absolute;
  pointer-events: none;
  border-radius: 9999px;
  opacity: 0.08;
}

.geom-circle {
  width: 13rem;
  height: 13rem;
  background: #0085b9;
}

.geom-square {
  width: 8rem;
  height: 8rem;
  background: #808080;
  border-radius: 24px;
  transform: rotate(18deg);
}

.geom-line {
  width: 9rem;
  height: 9rem;
  border: 1px solid rgba(46, 46, 46, 0.18);
  border-radius: 24px;
  transform: rotate(-16deg);
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  border: 1px solid rgba(46, 46, 46, 0.12);
  background: rgba(252, 252, 252, 0.98);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  padding: 1rem;
}

.cookie-banner.hidden {
  display: none;
}

@media (min-width: 768px) {
  .cookie-banner {
    left: auto;
    max-width: 28rem;
  }
}
