:root {
  --nova-ink: #071014;
  --nova-paper: #f7f8f3;
  --nova-cloud: #eef3f0;
  --nova-muted: #64726f;
  --nova-line: rgba(7, 16, 20, .12);
  --nova-cyan: #32d6c8;
  --nova-lime: #c8ff5f;
  --nova-coral: #ff6d4a;
  --nova-shell: min(1240px, calc(100% - 48px));
}

body {
  color: var(--nova-ink);
  background: var(--nova-paper);
}

.nova-container {
  width: var(--nova-shell);
  margin-inline: auto;
}

.nova-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 1000;
  pointer-events: none;
}

.nova-nav {
  pointer-events: auto;
  padding: 0;
}

.nova-header .responsive-menu {
  display: none !important;
}

.nova-nav-shell {
  width: var(--nova-shell);
  min-height: 76px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 26px;
  background: rgba(8, 14, 18, .38);
  backdrop-filter: blur(22px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .18);
}

.nova-brand {
  display: inline-flex;
  align-items: center;
  min-width: 150px;
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0;
}

.nova-brand img {
  display: block;
  max-height: 54px;
  max-width: 190px;
  object-fit: contain;
}

.nova-menu {
  align-items: center;
  gap: 4px;
}

.nova-menu .nav-link {
  position: relative;
  padding: 12px 14px !important;
  border-radius: 999px;
  color: rgba(255, 255, 255, .88);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.nova-menu .nav-link:hover,
.nova-menu .nav-link:focus {
  color: #fff;
  background: rgba(255, 255, 255, .12);
}

.nova-menu .dropdown-menu {
  overflow: hidden;
  padding: 8px;
  min-width: 300px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  background: rgba(8, 14, 18, .88);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .22);
}

.nova-menu .dropdown-menu .nav-link {
  color: rgba(255, 255, 255, .82);
  min-width: max-content;
  white-space: nowrap;
}

.nova-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nova-language .vl-lang-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  text-decoration: none;
}

.nova-call {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  color: var(--nova-ink);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.nova-toggler {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 14px;
  box-shadow: none;
}

.nova-toggler span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: #fff;
}

.nova-hero {
  position: relative;
  min-height: 100vh;
  background: var(--nova-ink);
}

.nova-hero .swiper,
.nova-hero .swiper-wrapper,
.nova-hero .swiper-slide,
.nova-hero-slide {
  min-height: 100vh;
}

.nova-hero-slide {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  isolation: isolate;
}

.nova-hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.nova-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 16, 20, .88) 0%, rgba(7, 16, 20, .52) 45%, rgba(7, 16, 20, .18) 100%),
    linear-gradient(180deg, rgba(7, 16, 20, .38) 0%, rgba(7, 16, 20, .12) 42%, rgba(7, 16, 20, .72) 100%);
}

.nova-hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.nova-hero-container {
  display: flex;
  align-items: center;
  width: var(--nova-shell);
  padding-top: 110px;
  padding-bottom: 96px;
}

.nova-hero-content {
  max-width: 860px;
  color: #fff;
}

.nova-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--nova-cyan);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.nova-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--nova-coral);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
}

.nova-eyebrow::before,
.nova-section-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.nova-hero h1 {
  max-width: 980px;
  margin: 0;
  color: #fff;
  font-size: clamp(52px, 8vw, 132px);
  line-height: .88;
  font-weight: 900;
  letter-spacing: 0;
}

.nova-hero p {
  max-width: 700px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.65;
}

.nova-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  margin-top: 34px;
  padding: 15px 22px;
  border: 0;
  border-radius: 999px;
  background: var(--nova-lime);
  color: var(--nova-ink);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(200, 255, 95, .24);
}

.nova-btn:hover {
  color: var(--nova-ink);
  transform: translateY(-2px);
}

.nova-btn-dark {
  background: var(--nova-ink);
  color: #fff;
  box-shadow: 0 18px 42px rgba(7, 16, 20, .18);
}

.nova-btn-dark:hover {
  color: #fff;
}

.nova-hero-rail {
  position: absolute;
  top: 50%;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 18px;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.nova-hero-rail em {
  width: 84px;
  height: 1px;
  background: rgba(255, 255, 255, .36);
}

.nova-hero-bottom {
  position: absolute;
  left: 50%;
  bottom: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: var(--nova-shell);
  transform: translateX(-50%);
}

.nova-hero-progress {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, .24);
}

