/*--  ----------- --------- - ----------- ----------- --->
<---  -----------      HERO - Section     ----------- --->
<---  ----------- --------- - ----------- ----------- --*/
#hero {
  position: relative;
  overflow: hidden;
  background: var(--background-color-gradient);
}

#hero .ui-container {
  position: relative;
  z-index: 1;
}

.ui-hero {
  top: -4rem;
  position: relative;
  display: grid;
  align-items: center;
  row-gap: 3rem;
  column-gap: 2rem;
  padding-top: 2rem;
  padding-bottom: 0rem;
  z-index: 2;
  min-height: inherit;
}

.ui-hero-cta {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  margin-top: 1rem;
  row-gap: 1.5rem;
}

.ui-title {
  font-size: clamp(1.875rem, 6vw, 4rem);
}

.ui-text {
  max-width: 69ch;
  margin-bottom: 0.75rem;
}

.ui-hero-circle-wrap {
  max-width: clamp(16rem, 40vw, 24rem);
  position: relative;
  display: block;
  height: auto;
  justify-self: center;
  overflow: visible;
  transition: all 3s ease;
}

.ui-hero-circle {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;

  fill: var(--white-color);
  opacity: 0.15;
  z-index: 1;
}

.ui-hero-circle-wrap::before {
  content: "";
  position: absolute;
  inset: -1%;
  border-radius: 100%;
  background: radial-gradient(
    circle at 50% 45%,
    hsla(0, 0%, 100%, 0.3) 0%,
    hsla(0, 0%, 100%, 0.4) 55%,
    transparent 70%
  );
  filter: blur(1rem);
  z-index: 0;

  opacity: 0.6;

  transition: opacity 300ms ease;
}

.ui-hero-banner {
  position: absolute;
  display: grid;
  top: 30%;
  right: 1.5rem;
  justify-items: center;
  row-gap: 0.5rem;
  visibility: hidden;
}

.ui-hero-banner > * {
  font-size: 1.25rem;
  line-height: inherit;
  color: var(--white-color);
}

.ui-hero-banner::before,
.ui-hero-banner::after {
  content: "";
  position: absolute;
  width: 4rem;
  height: 1.5px;
  transform: rotate(90deg);
  background: var(--white-color);
}

.ui-hero-banner::before {
  top: -3rem;
}

.ui-hero-banner::after {
  bottom: -3rem;
}

.ui-social-icon svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: var(--white-color);
  transition: all 0.2s ease;
  opacity: 1;
}

.ui-social-icon svg:hover {
  fill: var(--brand-color);
  opacity: 1;
}

/* 768px */
@media screen and (min-width: 48rem) {
  .ui-hero {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    margin-top: 4rem;
    top: 0;
  }
  .ui-hero-circle-wrap {
    max-width: 20rem;
    order: 1;
  }
}
/* 1024px */
@media screen and (min-width: 64rem) {
  .ui-hero {
    grid-template-columns: 1fr max-content;
    column-gap: 4rem;
    top: 2rem;
  }
  .ui-hero-circle-wrap {
    max-width: 24rem;
    margin-right: 5rem;
  }
  .ui-hero-banner {
    visibility: visible;
  }
}
/*-- --------- ----- ----------- --->
<---   HERO - Section - Showcase --->
<--- --------- ----- ----------- --*/

.ui-hero-carousel {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: 1;
}

.ui-hero-carousel-viewport {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  overflow: visible;
}

.ui-hero-carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
  transform: translateX(-1rem) translateY(-1rem);
}

.ui-hero-carousel-slide {
  position: absolute;
  inset: 0;
  margin: auto;

  width: 115%;
  display: grid;
  place-items: center;

  opacity: 0;
  transform: translateX(-15rem) scale(0.1);
  filter: blur(6px);

  transition: all 2s ease;
  pointer-events: none;
}

.ui-hero-carousel-slide.is-active {
  opacity: 1;
  transform: translateX(-0.75rem);
  filter: blur(0);
  pointer-events: auto;
}

.ui-hero-carousel-slide.is-exiting {
  transition:
    all 1s ease,
    opacity 0.5s ease;
  transform: translateX(15rem) scale(0.1);
  filter: blur(10px);
  opacity: 0;
}

.ui-hero-carousel-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 300ms ease;
}

.ui-hero-carousel-image:hover {
  transform: scale(1.05);
}

.ui-hero-circle-wrap:has(.ui-hero-carousel-slide.is-active:hover)::before {
  opacity: 1;
}

.ui-hero-carousel-nav {
  pointer-events: auto;

  position: absolute;
  bottom: 0;
  transform: translateY(95%);

  width: 2.4rem;
  height: 2.4rem;
  border-radius: 10rem;

  background: var(--black-color);
  color: var(--white-color);

  opacity: 0.8;
  transition: opacity 200ms ease;
  z-index: 2;
}

