﻿:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Inter", sans-serif;

  --background-color: #15171b;
  --default-color: #d9dde2;
  --heading-color: #e0e4e8;
  --accent-color: #4da3ff;
  --surface-color: #1f2329;
  --contrast-color: #ffffff;

  --nav-color: #d9dde2;
  --nav-hover-color: #4da3ff;
  --nav-mobile-background-color: #1b1f25;
  --nav-dropdown-background-color: #1f2329;
  --nav-dropdown-color: #d9dde2;
  --nav-dropdown-hover-color: #4da3ff;

  scroll-behavior: smooth;
}

.light-background {
  --background-color: #1a1d22;
  --surface-color: #242932;
}

.dark-background {
  --background-color: #101215;
  --default-color: #d9dde2;
  --heading-color: #e0e4e8;
  --surface-color: #1c2128;
  --contrast-color: #ffffff;
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: none;
}

p {
  max-width: 780px;
}

.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* =========================
   HEADER
========================= */

.header {
  --background-color: rgba(0, 0, 0, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 8px 0;
  transition: all 0.4s ease;
  z-index: 997;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header .container-fluid.container-xl {
  min-height: 42px;
}

.header .logo {
  line-height: 1;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.header .logo img {
  max-height: 30px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
  margin-right: 0;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .cta-btn,
.header .cta-btn:focus {
  color: var(--contrast-color);
  font-size: 13px;
  padding: 7px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  text-transform: none;
  border: 2px solid var(--contrast-color);
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.scrolled .header {
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.18);
  --background-color: rgba(16, 18, 21, 0.94);
  backdrop-filter: blur(10px);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .logo img {
    max-height: 28px;
    max-width: 150px;
  }

  .header .cta-btn {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 9px 11px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 13px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    text-transform: none !important;
    letter-spacing: 0.01em;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: color-mix(in srgb, var(--nav-color) 90%, white 15%);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 52px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    text-transform: none !important;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 12px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(10, 12, 15, 0.78);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/* =========================
   HERO
========================= */

.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 86px 0 72px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero>img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: rgba(10, 12, 15, 0.64);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container,
.hero .row,
.hero .col-xl-10,
.hero .col-lg-11,
.hero .col-12 {
  position: relative;
  z-index: 3;
}

.hero .hero-content {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 6px;
}

.hero-logo {
  position: relative;
  z-index: 3;
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 auto 30px auto;
}

.hero h2 {
  margin: 0 auto;
  font-size: 32px;
  font-weight: 700;
  text-transform: none;
  max-width: 920px;
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin: 18px auto 0 auto;
  font-size: 16px;
  max-width: 760px;
  line-height: 1.7;
  opacity: 0.92;
}

.hero .hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero .btn-get-started,
.hero .btn-watch-video {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  min-height: 48px;
  margin: 0;
  padding: 11px 28px;
  border: 1.5px solid var(--accent-color);
  border-radius: 40px;
  background: rgba(31, 114, 214, 0.08);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-align: center;
  transition: all 0.25s ease;
}

.hero .btn-get-started:hover,
.hero .btn-watch-video:hover {
  background: rgba(31, 114, 214, 0.22);
  color: #ffffff;
  border-color: color-mix(in srgb, var(--accent-color), white 18%);
  transform: translateY(-1px);
}

/* =========================
   SECTIONS
========================= */

.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 12px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(217, 221, 226, 0.72);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0 auto;
  font-size: 28px;
  font-weight: 800;
  text-transform: none;
  font-family: var(--heading-font);
  letter-spacing: -0.01em;
}

section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 70px 0;
  scroll-margin-top: 82px;
  overflow: clip;
}

.about h3 {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 20px;
  text-transform: none;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.about .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 12px 30px;
  position: relative;
  font-size: 14px;
  line-height: 1.7;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--accent-color);
}

.about .content p {
  line-height: 1.75;
  max-width: 640px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

.about-logo-top {
  display: inline-block;
  max-width: 240px;
  width: 100%;
  height: auto;
}

.stats .stats-item {
  background-color: var(--surface-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  padding: 30px;
}

.stats .stats-item i {
  color: var(--accent-color);
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 30px;
  display: block;
  font-weight: 600;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 13px;
  max-width: none;
}

.services .service-item {
  display: flex;
  flex-direction: column;
}

.services .img {
  border-radius: 10px;
  overflow: hidden;
}

.services .img img {
  transition: 0.6s;
}

.services .details {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
  padding: 46px 30px;
  margin: -90px 30px 0 30px;
  transition: all ease-in-out 0.28s;
  position: relative;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
}

.services .details .icon {
  margin: 0;
  width: 72px;
  height: 72px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 6px solid var(--contrast-color);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
}

.services .details h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 20px;
  transition: ease-in-out 0.3s;
  text-transform: none;
}

.services .details p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  max-width: none;
}

.services .service-item:hover .details {
  transform: translateY(-6px);
}

.services .service-item:hover .details h3 {
  color: var(--accent-color);
}

.services .service-item:hover .details .icon {
  background: var(--surface-color);
  border: 2px solid var(--accent-color);
}

.services .service-item:hover .details .icon i {
  color: var(--accent-color);
}

.services .service-item:hover .img img {
  transform: scale(1.2);
}

/* =========================
   PRODUCTS
========================= */

.products {
  padding: 40px 0 55px 0;
  background-color: #20242b;
}

.products .product-mini-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 106px;
  height: 100%;
  padding: 14px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  overflow: hidden;
  transition: all 0.25s ease;
}

.products .product-mini-card:hover {
  background: rgba(255, 255, 255, 0.10);
  transform: translateY(-3px);
}

.products .product-mini-card:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent-color), white 15%);
  outline-offset: 4px;
}