.nova-hero-progress span {
  display: block;
  width: 30%;
  height: 100%;
  background: var(--nova-cyan);
}

.nova-hero-pagination {
  position: static;
  display: inline-flex;
  width: auto !important;
  gap: 8px;
}

.nova-hero-pagination .swiper-pagination-bullet,
.nova-services-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  margin: 0 !important;
  border-radius: 999px;
  opacity: 1;
  background: rgba(255, 255, 255, .42);
}

.nova-hero-pagination .swiper-pagination-bullet-active,
.nova-services-pagination .swiper-pagination-bullet-active {
  width: 34px;
  background: var(--nova-lime);
}

.nova-about,
.nova-content-strip,
.nova-featured {
  padding: 82px 0;
}

.nova-about {
  background:
    radial-gradient(circle at 18% 20%, rgba(50, 214, 200, .14), transparent 32%),
    var(--nova-paper);
}

.nova-about-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.nova-about-media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--nova-cloud);
}

.nova-about-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.nova-about-glass {
  position: absolute;
  right: 26px;
  bottom: 26px;
  width: min(280px, calc(100% - 52px));
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 20px;
  background: rgba(255, 255, 255, .22);
  backdrop-filter: blur(18px);
  color: #fff;
}

.nova-about-glass i {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 46px;
  border-radius: 14px;
  background: var(--nova-lime);
  color: #071014;
  font-size: 22px;
}

.nova-about-glass strong {
  display: block;
  font-size: 38px;
  line-height: 1;
}

.nova-about-glass span {
  font-size: 18px;
  line-height: 1.25;
  font-weight: 900;
}

.nova-about-copy h2,
.nova-section-head h2 {
  margin: 0;
  color: var(--nova-ink);
  font-size: 24px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: 0;
}

.nova-about-copy p {
  margin: 18px 0 0;
  color: var(--nova-muted);
  font-size: 15px;
  line-height: 1.7;
}

.nova-about-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 4px solid var(--nova-coral);
  border-radius: 18px;
  background: #fff;
  color: var(--nova-ink);
  box-shadow: 0 18px 48px rgba(7, 16, 20, .07);
}

.nova-content-strip {
  overflow: hidden;
  background: #fff;
}

.nova-content-dark,
.nova-featured-dark {
  background:
    linear-gradient(135deg, rgba(50, 214, 200, .14), transparent 34%),
    linear-gradient(180deg, #0b1719, #101f1d);
  color: #fff;
}

.nova-section-head {
  display: grid;
  grid-template-columns: minmax(160px, .28fr) minmax(0, 1fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
}

.nova-content-dark .nova-section-head h2,
.nova-featured-dark .nova-section-head h2,
.nova-content-dark .nova-content-card h3 a {
  color: #fff;
}

.nova-content-dark .nova-content-card p,
.nova-content-dark .nova-section-head,
.nova-featured-dark .nova-section-head {
  color: rgba(255, 255, 255, .68);
}

.nova-content-dark .nova-section-kicker {
  color: var(--nova-lime);
}

.nova-content-dark .nova-card-action {
  background: var(--nova-lime);
  color: var(--nova-ink);
}

.nova-content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.nova-slider-wrap .swiper {
  overflow: visible;
}

.nova-content-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--nova-line);
  border-radius: 18px;
  background: var(--nova-paper);
  box-shadow: 0 12px 34px rgba(7, 16, 20, .06);
}

.nova-content-dark .nova-content-card {
  border-color: rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
}

.nova-card-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--nova-cloud);
}

.nova-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.nova-content-card:hover .nova-card-media img {
  transform: scale(1.06);
}

.nova-card-body {
  padding: 18px 62px 22px 18px;
}

.nova-card-body span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--nova-coral);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.nova-card-body h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: 0;
}

.nova-card-body h3 a {
  color: var(--nova-ink);
  text-decoration: none;
}

.nova-card-body p {
  margin: 10px 0 0;
  color: var(--nova-muted);
  font-size: 14px;
  line-height: 1.55;
}

.nova-card-action {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--nova-ink);
  color: #fff;
  text-decoration: none;
}