.ui-hero-carousel-nav svg {
  width: 1.15rem;
  height: 1.15rem;
}

.ui-hero-carousel-prev {
  left: 2rem;
}

.ui-hero-carousel-next {
  right: 2rem;
}

.ui-hero-carousel-prev svg {
  left: 2rem;
  transform: translateX(-1.5px);
}

.ui-hero-carousel-next svg {
  right: 2rem;
  transform: translateX(1.5px);
}

.ui-hero-carousel-nav:hover {
  opacity: 1;
}

.ui-hero-carousel-dots {
  pointer-events: auto;

  position: absolute;
  left: 50%;
  bottom: -1.5rem;
  transform: translateX(-50%);

  display: flex;
  gap: 0.4rem;
  align-items: center;
  justify-content: center;
}

.ui-hero-carousel-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--white-color);
  opacity: 0.25;
  transition:
    opacity 200ms ease,
    transform 200ms ease;
}

.ui-hero-carousel-dot.is-active {
  opacity: 1;
  transform: scale(1.15);
}

.ui-hero-carousel-dot:where(:hover, :focus-visible) {
  opacity: 0.9;
}

/* 768px */
@media screen and (max-width: 48rem) {
  .ui-hero-carousel-nav {
    display: none;
    pointer-events: none;
  }
}

/*-- --------- ----- ----------- --->
<---   HERO -  Svg  - background --->
<--- --------- ----- ----------- --*/

.ui-hero-background {
  position: absolute;
  top: 10rem;
  left: -13rem;
  width: clamp(24rem, 46vw, 52rem);
  opacity: 0.42;
  pointer-events: none;
  z-index: 1;
}

.ui-hero-background-svg {
  width: 100%;
  height: auto;
  display: block;
  transform-origin: top left;
  transform: rotate(-24deg) scale(1.04);
  filter: drop-shadow(0 0 1.5rem hsl(48 100% 50% / 0.08));
  will-change: transform;
}

.ui-hero-background-svg .cls-98 path {
  stroke: var(--brand-color);
  stroke-width: 1.15;
  opacity: 0.12;
  vector-effect: non-scaling-stroke;
  transform-box: fill-box;
  transform-origin: center;
  will-change: transform, opacity;
  animation: ui-hero-line-float 9s ease-in-out infinite;
}

.ui-hero-background-svg .cls-98 path:nth-of-type(4n + 1) {
  animation-duration: 10s;
  animation-delay: -1.2s;
}

.ui-hero-background-svg .cls-98 path:nth-of-type(4n + 2) {
  animation-duration: 12s;
  animation-delay: -3.8s;
}

.ui-hero-background-svg .cls-98 path:nth-of-type(4n + 3) {
  animation-duration: 8.5s;
  animation-delay: -2.4s;
}

.ui-hero-background-svg .cls-98 path:nth-of-type(4n + 4) {
  animation-duration: 11s;
  animation-delay: -5.1s;
}

.ui-hero-background-svg .cls-98 path:nth-of-type(6n) {
  opacity: 0.28;
}

.ui-hero-background-svg .cls-98 path:nth-of-type(9n) {
  opacity: 0.34;
}

@keyframes ui-hero-line-float {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.12;
  }
  25% {
    transform: translate3d(0.08rem, -0.05rem, 0) scale(1.001);
    opacity: 0.16;
  }
  50% {
    transform: translate3d(-0.05rem, 0.06rem, 0) scale(0.999);
    opacity: 0.2;
  }
  75% {
    transform: translate3d(0.06rem, 0.03rem, 0) scale(1.001);
    opacity: 0.15;
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.12;
  }
}
/*--  1300px  --*/
@media screen and (max-width: 81.25rem) {
  .ui-hero-background {
    top: 2rem;
    left: -11rem;
    width: clamp(24rem, 70vw, 40rem);
    opacity: 0.62;
  }

  .ui-hero-background-svg {
    transform: rotate(-18deg) scale(1.02);
  }
}

@media screen and (max-width: 48rem) {
  .ui-hero-background {
    top: 4rem;
    left: -12rem;
    width: clamp(22rem, 95vw, 34rem);
    opacity: 0.44;
  }

  .ui-hero-background-svg {
    transform: rotate(-22deg) scale(1);
  }

  .ui-hero-background-svg .cls-98 path {
    animation-duration: 12s;
  }
}

/*--  ----------- --------- - ----------- ----------- --->
<---  -----------  SERVICES - Section     ----------- --->
<---  ----------- --------- - ----------- ----------- --*/

.ui-services {
  padding-top: 0rem;
}