.products .product-mini-card img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 28px;
  object-fit: contain;
  opacity: 0.95;
  transition: 0.3s;
}

.products .product-mini-card span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
  margin-top: 10px;
}

/* =========================
   FEATURES
========================= */

.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  background-color: var(--surface-color);
  color: var(--heading-color);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 15px 20px;
  transition: 0.3s;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  text-transform: none;
}

.features .nav-link:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.features .nav-link.active {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.features .nav-link.active h4 {
  color: var(--contrast-color);
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 26px;
  text-transform: none;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-bottom: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

.services-2 .service-item {
  background-color: var(--surface-color);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.services-2 .service-item .icon {
  font-size: 36px;
  line-height: 0;
  margin-right: 30px;
  color: var(--accent-color);
}

.services-2 .service-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  text-transform: none;
}

.services-2 .service-item .title a {
  color: var(--heading-color);
}

.services-2 .service-item .description {
  line-height: 24px;
  font-size: 14px;
  margin: 0;
  max-width: none;
}

.services-2 .service-item:hover {
  border-color: var(--accent-color);
}

.services-2 .service-item:hover .title a {
  color: var(--accent-color);
}

.testimonials {
  padding: 80px 0;
  position: relative;
}

.testimonials:before {
  content: "";
  background: rgba(10, 12, 15, 0.55);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.testimonials .testimonials-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.testimonials .container {
  position: relative;
  z-index: 3;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  text-transform: none;
}

.testimonials .testimonial-item h4 {
  font-size: 13px;
  margin: 0 0 15px 0;
  color: rgba(217, 221, 226, 0.72);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  font-size: 14px;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--default-color);
  opacity: 1;
}

/* =========================
   PARTNERS
========================= */

.partners {
  padding: 40px 0 70px 0;
  overflow: hidden;
}

.partners .partners-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
}

.partners .partners-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: partners-scroll 42s linear infinite;
  will-change: transform;
}

@keyframes partners-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-33.3333%, 0, 0);
  }
}

.partners .partners-marquee:hover .partners-track {
  animation-play-state: paused;
}

.partners .partner-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  text-decoration: none;
  transition: transform 0.25s ease;
}

.partners .partner-card:hover {
  transform: translateY(-2px);
}

.partners .partner-card img {
  display: block;
  width: auto;
  height: 40px;
  max-width: 160px;
  object-fit: contain;
  opacity: 0.78;
  filter: grayscale(100%) brightness(1.22) contrast(1.03);
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.partners .partner-card:hover img {
  opacity: 1;
  filter: grayscale(0) brightness(1.06) contrast(1.02);
  transform: scale(1.03);
}

.partners .partner-placeholder {
  pointer-events: none;
}

.partners .partner-placeholder img {
  opacity: 0.42;
  filter: grayscale(100%) brightness(1.15) contrast(1);
}

@keyframes partners-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* =========================
   RESPONSIVO
========================= */

@media (max-width: 991px) {
  .partners .partners-track {
    gap: 42px;
    animation-duration: 26s;
  }

  .partners .partner-card img {
    height: 34px;
    max-width: 135px;
  }
}

@media (max-width: 767px) {
  .partners {
    padding: 30px 0 55px 0;
  }

  .partners .partners-track {
    gap: 30px;
    animation-duration: 22s;
  }

  .partners .partner-card img {
    height: 28px;
    max-width: 110px;
  }
}

/* =========================
   TEAM
========================= */

.team .member {
  position: relative;
}

.team .member .pic {
  overflow: hidden;
  margin-bottom: 50px;
}

.team .member .member-info {
  background-color: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  position: absolute;
  bottom: -50px;
  left: 20px;
  right: 20px;
  padding: 20px 15px;
  overflow: hidden;
  transition: 0.5s;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
  position: relative;
  padding-bottom: 10px;
  text-transform: none;
}

.team .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  bottom: 0;
  left: 0;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member .social {
  position: absolute;
  right: 15px;
  bottom: 15px;
}

.team .member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.team .member .social a:hover {
  color: var(--accent-color);
}

.team .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

/* =========================
   CONTACT
========================= */

.contact .info-item {
  background-color: var(--surface-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  padding: 24px 20px 30px 20px;
  min-height: 175px;
  text-align: center;
}

.contact .info-item i {
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
  margin-bottom: 8px;
}

.contact .info-item h3 {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
  text-transform: none;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  max-width: none;
  line-height: 1.6;
}

.contact .info-item p + p {
  margin-top: 8px;
}

.contact .info-item a {
  color: var(--accent-color);
  word-break: break-word;
}

.contact .info-item a:hover {
  color: color-mix(in srgb, var(--accent-color), white 12%);
}

.contact .php-email-form {
  background-color: var(--surface-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  height: 100%;
  padding: 30px;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form input[type=tel],
.contact .php-email-form select,
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: #181c21;
  border-color: rgba(255, 255, 255, 0.08);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form input[type=tel]:focus,
.contact .php-email-form select:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 78%);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form input[type=tel]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: rgba(217, 221, 226, 0.5);
}

.contact .php-email-form select {
  appearance: auto;
  min-height: 44px;
}

.contact .php-email-form select:invalid {
  color: rgba(217, 221, 226, 0.5);
}

.contact .php-email-form button[type=submit]:focus-visible,
.contact .info-item a:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent-color), white 15%);
  outline-offset: 4px;
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
  font-size: 13px;
  text-transform: none;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.cta-btn-primary,
