html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #202737;
  background: #ffffff;
}

@media (max-width: 1024px) {
  body {
    padding-bottom: calc(5.75rem + env(safe-area-inset-bottom, 0px));
  }
  body.niko-mobile-dock--call-open {
    padding-bottom: calc(9.5rem + env(safe-area-inset-bottom, 0px));
  }
}
.niko-onepage {
  overflow-x: hidden;
}

.niko {
  display: block;
  width: 100%;
}

#home,
#services,
#about,
#testimonials,
#contact {
  scroll-margin-top: 5.5rem;
}
@media (min-width: 1025px) {
  #home,
  #services,
  #about,
  #testimonials,
  #contact {
    scroll-margin-top: 5rem;
  }
}

@media (max-width: 1024px) {
  body.site-header-nav-open {
    overflow: hidden;
  }
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid #edf0f5;
}

.site-header__inner {
  width: min(100% - 2rem, 1120px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 0.75rem;
  row-gap: 0;
  padding-block: 0.65rem 0;
}

.site-branding {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  display: inline-flex;
  align-items: center;
}

.site-branding__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}

.site-branding__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: block;
}

.site-branding__icon--custom {
  width: auto;
  height: auto;
  max-height: 28px;
  max-width: min(200px, 42vw);
  object-fit: contain;
}

.site-branding__name {
  font-size: 1.1rem;
  line-height: 1.2;
  font-weight: 700;
  color: #1d2737;
  white-space: nowrap;
}

.site-header__menu-toggle {
  grid-column: 2;
  grid-row: 1;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(7, 20, 43, 0.12);
  border-radius: 12px;
  background: #ffffff;
  color: #1d2737;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.site-header__menu-toggle:hover {
  background: #f4f6fb;
  border-color: rgba(7, 20, 43, 0.18);
}
.site-header__menu-toggle:focus-visible {
  outline: 2px solid #2f6df6;
  outline-offset: 2px;
}

.site-header__burger {
  position: relative;
  display: block;
  width: 22px;
  height: 16px;
}

.site-header__burger-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}
.site-header__burger-line:nth-child(1) {
  top: 0;
}
.site-header__burger-line:nth-child(2) {
  top: 7px;
}
.site-header__burger-line:nth-child(3) {
  top: 14px;
}

.site-header--nav-open .site-header__burger-line:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}

.site-header--nav-open .site-header__burger-line:nth-child(2) {
  opacity: 0;
}

.site-header--nav-open .site-header__burger-line:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}

.site-header__panel {
  grid-column: 1/-1;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, border-color 0.2s ease;
  border-top: 1px solid transparent;
}

.site-header__panel.site-header__panel--open {
  max-height: min(85vh, 640px);
  border-top-color: #edf0f5;
  padding-bottom: 1rem;
}

.site-nav__menu {
  margin: 0;
  padding: 0.35rem 0 1rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.site-nav__menu > li {
  margin: 0;
  border-bottom: 1px solid #edf0f5;
}

.site-nav__menu > li:last-of-type {
  border-bottom: none;
}

.site-nav__menu a {
  display: block;
  padding: 0.9rem 0;
  color: #38445a;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
}

.site-nav__menu a:hover,
.site-nav__menu a:focus-visible {
  color: #2f6df6;
}

.site-header__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  gap: 0.65rem;
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid #edf0f5;
}

.site-header__contact-desktop {
  display: none;
}

.site-header__contact-mobile {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  gap: 0.65rem;
}

.site-header__actions .btn {
  width: 100%;
  justify-content: center;
  min-height: 44px;
  box-sizing: border-box;
}