.nova-content-card:hover .nova-card-action {
  background: var(--nova-coral);
  color: #fff;
}

.nova-services-pagination {
  position: static;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.nova-services-pagination .swiper-pagination-bullet {
  background: rgba(7, 16, 20, .22);
}

.nova-services-pagination .swiper-pagination-bullet-active {
  background: var(--nova-coral);
}

.nova-featured {
  background:
    radial-gradient(circle at 78% 10%, rgba(50, 214, 200, .12), transparent 26%),
    linear-gradient(180deg, #f7fbf8, #ffffff);
  color: var(--nova-ink);
}

.nova-feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.nova-feature-list article {
  position: relative;
  min-height: 210px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(7, 16, 20, .10);
  border-radius: 20px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 12px 34px rgba(7, 16, 20, .07);
}

.nova-featured-dark .nova-feature-list article {
  border-color: rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .07);
}

.nova-feature-list article > span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--nova-muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
}

.nova-feature-list i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--nova-cyan), var(--nova-lime));
  color: var(--nova-ink);
  font-size: 20px;
}

.nova-feature-list h3 {
  margin: 0;
  color: var(--nova-ink);
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: 0;
}

.nova-feature-list p {
  margin: 10px 0 0;
  color: var(--nova-muted);
  font-size: 14px;
  line-height: 1.55;
}

.nova-featured-dark .nova-feature-list h3 {
  color: #fff;
}

.nova-featured-dark .nova-feature-list p,
.nova-featured-dark .nova-feature-list article > span {
  color: rgba(255, 255, 255, .70);
}

.luxe-footer {
  background: #fff;
}

main > .page-header:first-child,
main > .topic-page-header:first-child {
  padding-top: 165px !important;
}

@media (min-width: 992px) {
  .nova-menu .dropdown-menu {
    width: max-content;
    max-width: min(460px, calc(100vw - 40px));
  }

  .nova-menu .dropdown:hover > .dropdown-menu,
  .nova-menu .dropdown:focus-within > .dropdown-menu {
    display: block;
  }
}