.cta-btn-outline,
.footer-email-signup-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
}

.cta-btn-primary {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 12px 22px;
}

.cta-btn-outline,
.footer-email-signup-link {
  color: var(--contrast-color);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 10px 18px;
}

.cta-btn-primary:hover,
.cta-btn-outline:hover,
.footer-email-signup-link:hover {
  color: var(--contrast-color);
  transform: translateY(-1px);
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.newsletter-modal-trigger button {
  width: 100%;
}

.email-signup-modal .modal-content {
  background: #181c21;
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: var(--default-color);
  border-radius: 16px;
}

.email-signup-modal .modal-header,
.email-signup-modal .modal-footer {
  border-color: rgba(255, 255, 255, 0.08);
}

.email-signup-modal .modal-title {
  color: var(--heading-color);
  font-weight: 700;
}

.email-signup-modal .modal-subtitle {
  color: rgba(217, 221, 226, 0.68);
  font-size: 13px;
  margin-top: 4px;
}

.email-signup-modal .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}

.email-signup-modal .form-control {
  color: var(--default-color);
  background-color: #11151a;
  border-color: rgba(255, 255, 255, 0.10);
}

.email-signup-modal .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 78%);
}

.email-signup-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.email-signup-product {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: #11151a;
  color: rgba(217, 221, 226, 0.86);
  cursor: pointer;
}

.email-signup-product input {
  width: 16px;
  height: 16px;
  accent-color: var(--accent-color);
}

.email-signup-product:has(input:checked) {
  border-color: color-mix(in srgb, var(--accent-color), white 8%);
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--contrast-color);
}

.email-signup-consent {
  font-size: 13px;
  color: rgba(217, 221, 226, 0.76);
}

.email-signup-feedback {
  margin-top: 14px;
  font-size: 13px;
}

.email-signup-feedback.is-error {
  color: #ff6b6b;
}

.email-signup-feedback.is-success {
  color: #52d273;
}

@media (max-width: 575px) {
  .email-signup-products {
    grid-template-columns: 1fr;
  }
}

/* =========================
   FOOTER
========================= */

.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
}

.footer .footer-about .logo img {
  max-height: 32px;
  width: auto;
  max-width: 160px;
  display: block;
  object-fit: contain;
  margin-right: 0;
}

.footer .footer-about .logo span {
  display: none;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
  max-width: none;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 55%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: all 0.25s ease;
  background: transparent;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  border-color: var(--accent-color);
  background: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(77, 163, 255, 0.35);
}

.footer h4 {
  font-size: 18px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  text-transform: none;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 3px;
  font-size: 13px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: rgba(217, 221, 226, 0.72);
  display: inline-block;
  line-height: 1.3;
  font-size: 14px;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
  font-size: 14px;
  max-width: none;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  background-color: #181c21;
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: #181c21;
  color: var(--default-color);
  font-size: 14px;
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 13px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  text-transform: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer .copyright p {
  margin-bottom: 0;
  max-width: none;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/* =========================
   PRELOADER / SCROLL TOP
========================= */

#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/* =========================
   PAGE TITLE / DETAILS
========================= */

.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background: rgba(10, 12, 15, 0.55);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: none;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: rgba(217, 221, 226, 0.72);
}

.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: rgba(217, 221, 226, 0.72);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
  text-transform: none;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
  text-transform: none;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

.starter-section {}

/* =========================
   COOKIE BANNER
========================= */

#cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #1f2329;
  border: 1px solid rgba(255, 255, 255, 0.10);
  padding: 16px 20px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  z-index: 9999;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

#cookie-banner p {
  margin: 0;
  font-size: 13px;
  max-width: none;
}