@media (min-width: 1025px) {
  body.site-header-nav-open {
    overflow: visible;
  }
  .site-header__inner {
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
    min-height: 72px;
    padding-block: 0;
  }
  .site-branding {
    grid-column: 1;
    grid-row: 1;
  }
  .site-header__menu-toggle {
    display: none !important;
  }
  .site-header__panel {
    grid-column: 2;
    grid-row: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1.25rem;
    min-width: 0;
    max-height: none !important;
    overflow: visible !important;
    border-top: none !important;
    padding-bottom: 0 !important;
  }
  .site-nav {
    justify-self: center;
  }
  .site-nav__menu {
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
    padding: 0;
  }
  .site-nav__menu > li {
    border-bottom: none;
  }
  .site-nav__menu a {
    display: inline;
    padding: 0;
    font-size: 0.9rem;
    font-weight: 500;
  }
  .site-header__actions {
    justify-self: end;
    flex-direction: row;
    flex-wrap: wrap;
    width: auto;
    margin: 0;
    padding: 0;
    border: none;
    gap: 0.625rem;
  }
  .site-header__contact-desktop {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.625rem;
  }
  .site-header__contact-mobile {
    display: none !important;
  }
  .site-header__actions .btn {
    width: auto;
    min-height: 38px;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  min-height: 38px;
  padding: 0.45rem 1rem;
  box-sizing: border-box;
}

.btn__icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 1.125rem;
  height: 1.125rem;
  color: #ffffff;
}
.btn__icon .btn__icon-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.btn--compact {
  justify-content: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  min-height: 30px;
  padding: 0.28rem 0.65rem;
  gap: 0.35rem;
}
.btn--compact .btn__icon {
  width: 0.95rem;
  height: 0.95rem;
}

.btn--whatsapp {
  background: #20c863;
  color: #ffffff;
}

.btn--phone {
  background: #2f6df6;
  color: #ffffff;
}

@media (max-width: 720px) {
  .site-branding__name {
    font-size: 0.95rem;
    white-space: normal;
    max-width: min(52vw, 220px);
  }
  .site-header .btn {
    font-size: 0.8rem;
    min-height: 34px;
    padding-inline: 0.75rem;
    gap: 0.35rem;
  }
  .site-header .btn .btn__icon {
    width: 1rem;
    height: 1rem;
  }
  .site-header__actions .btn {
    min-height: 44px;
  }
}
.niko-mobile-dock {
  display: none;
}

@media (max-width: 1024px) {
  .niko-mobile-dock {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    padding: 0 0.75rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
    background: transparent;
  }
  .niko-mobile-dock__surface {
    background: #ffffff;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -8px 28px rgba(7, 20, 43, 0.12), 0 -2px 8px rgba(7, 20, 43, 0.06);
    border: 1px solid rgba(7, 20, 43, 0.08);
    border-bottom: none;
  }
  .niko-mobile-dock__sheet {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .niko-mobile-dock__sheet-inner {
    padding: 0.65rem 0.75rem 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    border-bottom: 1px solid #edf0f5;
  }
  .niko-mobile-dock--call-open .niko-mobile-dock__sheet {
    max-height: 12rem;
  }
  .niko-mobile-dock__tel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 44px;
    padding: 0.45rem 0.75rem;
    border-radius: 12px;
    background: #2f6df6;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
  }
  .niko-mobile-dock__tel .btn__icon {
    display: inline-flex;
    color: #ffffff;
  }
  .niko-mobile-dock__row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 0;
    padding: 0.65rem 0.5rem 0.35rem;
  }
  .niko-mobile-dock__btn {
    flex: 0 0 45%;
    max-width: 45%;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
    padding: 0.4rem 0.65rem;
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
  }
  .niko-mobile-dock__btn--wa {
    background: #20c863;
    color: #ffffff;
  }
  .niko-mobile-dock__btn--wa .btn__icon {
    color: #ffffff;
  }
  .niko-mobile-dock__btn--call {
    background: #2f6df6;
    color: #ffffff;
  }
  .niko-mobile-dock__btn .btn__icon {
    width: 1.1rem;
    height: 1.1rem;
    flex-shrink: 0;
  }
  .niko-mobile-dock--no-whatsapp .niko-mobile-dock__row {
    padding-inline: 0.35rem;
  }
  .niko-mobile-dock--no-whatsapp .niko-mobile-dock__btn--call {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .niko-mobile-dock--no-whatsapp .niko-mobile-dock__btn--wa {
    display: none;
  }
}
.niko-wa-fab {
  display: none;
}