.ui-service-container {
  max-width: 100rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.ui-services-grid {
  display: grid;
  gap: 1.25rem;
}

.ui-service-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.35rem;
  border-radius: 1rem;
  border: 1px solid hsl(49 99% 54% / 0.7);
  background: linear-gradient(
    180deg,
    hsla(0, 0%, 100%, 0.04) 0%,
    hsla(0, 0%, 100%, 0.02) 100%
  );
  backdrop-filter: blur(8px);
  transition:
    transform 250ms ease,
    border-color 250ms ease;
}

.ui-service-card:hover {
  transform: translateY(-0.2rem);
  border-color: var(--brand-color);
}

.ui-service-card-title {
  font-size: clamp(1.25rem, 2vw, 1.45rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.05rem;
  color: var(--white-color);
  margin: 0;
}

.ui-service-card-icon {
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  object-fit: contain;
}

/* 768px */
@media screen and (min-width: 48rem) {
  .ui-services {
    padding-top: 6rem;
  }

  .ui-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (min-width: 64rem) {
  .ui-services {
    padding-top: 7rem;
  }

  .ui-services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
  }
}
/*--  ----------- --------- - ----------- ----------- --->
<---  -----------     omoss - Section     ----------- --->
<---  ----------- --------- - ----------- ----------- --*/
#omoss {
  position: relative;
  overflow: hidden;
  padding-bottom: 4rem;
  background: var(--background-color-gradient);
}

#omoss .ui-container {
  display: grid;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 6rem);
  max-width: 90rem;
}

.ui-image {
  position: relative;
  width: 100%;
  height: auto;
  margin-inline: auto;
}

.ui-background {
  display: block;
  width: 100%;
}

.ui-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: scale(1.06);
}

#omoss .ui-subtitle {
  margin-bottom: 1.25rem;
}

#omoss .ui-text {
  margin-top: 1rem;
  max-width: 60ch;
  margin-bottom: 0;
  color: var(--white-color-dark);
}

.ui-ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin: 1rem 0 1.5rem;
  padding: 0;
}

.ui-li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--white-color);
}

.ui-li::before {
  content: "";
  flex: 0 0 0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.5rem;
  border-radius: 50%;
  background: var(--brand-color);
  box-shadow: 0 0 0.65rem hsl(49 99% 54% / 0.35);
}

@media screen and (max-width: 47.99rem) {
  .ui-image {
    max-width: 30rem;
  }
}

@media screen and (min-width: 48rem) {
  #omoss .ui-container {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }

  .ui-image {
    order: 1;
    min-width: 0;
  }

  .ui-content {
    order: 2;
    margin-left: 0;
    width: 100%;
    min-width: 0;
  }
}

@media screen and (min-width: 64rem) {
  #omoss {
    padding: 4rem 0 5rem;
  }

  .ui-image {
    max-width: 42rem;
    margin-left: 0;
  }

  .ui-image img {
    transform: scale(1.1);
  }
}

@media screen and (min-width: 48rem) and (max-width: 81.25rem) {
  .ui-ul {
    display: none;
  }
  #omoss .ui-text {
    margin-bottom: 1rem;
  }
}

/*--  ----------- --------- - ----------- ----------- --->
<---  -----------  kontakt  - Section     ----------- --->
<---  ----------- --------- - ----------- ----------- --*/

.ui-contact {
  padding-block: 5rem;
  overflow: hidden;
}

.ui-contact-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.ui-contact-grid {
  display: grid;
  gap: 4rem;
  align-items: start;
}

.ui-contact-left {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ui-contact-text {
  color: var(--white-color-dark);
  max-width: 58ch;
  margin: 0;
}

.ui-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.ui-faq {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: hsl(240 7% 6%);
  border: 1px solid hsl(49 99% 54% / 0.18);
  border-radius: 1rem;
  padding: 2rem;
}

.ui-faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid hsl(0 0% 100% / 0.08);
}

.ui-faq-item {
  border-bottom: 1px solid hsl(0 0% 100% / 0.08);
}

.ui-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.5rem 0;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white-color);
  text-align: left;
  white-space: normal;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  transition: color 200ms ease;
}

.ui-faq-question:hover {
  color: var(--brand-color);
}

.ui-faq-icon {
  flex-shrink: 0;
  width: 1.15rem;
  height: 1.15rem;
  color: var(--brand-color);
  transition: transform 300ms ease;
}

.ui-faq-item.is-open .ui-faq-icon {
  transform: rotate(180deg);
}

.ui-faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 300ms ease;
}

.ui-faq-item.is-open .ui-faq-answer {
  grid-template-rows: 1fr;
}

.ui-faq-answer > div {
  overflow: hidden;
}

.ui-faq-answer p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--white-color-dark);
  padding-bottom: 1.1rem;
  margin: 0;
}

/* 640px */
@media screen and (min-width: 40rem) {
  .ui-form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* 1024px */
@media screen and (min-width: 64rem) {
  .ui-contact {
    padding-block: 6rem;
  }

  .ui-contact-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 6rem;
  }
}