#cookie-banner a {
  color: var(--accent-color);
  text-decoration: none;
}

#cookie-banner button {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 10px 18px;
  border-radius: 24px;
  cursor: pointer;
  transition: 0.3s;
  white-space: nowrap;
}

#cookie-banner button:hover {
  background: color-mix(in srgb, var(--accent-color), white 10%);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .hero {
    padding: 84px 0 60px 0;
  }

  .hero-logo {
    max-width: 240px;
    margin: 0 auto 24px auto;
  }

  .hero h2 {
    font-size: 28px;
    max-width: 760px;
  }

  .hero p {
    font-size: 16px;
    max-width: 680px;
  }

  .section-title p {
    font-size: 24px;
  }

  .about h3,
  .features .tab-pane h3,
  .portfolio-details .portfolio-description h2,
  .service-details h3 {
    font-size: 23px;
  }

  .services .details {
    margin: -80px 24px 0 24px;
    padding: 42px 24px;
  }

  .contact .info-item {
    min-height: 165px;
  }
}

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }

  body,
  p,
  li,
  span,
  input,
  textarea,
  button {
    font-size: 13px;
  }

  p {
    max-width: 100%;
  }

  .hero {
    min-height: 88vh;
    padding: 82px 0 50px 0;
  }

  .hero-logo {
    max-width: 220px;
    margin: 0 auto 22px auto;
  }

  .hero h2 {
    font-size: 24px;
    line-height: 1.25;
  }

  .hero p {
    font-size: 15px;
    max-width: 100%;
    line-height: 1.65;
  }

  .section-title p {
    font-size: 22px;
  }

  .features .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }

  .services .details h3,
  .services-2 .service-item .title,
  .testimonials .testimonial-item h3,
  .contact .info-item h3,
  .footer h4,
  .team .member h4 {
    font-size: 17px;
  }

  .services .details {
    margin: -70px 18px 0 18px;
    padding: 40px 22px;
  }

  .about-logo-top {
    max-width: 180px;
  }

  .products .product-mini-card {
    height: 58px;
    padding: 8px 10px;
  }

  .products .product-mini-card img {
    max-height: 24px;
  }

  .partners .partner-card {
    width: 180px;
    height: 82px;
    padding: 8px 12px;
  }

  .partners .partner-card img {
    max-height: 34px;
  }

  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  #cookie-banner button {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .header {
    padding: 7px 0;
  }

  .header .container-fluid.container-xl {
    min-height: 40px;
  }

  .header .logo img {
    max-height: 26px;
    max-width: 140px;
  }

  .features .nav-link {
    padding: 15px;
  }

  .features .nav-link i {
    font-size: 24px;
  }

  .contact .php-email-form {
    padding: 20px;
  }

  .contact .info-item {
    min-height: auto;
    padding: 24px 16px 26px 16px;
  }
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 82px;
  }
}

/* =========================
   UNDERTOW INSTITUTIONAL OVERRIDES
========================= */