@media (min-width: 1025px) {
  .niko-wa-fab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 160;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #20c863;
    color: #ffffff;
  }
  .niko-wa-fab:visited {
    color: #ffffff;
  }
  .niko-wa-fab {
    box-shadow: 0 10px 28px rgba(32, 200, 99, 0.45), 0 2px 8px rgba(7, 20, 43, 0.12);
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }
  .niko-wa-fab:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(32, 200, 99, 0.5), 0 4px 12px rgba(7, 20, 43, 0.15);
  }
  .niko-wa-fab:focus-visible {
    outline: 3px solid #2f6df6;
    outline-offset: 3px;
  }
  .niko-wa-fab__icon {
    display: flex;
    width: 28px;
    height: 28px;
  }
  .niko-wa-fab__icon .btn__icon-svg {
    width: 100%;
    height: 100%;
  }
}
@media print {
  .niko-mobile-dock,
  .niko-wa-fab {
    display: none !important;
  }
}
.niko-hero {
  position: relative;
}

.niko-hero__cover {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 78vh !important;
  overflow: hidden;
}

.niko-hero__background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.niko-hero__cover::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(105deg, rgba(7, 20, 43, 0.88) 0%, rgba(7, 20, 43, 0.45) 55%, rgba(7, 20, 43, 0.35) 100%);
}

.niko-hero__inner {
  position: relative;
  z-index: 2;
  flex: 1 0 auto;
  width: min(100% - 2rem, 1120px);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  padding-block: clamp(2.5rem, 6vw, 4rem);
  text-align: left;
}

.niko-hero__title {
  margin: 0 0 1rem;
  max-width: 18ch;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.1;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.niko-hero__title-accent {
  color: #2f6df6;
}

.niko-hero__lead {
  margin: 0 0 1.75rem;
  max-width: 36rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  white-space: pre-wrap;
}

.niko-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0;
}

a.niko-hero__btn,
span.niko-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.65rem 1.35rem;
  border: none;
  text-decoration: none;
  transition: opacity 0.2s ease;
  cursor: default;
}

a.niko-hero__btn {
  cursor: pointer;
}

a.niko-hero__btn:hover,
a.niko-hero__btn:focus-visible {
  opacity: 0.92;
}

.niko-hero__btn--primary {
  background-color: #2f6df6 !important;
  color: #ffffff !important;
}

.niko-hero__btn--secondary {
  background-color: #4b5568 !important;
  color: #ffffff !important;
}

.niko-hero__benefits-bar {
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  width: 100%;
  margin-top: auto;
  min-height: 90px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background-color: rgb(37, 99, 235, var(--tw-bg-opacity, 1));
  box-sizing: border-box;
}

.niko-hero__benefits-inner {
  width: min(100%, 1120px);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.niko-hero__features {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0.75rem 0;
  box-sizing: border-box;
}

.niko-hero__feature {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  margin: 0 !important;
  padding-left: 1.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.35;
}

.niko-hero--editor .niko-hero__cover {
  min-height: 420px !important;
}

@media (max-width: 1024px) {
  .niko-hero__cover {
    min-height: min(58vh, 520px) !important;
  }
  .niko-hero__inner {
    padding-top: clamp(3.5rem, 10vh, 4.75rem);
    padding-bottom: clamp(1.25rem, 3vw, 2rem);
  }
}
@media (max-width: 782px) {
  .niko-hero__title {
    max-width: none;
  }
  .niko-hero__benefits-bar {
    min-height: auto;
  }
  .niko-hero__features {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding-block: 1rem;
  }
  .niko-hero__feature {
    flex: none;
    width: fit-content;
    max-width: 100%;
  }
}
#services {
  background: #f4f6fb;
}