@media (max-width: 1199.98px) {
  .nova-call {
    display: none;
  }

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

@media (max-width: 991.98px) {
  :root {
    --nova-shell: min(100% - 24px, 720px);
  }

  .nova-header {
    top: 12px;
  }

  .nova-nav-shell {
    width: var(--nova-shell);
    min-height: 66px;
    border-radius: 20px;
  }

  .nova-toggler {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .nova-collapse {
    margin-top: 12px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(8, 14, 18, .92);
  }

  .nova-menu {
    align-items: stretch;
  }

  .nova-actions {
    justify-content: space-between;
    margin-top: 10px;
  }

  .nova-language {
    display: none;
  }

  .nova-menu .dropdown-menu {
    display: none;
    position: static;
    width: 100%;
    min-width: 0;
    max-width: none;
    margin: 4px 0 8px;
    padding: 6px;
    border-radius: 14px;
    box-shadow: none;
  }

  .nova-menu .dropdown.is-open > .dropdown-menu {
    display: block;
  }

  .nova-menu .dropdown > .nav-link::after {
    content: "\F282";
    float: right;
    font-family: "bootstrap-icons";
    transition: transform .2s ease;
  }

  .nova-menu .dropdown.is-open > .nav-link::after {
    transform: rotate(180deg);
  }

  .nova-about-grid,
  .nova-section-head {
    grid-template-columns: 1fr;
  }

  .nova-feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  :root {
    --nova-shell: min(100% - 28px, 540px);
  }

  .nova-container,
  .nova-hero-container,
  .nova-hero-bottom {
    width: var(--nova-shell);
  }

  .nova-hero-container {
    padding-top: 112px;
    padding-bottom: 82px;
  }

  .nova-hero h1 {
    font-size: clamp(44px, 15vw, 72px);
  }

  .nova-hero p {
    font-size: 16px;
  }

  .nova-hero-rail,
  .nova-hero-progress {
    display: none;
  }

  .nova-hero-bottom {
    justify-content: center;
  }

  .nova-about,
  .nova-content-strip,
  .nova-featured {
    padding: 56px 0;
  }

  .nova-about-media,
  .nova-about-media img {
    min-height: 300px;
  }

  .nova-content-grid {
    grid-template-columns: 1fr;
  }

  .nova-feature-list {
    grid-template-columns: 1fr;
  }

  .nova-card-body {
    padding: 18px 58px 22px 18px;
  }

  main > .page-header:first-child,
  main > .topic-page-header:first-child {
    padding-top: 128px !important;
  }
}

.nova-featured:not(.nova-featured-dark) {
  color: var(--nova-ink) !important;
}

.nova-featured:not(.nova-featured-dark) .nova-section-head,
.nova-featured:not(.nova-featured-dark) .nova-section-head h2,
.nova-featured:not(.nova-featured-dark) .nova-feature-list h3 {
  color: var(--nova-ink) !important;
}

.nova-featured:not(.nova-featured-dark) .nova-feature-list p,
.nova-featured:not(.nova-featured-dark) .nova-feature-list article > span {
  color: var(--nova-muted) !important;
}

.nova-featured.nova-featured-dark {
  background:
    radial-gradient(circle at 18% 0%, rgba(50, 214, 200, .18), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(200, 255, 95, .10), transparent 26%),
    linear-gradient(180deg, #071014 0%, #0d1b1d 100%) !important;
  color: #fff !important;
}

.nova-featured.nova-featured-dark .nova-section-head,
.nova-featured.nova-featured-dark .nova-section-head h2,
.nova-featured.nova-featured-dark .nova-feature-list h3 {
  color: #fff !important;
}

.nova-featured.nova-featured-dark .nova-feature-list p,
.nova-featured.nova-featured-dark .nova-feature-list article > span {
  color: rgba(255, 255, 255, .72) !important;
}

.nova-featured.nova-featured-dark .nova-section-kicker {
  color: var(--nova-lime) !important;
}

.page-services .service-btn,
.our-services .service-btn,
.luxe-services .service-btn {
  display: flex;
  justify-content: center;
}

.page-services .readmore-btn,
.our-services .readmore-btn,
.luxe-services .readmore-btn,
.service-item .readmore-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 20px !important;
  border: 1px solid rgba(50, 214, 200, .28);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--nova-cyan), #168b82);
  color: #071014 !important;
  box-shadow: 0 14px 30px rgba(50, 214, 200, .22);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: none;
  text-decoration: none;
  white-space: nowrap;
}

.page-services .readmore-btn:hover,
.our-services .readmore-btn:hover,
.luxe-services .readmore-btn:hover,
.service-item .readmore-btn:hover {
  background: linear-gradient(135deg, var(--nova-lime), #a7d637);
  color: #071014 !important;
}

.page-services .readmore-btn::before,
.our-services .readmore-btn::before,
.luxe-services .readmore-btn::before,
.service-item .readmore-btn::before {
  display: none !important;
  content: none !important;
}

@media (max-width: 991.98px) {
  .luxe-mobile-actions {
    bottom: 0;
    display: block;
  }

  .luxe-mobile-actions-inner {
    width: 100%;
    padding: 0;
    gap: 0;
  }

  .luxe-mobile-actions .luxe-mobile-call,
  .luxe-mobile-actions .luxe-mobile-whatsapp {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    height: 58px;
    min-height: 58px;
    border-radius: 0;
    gap: 8px;
    color: #071014 !important;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.1;
    white-space: nowrap;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, .18);
  }

  .luxe-mobile-actions .luxe-mobile-call {
    border-top-left-radius: 14px;
    background: #2f80a8;
    color: #fff !important;
  }

  .luxe-mobile-actions .luxe-mobile-whatsapp {
    border-top-right-radius: 14px;
    background: #25d366;
  }

  .luxe-mobile-actions .luxe-mobile-call i,
  .luxe-mobile-actions .luxe-mobile-whatsapp i {
    font-size: 18px;
  }

  .luxe-mobile-actions .luxe-mobile-call span,
  .luxe-mobile-actions .luxe-mobile-whatsapp span {
    display: inline-block;
  }

  body {
    padding-bottom: 58px;
  }
}

@media (max-width: 360px) {
  .luxe-mobile-actions .luxe-mobile-call,
  .luxe-mobile-actions .luxe-mobile-whatsapp {
    gap: 6px;
    font-size: 13px;
  }
}