:root {
      --background-color: #edf2f7;
      --default-color: #425066;
      --heading-color: #0c1728;
      --accent-color: #1f72d6;
      --surface-color: #f8fafc;
      --contrast-color: #ffffff;
      --nav-color: rgba(255, 255, 255, 0.82);
      --nav-hover-color: #ffffff;
      --nav-mobile-background-color: #0b1422;
      --nav-dropdown-background-color: #f8fafc;
      --nav-dropdown-color: #1b2738;
      --nav-dropdown-hover-color: #1f72d6;
    }

    .dark-background {
      --background-color: #08111f;
      --default-color: #d8e2ef;
      --heading-color: #ffffff;
      --surface-color: #111c2c;
      --contrast-color: #ffffff;
    }

    .light-background {
      --background-color: #e6edf5;
      --default-color: #425066;
      --heading-color: #0c1728;
      --surface-color: #f8fafc;
    }

    body {
      font-family: "Outfit", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: #edf2f7;
      color: #425066;
    }

    h1, h2, h3, h4, h5, h6,
    .navmenu a,
    .btn-get-started,
    .btn-watch-video,
    button {
      font-family: "Saira", "Outfit", sans-serif;
      letter-spacing: 0;
    }

    .hero h2 {
      max-width: 1080px;
      margin-inline: auto;
      font-family: "Outfit", "Inter", system-ui, sans-serif;
      font-size: 16px;
      font-weight: 400;
      line-height: 1.65;
      text-transform: uppercase;
      color: color-mix(in srgb, var(--default-color), transparent 10%);
    }

    .hero p {
      max-width: 980px;
    }

    .header {
      --background-color: rgba(8, 17, 31, 0.24);
      --default-color: #ffffff;
      --heading-color: #ffffff;
    }

    .header .logo img {
      width: 76px;
      max-width: 76px;
      max-height: 34px;
      filter:
        brightness(1.34)
        contrast(1.18)
        saturate(1.16)
        drop-shadow(0 0 9px rgba(255, 255, 255, 0.26))
        drop-shadow(0 0 14px rgba(31, 114, 214, 0.24));
      transform: translateZ(0);
    }

    .scrolled .header {
      --background-color: rgba(8, 17, 31, 0.94);
      box-shadow: 0 10px 34px rgba(8, 17, 31, 0.18);
    }

    .section:not(.dark-background),
    .section:not(.dark-background) p,
    .section:not(.dark-background) li,
    .section:not(.dark-background) span,
    .section:not(.dark-background) .description {
      color: #425066;
    }

    .section:not(.dark-background) h1,
    .section:not(.dark-background) h2,
    .section:not(.dark-background) h3,
    .section:not(.dark-background) h4,
    .section:not(.dark-background) h5,
    .section:not(.dark-background) h6,
    .section:not(.dark-background) .section-title p {
      color: #0c1728;
    }

    .dark-background,
    .dark-background p,
    .dark-background li,
    .dark-background span,
    .dark-background .description {
      color: rgba(216, 226, 239, 0.88);
    }

    .dark-background h1,
    .dark-background h2,
    .dark-background h3,
    .dark-background h4,
    .dark-background h5,
    .dark-background h6,
    .dark-background .section-title p {
      color: #ffffff;
    }

    .section {
      background-color: var(--background-color);
    }

    .about,
    .features,
    .contact {
      background: #f8fafc;
    }

      .origin,
      .services,
      .services-2,
      .team,
      .manifesto-block {
      background: linear-gradient(180deg, #edf2f7 0%, #e6edf5 100%);
    }

    .products {
      background:
        radial-gradient(circle at top left, rgba(31, 114, 214, 0.24), transparent 34%),
        radial-gradient(circle at bottom right, rgba(181, 46, 54, 0.18), transparent 30%),
        #08111f;
    }

    .stats,
    .testimonials,
    .footer {
      background: #08111f;
    }

    .services .service-item,
    .services-2 .service-item,
    .team .member,
      .contact .info-item,
      .contact .php-email-form {
      background: #f8fafc;
      border-color: rgba(15, 38, 68, 0.10);
      box-shadow: 0 18px 54px rgba(15, 38, 68, 0.08);
    }

    .services .service-item h3,
    .services-2 .service-item h4,
    .team .member h4,
    .contact .info-item h3 {
      color: #0c1728;
    }

    .services .service-item p,
    .services-2 .service-item p,
    .team .member span,
    .contact .info-item p {
      color: #425066;
    }

    .partners {
      background: #edf2f7;
      padding: 72px 0 76px;
    }

    .partners .section-title {
      margin-bottom: 24px;
    }

    .partners .section-title p {
      margin-inline: auto;
    }

    .partners .section-title .row p {
      max-width: 820px;
      margin: 0 auto 10px;
      color: #425066;
      font-family: "Outfit", "Inter", system-ui, sans-serif;
      font-size: 16px;
      font-weight: 400;
      line-height: 1.72;
    }

    .partners .partners-marquee {
      margin-top: 26px;
      padding: 26px 0;
      background:
        linear-gradient(90deg, rgba(8, 17, 31, 0.98), rgba(11, 27, 45, 0.98)),
        #08111f;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 18px 44px rgba(8, 17, 31, 0.14);
    }

    .partners .partner-card img {
      opacity: 0.82;
      filter: grayscale(100%) brightness(1.55) contrast(1.08);
    }

    .partners .partner-card:hover img {
      opacity: 1;
      filter: grayscale(0) brightness(1.15) contrast(1.05);
    }

    .section-copy p {
      max-width: 860px;
      margin: 0 auto;
      color: #425066;
      font-family: "Outfit", "Inter", system-ui, sans-serif;
      font-size: 16px;
      font-weight: 400;
      line-height: 1.72;
      text-align: center;
    }

    .contact .section-title {
      margin-bottom: 42px;
    }

    .contact .section-title h2 {
      max-width: 900px;
      margin-inline: auto;
    }

    .contact .section-copy p + p {
      margin-top: 10px;
    }

    .contact .php-email-form {
      padding: 34px;
      border: 1px solid rgba(15, 38, 68, 0.10);
      border-radius: 18px;
    }

    .contact .php-email-form .row {
      --bs-gutter-x: 18px;
      --bs-gutter-y: 18px;
    }

    .contact .php-email-form input[type=text],
    .contact .php-email-form input[type=email],
    .contact .php-email-form input[type=tel],
    .contact .php-email-form select,
    .contact .php-email-form textarea {
      min-height: 50px;
      padding: 13px 16px;
      border: 1px solid rgba(15, 38, 68, 0.14);
      border-radius: 10px;
      background: #ffffff;
      color: #0c1728;
      font-size: 15px;
      line-height: 1.45;
    }

    .contact .php-email-form textarea {
      min-height: 142px;
      resize: vertical;
    }

    .contact .php-email-form input[type=text]::placeholder,
    .contact .php-email-form input[type=email]::placeholder,
    .contact .php-email-form input[type=tel]::placeholder,
    .contact .php-email-form textarea::placeholder {
      color: rgba(66, 80, 102, 0.62);
    }

    .contact .php-email-form select:invalid {
      color: rgba(66, 80, 102, 0.62);
    }

    .contact .php-email-form input[type=text]:focus,
    .contact .php-email-form input[type=email]:focus,
    .contact .php-email-form input[type=tel]:focus,
    .contact .php-email-form select:focus,
    .contact .php-email-form textarea:focus {
      border-color: #1f72d6;
      background: #ffffff;
      color: #0c1728;
      box-shadow: 0 0 0 4px rgba(31, 114, 214, 0.12);
    }

    .contact .php-email-form button[type=submit] {
      min-height: 48px;
      padding: 11px 30px;
      border: 1.5px solid #1f72d6;
      background: transparent;
      color: #1f72d6;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.02em;
    }

    .contact .php-email-form button[type=submit]:hover {
      background: rgba(31, 114, 214, 0.10);
      color: #0c1728;
      border-color: color-mix(in srgb, #1f72d6, #0c1728 12%);
    }

    .hero-brand {
      display: flex;
      align-items: center;
      flex-direction: column;
      margin-bottom: 26px;
      transform: translateY(-2px);
    }

    .hero-brand .hero-logo {
      width: clamp(320px, 38vw, 560px);
      max-width: min(86vw, 560px);
      margin-bottom: 10px;
      filter:
        brightness(1.16)
        contrast(1.12)
        saturate(1.08)
        drop-shadow(0 18px 34px rgba(0, 0, 0, 0.34))
        drop-shadow(0 0 22px rgba(31, 114, 214, 0.24));
    }

    .hero-brand strong {
      display: block;
      margin-top: -2px;
      font-family: "Syne", "Saira", "Outfit", sans-serif;
      font-size: clamp(34px, 4.4vw, 64px);
      font-weight: 700;
      line-height: 1;
      letter-spacing: 0.34em;
      text-indent: 0.34em;
      text-transform: uppercase;
      background: linear-gradient(180deg, #f4f7fa 0%, #aab5c2 46%, #303844 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      text-shadow: 0 12px 24px rgba(0, 0, 0, 0.34);
    }

    .hero-tagline {
      display: block;
      margin-top: 8px;
      font-family: "Syne", "Saira", "Outfit", sans-serif;
      font-size: clamp(9px, 0.82vw, 13px);
      font-weight: 700;
      letter-spacing: 0.42em;
      text-indent: 0.42em;
      line-height: 1.25;
      text-transform: uppercase;
      color: rgba(218, 225, 234, 0.9);
      text-shadow: 0 8px 18px rgba(0, 0, 0, 0.42);
    }

    .hero-tagline em {
      font-style: normal;
    }

    .hero-tagline .tag-red {
      color: #e32f35;
    }

    .hero-tagline .tag-blue {
      color: #1f82d7;
    }

    .hero-logo,
    .footer .logo img,
    .header .logo img {
      object-fit: contain;
    }

    .undertow-placeholder {
      min-height: 320px;
      border-radius: 28px;
      border: 1px solid rgba(255,255,255,.16);
      background:
        radial-gradient(circle at 20% 20%, rgba(35,199,255,.25), transparent 28%),
        radial-gradient(circle at 80% 80%, rgba(18,214,160,.18), transparent 32%),
        linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 32px;
      text-align: center;
      color: rgba(255,255,255,.78);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
    }

    .undertow-placeholder strong {
      display: block;
      color: #fff;
      font-family: "Saira", "Outfit", sans-serif;
      font-size: 1.35rem;
      margin-bottom: 8px;
    }

    .undertow-concept-image {
      min-height: 320px;
      border-radius: 28px;
      overflow: hidden;
      border: 1px solid rgba(12, 31, 55, .12);
      background: rgba(255,255,255,.54);
      box-shadow: 0 22px 58px rgba(10, 34, 64, .12);
    }

    .undertow-concept-image img {
      width: 100%;
      height: 100%;
      min-height: 320px;
      display: block;
      object-fit: cover;
    }

    .origin-timeline {
      position: relative;
      display: grid;
      gap: 18px;
    }

    .origin-card {
      height: 100%;
      padding: 28px;
      border-radius: 22px;
      background: #fff;
      border: 1px solid rgba(15, 38, 68, .10);
      box-shadow: 0 18px 54px rgba(15, 38, 68, .08);
    }

    .origin-card h3 {
      color: #101c2d;
      font-weight: 900;
    }

    .manifesto-block {
      position: relative;
      overflow: hidden;
      padding-top: 86px;
    }

    .manifesto-block .section-title h2,
    .manifesto-block .section-title p {
      color: #0c1728;
    }

    .manifesto-block .manifesto-text {
      max-width: 920px;
      margin-inline: auto;
      padding: 34px 34px 38px;
      border: 1px solid rgba(15, 38, 68, 0.08);
      border-radius: 22px;
      background: rgba(248, 250, 252, 0.58);
      box-shadow: 0 22px 70px rgba(15, 38, 68, 0.08);
    }

    .manifesto-block .manifesto-text p {
      max-width: 760px;
      margin: 0 auto 18px;
      color: #425066;
      font-size: 16px;
      font-weight: 400;
      line-height: 1.72;
    }

    .manifesto-block .manifesto-text p:last-child {
      margin-bottom: 0;
    }

    .manifesto-block .manifesto-lines {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 9px;
      margin: 28px auto 30px;
      max-width: 920px;
    }

    .manifesto-block .manifesto-lines span {
      border-radius: 999px;
      padding: 8px 14px;
      background: #f8fafc;
      border: 1px solid rgba(15, 38, 68, 0.10);
      color: #0c1728;
      font-size: 14px;
      font-weight: 700;
      box-shadow: 0 10px 24px rgba(15, 38, 68, 0.06);
    }

    .manifesto-block .undertow-placeholder,
    .origin .undertow-placeholder {
      background:
        radial-gradient(circle at 20% 20%, rgba(31, 114, 214, 0.16), transparent 28%),
        radial-gradient(circle at 80% 80%, rgba(181, 46, 54, 0.12), transparent 32%),
        linear-gradient(135deg, #ffffff, #edf4fb);
      border-color: rgba(15, 38, 68, 0.12);
      color: #425066;
      box-shadow: 0 18px 54px rgba(15, 38, 68, 0.08);
    }

    .manifesto-block .undertow-placeholder {
      min-height: 220px;
      max-width: 760px;
      margin-inline: auto;
      border-radius: 22px;
    }

    .manifesto-block .undertow-placeholder strong,
    .origin .undertow-placeholder strong {
      color: #0c1728;
    }

    .product-ecosystem-note {
      height: 100%;
      padding: 28px;
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.06);
      color: rgba(255, 255, 255, 0.78);
    }

    .product-ecosystem-note h3 {
      color: #ffffff;
      margin-bottom: 14px;
      font-size: 22px;
    }

    .product-ecosystem-note p {
      margin-bottom: 12px;
    }

    .product-ecosystem-note p:last-child {
      margin-bottom: 0;
    }

    .footer,
    .footer p,
    .footer span,
    .footer li,
    .footer a {
      color: rgba(216, 226, 239, 0.82);
    }

    .footer h4,
    .footer strong,
    .footer .sitename {
      color: #ffffff;
    }

    .footer {
      font-size: 13px;
    }

    .footer .footer-top {
      padding-top: 34px;
    }

    .footer .row.gy-4 {
      --bs-gutter-y: 18px;
    }

    .footer-brand {
      display: inline-flex;
      flex-direction: column;
      align-items: flex-start;
      max-width: 190px;
      color: #ffffff;
      text-decoration: none;
      margin-bottom: 8px;
    }

    .footer-brand img {
      width: 118px;
      max-width: 118px;
      height: auto;
      margin-bottom: 2px;
      filter:
        brightness(1.24)
        contrast(1.12)
        saturate(1.08)
        drop-shadow(0 0 10px rgba(31, 114, 214, 0.20));
    }

    .footer-brand strong {
      display: block;
      font-family: "Syne", "Saira", "Outfit", sans-serif;
      font-size: 18px;
      font-weight: 700;
      line-height: 1;
      letter-spacing: 0.28em;
      text-indent: 0.28em;
      background: linear-gradient(180deg, #f4f7fa 0%, #aab5c2 54%, #424b58 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .footer-brand span {
      display: block;
      margin-top: 3px;
      font-family: "Syne", "Saira", "Outfit", sans-serif;
      font-size: 5px;
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: 0.28em;
      text-indent: 0.28em;
      color: rgba(216, 226, 239, 0.84);
      white-space: nowrap;
    }

    .footer-brand em {
      font-style: normal;
    }

    .footer-brand .tag-red {
      color: #e32f35;
    }

    .footer-brand .tag-blue {
      color: #1f82d7;
    }

    .footer .footer-about p {
      margin-bottom: 0;
      font-size: 13px;
      line-height: 1.55;
    }

    .footer h4 {
      margin-bottom: 10px;
      padding-bottom: 0;
      font-size: 15px;
      font-weight: 800;
    }

    .footer .footer-links {
      margin-bottom: 0;
    }

    .footer .footer-links ul li {
      padding: 5px 0;
    }

    .footer .footer-links ul a {
      font-size: 13px;
      line-height: 1.25;
    }

    .footer .footer-contact p {
      margin-bottom: 4px;
      font-size: 13px;
      line-height: 1.35;
    }

    .footer .social-links a {
      width: 32px;
      height: 32px;
      margin-right: 7px;
      font-size: 14px;
    }

    .footer .copyright {
      padding: 14px 0;
    }

    .email-signup-modal .modal-content {
      background: #f8fafc;
      border: 1px solid rgba(15, 38, 68, 0.12);
      color: #425066;
      border-radius: 18px;
      box-shadow: 0 28px 90px rgba(8, 17, 31, 0.24);
    }

    .email-signup-modal .modal-header,
    .email-signup-modal .modal-footer {
      border-color: rgba(15, 38, 68, 0.10);
    }

    .email-signup-modal .modal-title {
      color: #0c1728;
      font-weight: 800;
    }

    .email-signup-modal .modal-subtitle,
    .email-signup-modal .form-label {
      color: #425066;
    }

    .email-signup-modal .btn-close {
      filter: none;
      opacity: 0.7;
    }

    .email-signup-modal .btn-close:hover {
      opacity: 1;
    }

    .email-signup-modal .form-control {
      min-height: 48px;
      border: 1px solid rgba(15, 38, 68, 0.14);
      border-radius: 10px;
      background: #ffffff;
      color: #0c1728;
      font-size: 15px;
    }

    .email-signup-modal .form-control::placeholder {
      color: rgba(66, 80, 102, 0.62);
    }

    .email-signup-modal .form-control:focus {
      border-color: #1f72d6;
      background: #ffffff;
      color: #0c1728;
      box-shadow: 0 0 0 4px rgba(31, 114, 214, 0.12);
    }

    .email-signup-product {
      border: 1px solid rgba(15, 38, 68, 0.12);
      background: #ffffff;
      color: #425066;
    }

    .email-signup-product:has(input:checked) {
      border-color: rgba(31, 114, 214, 0.42);
      background: rgba(31, 114, 214, 0.08);
      color: #0c1728;
    }

    .email-signup-consent {
      color: #425066;
    }

    .email-signup-modal .modal-footer .btn-secondary {
      border: 1.5px solid rgba(15, 38, 68, 0.16);
      background: transparent;
      color: #425066;
    }

    .email-signup-modal .modal-footer .btn-primary {
      border: 1.5px solid #1f72d6;
      background: transparent;
      color: #1f72d6;
      font-weight: 700;
    }

    .email-signup-modal .modal-footer .btn-primary:hover {
      background: rgba(31, 114, 214, 0.10);
      color: #0c1728;
    }

    .stats .stats-item {
      align-items: flex-start !important;
      min-height: 190px;
      padding: 28px 26px;
      gap: 18px;
    }

    .stats .stats-item i {
      flex: 0 0 auto;
      margin-right: 0;
      margin-top: 4px;
      font-size: 38px;
    }

    .stats .stats-item span {
      margin-bottom: 2px;
      font-size: 28px;
      font-weight: 800;
      line-height: 1;
    }

    .stats .stats-item p {
      margin-bottom: 8px;
      color: #ffffff;
      font-family: "Saira", "Outfit", sans-serif;
      font-size: 14px;
      font-weight: 700;
      line-height: 1.25;
    }

    .stats .stats-item small {
      display: block;
      max-width: 230px;
      color: rgba(216, 226, 239, 0.74);
      font-size: 12.5px;
      line-height: 1.45;
    }

    .footer-newsletter > p {
      display: none;
    }

    .footer-newsletter-card {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-top: 2px;
      padding: 12px 14px;
      border-radius: 12px;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.10);
    }

    .footer-newsletter-card strong,
    .footer-newsletter-card span {
      display: block;
    }

    .footer-newsletter-card strong {
      color: #ffffff;
      font-weight: 800;
      margin-bottom: 2px;
      font-size: 13px;
    }

    .footer-newsletter-card span {
      color: rgba(223,231,243,.78);
      font-size: 12px;
      line-height: 1.35;
    }

    .footer-newsletter-card button {
      flex: 0 0 auto;
      min-height: 36px;
      padding: 8px 14px;
      border: 0;
      border-radius: 999px;
      background: linear-gradient(135deg, #006dff, #00b8ff);
      color: #ffffff;
      font-weight: 800;
      font-size: 12px;
      white-space: nowrap;
    }

    @media (max-width: 767px) {
      .header .logo img {
        width: 64px;
        max-width: 64px;
        max-height: 30px;
      }

      .hero-brand {
        margin-bottom: 22px;
      }

      .hero-brand .hero-logo {
        width: min(84vw, 360px);
      }

      .hero-brand strong {
        font-size: clamp(28px, 9vw, 42px);
        letter-spacing: 0.24em;
        text-indent: 0.24em;
      }

      .hero-tagline {
        max-width: 92vw;
        font-size: 9px;
        letter-spacing: 0.24em;
        text-indent: 0.24em;
      }

      .footer-newsletter-card {
        align-items: stretch;
        flex-direction: column;
      }

      .footer-newsletter-card button {
        width: 100%;
      }
    }