.niko-services-carousel {
  padding-block: 3rem 3.5rem;
  background: #f4f6fb;
}

.niko-services-carousel__container {
  width: min(100% - 2rem, 1120px);
  margin-inline: auto;
}

.niko-services-carousel__header {
  text-align: center;
  max-width: 42rem;
  margin-inline: auto;
  margin-bottom: 2rem;
}

.niko-services-carousel__heading {
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #07142b;
  letter-spacing: -0.02em;
}

.niko-services-carousel__intro {
  margin: 0;
  font-size: 1.05rem;
  color: #667085;
  line-height: 1.55;
}

.niko-services-carousel__empty {
  margin: 0;
  padding: 2rem;
  text-align: center;
  color: #667085;
}

.niko-services-carousel__controls {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
}
@media (max-width: 520px) {
  .niko-services-carousel__controls {
    gap: 0.25rem;
  }
}

.niko-services-carousel__btn {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(7, 20, 43, 0.12);
  border-radius: 16px;
  background: #ffffff;
  color: #07142b;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(7, 20, 43, 0.06);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
}
.niko-services-carousel__btn:hover:not(:disabled) {
  background: #2f6df6;
  color: #ffffff;
  border-color: #2f6df6;
}
.niko-services-carousel__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.niko-services-carousel__btn:focus-visible {
  outline: 2px solid #2f6df6;
  outline-offset: 2px;
}
@media (max-width: 520px) {
  .niko-services-carousel__btn {
    width: 2.35rem;
    height: 2.35rem;
  }
}

.niko-services-carousel__btn-icon {
  display: flex;
  line-height: 0;
}

.niko-services-carousel__viewport {
  flex: 1 1 auto;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.niko-services-carousel__viewport::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.niko-services-carousel__track {
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
  margin: 0;
  padding: 0.35rem 0 0.75rem;
  list-style: none;
}

.niko-services-carousel__slide {
  box-sizing: border-box;
  flex: 0 0 auto;
  width: min(22rem, 100vw - 3rem);
  max-width: 100%;
}

@supports (width: 1cqw) {
  .niko-services-carousel__viewport {
    container-type: inline-size;
    container-name: niko-carousel-vp;
  }
  .niko-services-carousel__slide {
    width: min(22rem, 100cqw);
  }
  @container niko-carousel-vp (min-width: 640px) {
    .niko-services-carousel__slide {
      width: min(22rem, (100cqw - 1.25rem) / 2);
    }
  }
  @container niko-carousel-vp (min-width: 960px) {
    .niko-services-carousel__slide {
      width: min(22rem, (100cqw - 2.5rem) / 3);
    }
  }
}
.niko-services-carousel__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(7, 20, 43, 0.08), 0 4px 14px rgba(7, 20, 43, 0.06);
  border: 1px solid rgba(7, 20, 43, 0.06);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.niko-services-carousel__card:hover {
  box-shadow: 0 4px 12px rgba(7, 20, 43, 0.1), 0 12px 28px rgba(47, 109, 246, 0.08);
}

.niko-services-carousel__thumb {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: rgba(7, 20, 43, 0.04);
}
.niko-services-carousel__thumb img,
.niko-services-carousel__thumb .niko-services-carousel__thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.niko-services-carousel__thumb:hover img, .niko-services-carousel__thumb:hover .niko-services-carousel__thumb-img {
  transform: scale(1.04);
}

.niko-services-carousel__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem 1.35rem 1.35rem;
  gap: 0.65rem;
}

.niko-services-carousel__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
  color: #07142b;
}

.niko-services-carousel__excerpt {
  margin: 0;
  font-size: 0.92rem;
  color: #667085;
  line-height: 1.45;
  flex: 1;
}

.niko-services-carousel__features {
  margin-top: 0.15rem;
}

.niko-services-carousel__cta {
  margin-top: auto;
  align-self: flex-start;
  width: fit-content;
  max-width: 100%;
}

.niko-services-carousel--editor .niko-services-carousel {
  margin: 0;
}

#about {
  background: #ffffff;
}

.niko-about {
  padding-block: 3.25rem 3.75rem;
  background: #ffffff;
}

.niko-about__container {
  width: min(100% - 2rem, 1120px);
  margin-inline: auto;
}

.niko-about__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(1.5rem, 3.5vw, 2.5rem);
}

.niko-about__media {
  flex: 1 1 260px;
  min-width: 0;
  max-width: min(100%, 480px);
}

.niko-about__content {
  flex: 1 1 280px;
  min-width: 0;
  max-width: min(100%, 34rem);
}

.niko-about__grid--text-only {
  justify-content: center;
  text-align: center;
}
.niko-about__grid--text-only .niko-about__content {
  flex: 1 1 100%;
  max-width: 40rem;
  margin-inline: auto;
}
.niko-about__grid--text-only .niko-about__body {
  max-width: none;
  margin-inline: auto;
}

.niko-about__figure {
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  width: 100%;
  aspect-ratio: 4/3;
  max-height: 340px;
}

.niko-about__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.niko-about__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 10rem;
  max-height: 240px;
  padding: 1.25rem;
  text-align: center;
  font-size: 0.9rem;
  color: #667085;
  background: #f4f6fb;
  border-radius: 16px;
  border: 1px dashed rgba(102, 112, 133, 0.35);
}

.niko-about__subtitle {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2f6df6;
}

.niko-about__title {
  margin: 0 0 1rem;
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #07142b;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.niko-about__body {
  max-width: 36rem;
}
.niko-about__body p {
  margin: 0 0 0.85em;
  font-size: 1.05rem;
  color: #667085;
  line-height: 1.65;
}
.niko-about__body p:last-child {
  margin-bottom: 0;
}

.niko-about__grid--text-only .niko-about__body {
  max-width: 40rem;
}

.niko-about.niko-about--editor {
  padding-block: 1.25rem;
}

.niko-about.niko-about--editor .niko-about__figure {
  max-height: 220px;
  aspect-ratio: 16/10;
}

.niko-about.niko-about--editor .niko-about__media {
  max-width: min(100%, 360px);
}

#testimonials {
  --tw-bg-opacity: 1;
  background: rgb(17, 24, 39, var(--tw-bg-opacity, 1));
}

.niko-reviews-carousel {
  --tw-bg-opacity: 1;
  padding-block: 3.25rem;
  overflow: visible;
  background: rgb(17, 24, 39, var(--tw-bg-opacity, 1));
  color: #f9fafb;
}

.niko-reviews-carousel__container {
  width: min(100% - 2rem, 1120px);
  margin-inline: auto;
}

.niko-reviews-carousel__header {
  text-align: center;
  max-width: 42rem;
  margin-inline: auto;
  margin-bottom: 2rem;
}

.niko-reviews-carousel__subtitle {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2f6df6;
}

.niko-reviews-carousel__title {
  margin: 0;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.niko-reviews-carousel__empty {
  margin: 0;
  padding: 2rem;
  text-align: center;
  color: rgba(249, 250, 251, 0.7);
  line-height: 1.55;
}

.niko-reviews-carousel__controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow: visible;
}
@media (max-width: 520px) {
  .niko-reviews-carousel__controls {
    gap: 0.25rem;
  }
}

.niko-reviews-carousel__btn {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: #f9fafb;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
}
.niko-reviews-carousel__btn:hover:not(:disabled) {
  background: #2f6df6;
  color: #ffffff;
  border-color: #2f6df6;
}
.niko-reviews-carousel__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.niko-reviews-carousel__btn:focus-visible {
  outline: 2px solid #2f6df6;
  outline-offset: 2px;
}
@media (max-width: 520px) {
  .niko-reviews-carousel__btn {
    width: 2.35rem;
    height: 2.35rem;
  }
}

.niko-reviews-carousel__btn-icon {
  display: flex;
  line-height: 0;
}

.niko-reviews-carousel__viewport {
  flex: 1 1 auto;
  min-width: 0;
  padding-top: 0.35rem;
  padding-bottom: 1.25rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.niko-reviews-carousel__viewport::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.niko-reviews-carousel__track-scroller {
  display: block;
  width: max-content;
  max-width: none;
  padding-bottom: 3.5rem;
  box-sizing: content-box;
}

.niko-reviews-carousel__track {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.niko-reviews-carousel__slide {
  box-sizing: border-box;
  flex: 0 0 auto;
  align-self: stretch;
  width: min(22rem, 100vw - 3rem);
  max-width: 100%;
  min-width: 0;
}

@supports (width: 1cqw) {
  .niko-reviews-carousel__viewport {
    container-type: inline-size;
    container-name: niko-reviews-carousel-vp;
  }
  .niko-reviews-carousel__slide {
    width: min(22rem, 100cqw);
  }
  @container niko-reviews-carousel-vp (min-width: 640px) {
    .niko-reviews-carousel__slide {
      width: min(22rem, (100cqw - 1.25rem) / 2);
    }
  }
  @container niko-reviews-carousel-vp (min-width: 960px) {
    .niko-reviews-carousel__slide {
      width: min(22rem, (100cqw - 2.5rem) / 3);
    }
  }
}
.niko-reviews-carousel__card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  min-height: 12rem;
  min-width: 0;
  padding: 1.35rem 1.4rem 2.25rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.niko-reviews-carousel__card:hover {
  border-color: rgba(47, 109, 246, 0.35);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.niko-reviews-carousel__stars {
  margin: 0 0 1rem;
  align-self: flex-start;
  width: 100%;
  text-align: left;
  font-size: 1.45rem;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #fbbf24;
}

.niko-reviews-carousel__star {
  display: inline-block;
}

.niko-reviews-carousel__text {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(249, 250, 251, 0.85);
  flex: 1;
  text-align: left;
  align-self: stretch;
}

.niko-reviews-carousel__author {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  text-align: left;
  align-self: flex-start;
}

.niko-reviews-carousel__time {
  margin: 0.35rem 0 0;
  padding-bottom: 0.25rem;
  font-size: 0.8rem;
  line-height: 1.4;
  color: rgba(249, 250, 251, 0.55);
  text-align: left;
  align-self: flex-start;
}

.niko-reviews-carousel--editor .niko-reviews-carousel {
  margin: 0;
}

#contact {
  background: #ffffff;
}

.niko-contact {
  padding-block: 3.25rem 3.75rem;
  background: #ffffff;
}

.niko-contact__container {
  width: min(100% - 2rem, 1120px);
  margin-inline: auto;
}

.niko-contact__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: clamp(1.75rem, 4vw, 3rem);
}

.niko-contact__main {
  flex: 1 1 280px;
  min-width: 0;
  max-width: min(100%, 32rem);
}

.niko-contact__map-col {
  flex: 1 1 280px;
  min-width: 0;
  max-width: min(100%, 36rem);
  margin-inline: auto;
}

.niko-contact__subtitle {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2f6df6;
}

.niko-contact__title {
  margin: 0 0 1rem;
  font-size: clamp(1.65rem, 3vw, 2.05rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #07142b;
}

.niko-contact__intro {
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #667085;
}
.niko-contact__intro p {
  margin: 0 0 0.75em;
}
.niko-contact__intro p:last-child {
  margin-bottom: 0;
}

.niko-contact__actions {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.niko-contact__action {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.niko-contact__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 16px;
  background: rgba(47, 109, 246, 0.1);
  color: #2f6df6;
}
.niko-contact__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.niko-contact__action-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.niko-contact__action-label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #07142b;
}

.niko-contact__action-sub {
  font-size: 0.9rem;
  color: #667085;
  line-height: 1.4;
}

.niko-contact__action-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: #202737;
  line-height: 1.45;
}
.niko-contact__action-value--link {
  margin-top: 0.15rem;
  color: #2f6df6;
  text-decoration: none;
  width: fit-content;
}
.niko-contact__action-value--link:hover, .niko-contact__action-value--link:focus-visible {
  text-decoration: underline;
}

.niko-contact__directions {
  margin-top: 0.35rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #2f6df6;
  text-decoration: none;
  width: fit-content;
}
.niko-contact__directions:hover, .niko-contact__directions:focus-visible {
  text-decoration: underline;
}

.niko-contact__map {
  position: relative;
  width: 100%;
  min-height: clamp(19rem, 48vw, 24rem);
  border-radius: 16px;
  overflow: hidden;
  background: #f4f6fb;
  border: 1px solid rgba(7, 20, 43, 0.08);
  box-shadow: 0 4px 20px rgba(7, 20, 43, 0.08);
}
.niko-contact__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(19rem, 48vw, 24rem);
  border: 0;
}
.niko-contact__map--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  font-size: 0.95rem;
  color: #667085;
  min-height: clamp(17rem, 44vw, 22rem);
}

@media (min-width: 768px) {
  .niko-contact__map-col {
    margin-inline: 0;
  }
  .niko-contact__map {
    min-height: clamp(24rem, 36vw, 31rem);
  }
  .niko-contact__map iframe {
    min-height: clamp(24rem, 36vw, 31rem);
  }
  .niko-contact__map--placeholder {
    min-height: clamp(22rem, 34vw, 28rem);
  }
}
.niko-contact--editor .niko-contact {
  margin: 0;
}

.site-footer {
  --tw-bg-opacity: 1;
  width: 100%;
  margin-top: auto;
  background: rgb(17, 24, 39, var(--tw-bg-opacity, 1));
  color: #f9fafb;
}

.site-footer__inner {
  width: min(100% - 2rem, 1120px);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  padding-block: 1.5rem 1.65rem;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}
.site-footer__brand:hover, .site-footer__brand:focus-visible {
  color: #ffffff;
  opacity: 0.95;
}
.site-footer__brand:focus-visible {
  outline: 2px solid #2f6df6;
  outline-offset: 4px;
  border-radius: 4px;
}

.site-footer__logo {
  display: block;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.site-footer__logo--custom {
  width: auto;
  height: auto;
  max-height: 32px;
  max-width: min(220px, 50vw);
  object-fit: contain;
}

.site-footer__name {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #ffffff;
}

.site-footer__copy {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.45;
  color: rgba(249, 250, 251, 0.78);
  text-align: right;
  max-width: 26rem;
}

.site-footer__copy-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(249, 250, 251, 0.45);
  text-underline-offset: 0.15em;
}
.site-footer__copy-link:hover, .site-footer__copy-link:focus-visible {
  color: #ffffff;
  text-decoration-color: rgba(255, 255, 255, 0.65);
}
.site-footer__copy-link:focus-visible {
  outline: 2px solid #2f6df6;
  outline-offset: 3px;
  border-radius: 4px;
}

@media (max-width: 640px) {
  .site-footer__inner {
    flex-direction: column;
    justify-content: center;
    padding-block: 1.65rem 1.75rem;
    text-align: center;
  }
  .site-footer__brand {
    justify-content: center;
  }
  .site-footer__copy {
    text-align: center;
    max-width: 36rem;
  }
}
.niko-servicio__features {
  --tw-text-opacity: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.niko-servicio__feature {
  position: relative;
  margin: 0;
  padding-left: 1.85rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #38445a;
  line-height: 1.35;
}

.niko-servicio__feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.25rem;
  height: 1.25rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: var(--tw-text-opacity, 1);
}

.niko-hero__feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #ffffff;
  mask-image: url("../img/iconoCheck.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../img/iconoCheck.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.niko-servicio__feature::before {
  background-image: url("../img/iconoCheck-servicio.svg");
}

/*# sourceMappingURL=main.css.map */
