@charset "UTF-8";



:root {
  color-scheme: dark;
  --mp-bg: #070912;
  --mp-bg-elevated: #0b1020;
  --mp-surface: #11182b;
  --mp-surface-strong: #172036;
  --mp-surface-soft: rgba(20, 29, 49, 0.72);
  --mp-border: rgba(166, 180, 211, 0.16);
  --mp-border-strong: rgba(166, 180, 211, 0.28);
  --mp-text: #f7f8fc;
  --mp-text-muted: #b9c2d6;
  --mp-text-subtle: #9ca8c1;
  --mp-accent: #7057eb;
  --mp-accent-strong: #5f43d5;
  --mp-accent-soft: rgba(143, 124, 255, 0.14);
  --mp-cyan: #42d8c6;
  --mp-success: #3ddc97;
  --mp-danger: #ff7c8c;
  --mp-radius-sm: 10px;
  --mp-radius-md: 16px;
  --mp-radius-lg: 24px;
  --mp-radius-xl: 32px;
  --mp-shadow-sm: 0 12px 32px rgba(0, 0, 0, 0.22);
  --mp-shadow-lg: 0 30px 90px rgba(0, 0, 0, 0.34);
  --mp-container: 1180px;
  --mp-section-space: clamp(72px, 8vw, 112px);

  --background-color: var(--mp-bg);
  --default-color: var(--mp-text-muted);
  --heading-color: var(--mp-text);
  --accent-color: var(--mp-accent);
  --surface-color: var(--mp-surface);
  --contrast-color: #ffffff;
  --nav-color: var(--mp-text);
  --nav-hover-color: var(--mp-accent);
  --nav-mobile-background-color: var(--mp-bg-elevated);
  --nav-dropdown-background-color: #11182b;
  --nav-dropdown-color: var(--mp-text-muted);
  --nav-dropdown-hover-color: var(--mp-text);
  --default-font: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --heading-font: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --nav-font: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  background: var(--mp-bg);
  scroll-padding-top: 96px;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  color: var(--mp-text-muted);
  background:
    radial-gradient(circle at 12% 8%, rgba(118, 93, 246, 0.13), transparent 30rem),
    radial-gradient(circle at 88% 28%, rgba(66, 216, 198, 0.07), transparent 32rem),
    var(--mp-bg);
  font-family: var(--default-font);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden !important;
}

body.mobile-nav-active {
  overflow: auto;
}

::selection {
  color: #ffffff;
  background: var(--mp-accent-strong);
}

a {
  color: var(--mp-accent);
  text-underline-offset: 0.2em;
}

a:hover {
  color: #b2a7ff;
}

a,
button,
input,
select,
[role="button"] {
  -webkit-tap-highlight-color: transparent;
}

:where(a, button, input, select, textarea, [role="button"]):focus-visible {
  outline: 3px solid #c9c1ff;
  outline-offset: 3px;
  border-radius: 8px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--mp-text);
  font-family: var(--heading-font);
  letter-spacing: -0.025em;
}

p {
  color: var(--mp-text-muted);
}

img {
  height: auto;
}

.main {
  position: relative;
  isolation: isolate;
  background: transparent;
}

.container,
.container-fluid {
  position: relative;
}

@media (min-width: 1200px) {
  .container {
    max-width: var(--mp-container);
  }
}

.light-background,
.dark-background {
  --background-color: transparent;
  --default-color: var(--mp-text-muted);
  --heading-color: var(--mp-text);
  --surface-color: var(--mp-surface);
  --contrast-color: #ffffff;
  color: var(--mp-text-muted);
  background-color: transparent;
}

section,
.section {
  color: var(--mp-text-muted);
  background: transparent;
  padding: var(--mp-section-space) 0;
  scroll-margin-top: 92px;
  overflow: clip;
}

section + section {
  border-top: 1px solid rgba(166, 180, 211, 0.08);
}

.section-title {
  padding-bottom: clamp(36px, 5vw, 56px);
}

.section-title h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin: 0 0 18px;
  color: #b7adff;
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.16em;
}

.section-title h2::after {
  width: 56px;
  height: 1px;
  margin: 0;
  background: linear-gradient(90deg, var(--mp-accent), transparent);
}

.section-title div {
  max-width: 820px;
  margin: 0;
  color: var(--mp-text);
  font-family: var(--heading-font);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.13;
  letter-spacing: -0.04em;
  text-transform: none;
}

.section-title .description-title {
  color: var(--mp-text-muted);
}


.header {
  padding: 12px 0 !important;
  color: var(--mp-text);
  background: transparent !important;
  transition: padding 180ms ease;
}

.header .container {
  min-height: 68px;
  padding: 9px 12px 9px 20px;
  border: 1px solid var(--mp-border);
  border-radius: 20px;
  background: rgba(8, 12, 24, 0.82);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  backdrop-filter: blur(18px) saturate(130%);
}

.scrolled .header {
  padding: 8px 0 !important;
  background: transparent !important;
  box-shadow: none;
}

.scrolled .header .container {
  border-color: var(--mp-border-strong);
  background: rgba(8, 12, 24, 0.94);
  box-shadow: var(--mp-shadow-sm);
}

.header .logo {
  min-height: 44px;
  flex: 0 0 auto;
}

.header .logo img {
  width: auto;
  max-width: min(210px, 45vw);
  max-height: 42px;
  margin: 0;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.26));
}

@media (min-width: 1200px) {
  .navmenu > ul {
    gap: 2px;
  }

  .navmenu > ul > li {
    padding: 0 !important;
  }

  .navmenu > ul > li > a,
  .navmenu > ul > li > a:focus {
    min-height: 44px;
    padding: 0 11px;
    border-radius: 10px;
    color: var(--mp-text-muted);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.01em;
  }

  .navmenu > ul > li > a::before {
    display: none;
  }

  .navmenu > ul > li > a:hover,
  .navmenu > ul > li:hover > a,
  .navmenu > ul > li > a.active,
  .navmenu > ul > li > a:focus-visible {
    color: var(--mp-text);
    background: rgba(255, 255, 255, 0.055);
  }

  .navmenu .dropdown ul {
    top: calc(100% + 12px);
    left: 0;
    min-width: 228px;
    padding: 8px;
    border: 1px solid var(--mp-border-strong);
    border-radius: 16px;
    background: rgba(14, 20, 35, 0.98);
    box-shadow: var(--mp-shadow-lg);
  }

  .navmenu .dropdown ul::before {
    content: "";
    position: absolute;
    inset: -13px 0 auto;
    height: 13px;
  }

  .navmenu .dropdown ul a {
    min-height: 42px;
    padding: 9px 12px;
    border-radius: 10px;
    color: var(--mp-text-muted);
    font-size: 13px;
    font-weight: 500;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul a:focus-visible,
  .navmenu .dropdown ul li:hover > a {
    color: var(--mp-text);
    background: var(--mp-accent-soft);
  }

  .navmenu .dropdown:hover > ul,
  .navmenu .dropdown:focus-within > ul {
    top: calc(100% + 8px);
    visibility: visible;
    opacity: 1;
  }
}

.nav-right {
  gap: 8px !important;
  margin-left: 8px !important;
}

.nav-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 42px !important;
  padding: 0 16px !important;
  border: 1px solid var(--mp-border-strong) !important;
  border-radius: 11px !important;
  color: var(--mp-text) !important;
  font-family: var(--nav-font) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
  box-shadow: none !important;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease !important;
}

.btn-register {
  border-color: transparent !important;
  background: linear-gradient(135deg, var(--mp-accent), var(--mp-accent-strong)) !important;
}

.btn-login {
  background: rgba(255, 255, 255, 0.045) !important;
}

.btn-register:hover,
.btn-login:hover {
  color: #ffffff !important;
  border-color: rgba(201, 193, 255, 0.44) !important;
  background: rgba(143, 124, 255, 0.17) !important;
  transform: translateY(-1px) !important;
}


.mobile-nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  border: 1px solid var(--mp-border-strong);
  border-radius: 12px;
  color: var(--mp-text);
  background: rgba(255, 255, 255, 0.045);
  font-size: 25px;
  line-height: 1;
}

@media (max-width: 1199px) {
  .mobile-nav-active .navmenu,
  .mobile-nav-active .navmenu > ul {
    display: none !important;
  }

  .mobile-nav-active .mobile-nav-toggle {
    position: static;
    margin: 0;
    color: var(--mp-text);
    font-size: 25px;
  }
}

@media (max-width: 1199px) {
  .header .navmenu {
    display: none !important;
  }

  .header .mobile-nav-toggle {
    display: inline-flex !important;
  }

  #mobile-sidebar-menu,
  #mobile-overlay {
    display: block !important;
  }

  .header .container {
    width: calc(100% - 24px);
    min-height: 64px;
    margin-inline: 12px;
    padding: 9px 10px 9px 16px;
  }

  .mobile-sidebar {
    right: min(-390px, -92vw);
    width: min(380px, 90vw);
    height: 100dvh;
    padding: 0 0 max(20px, env(safe-area-inset-bottom));
    border-left: 1px solid var(--mp-border-strong);
    color: var(--mp-text);
    background: rgba(9, 13, 25, 0.98);
    box-shadow: -24px 0 70px rgba(0, 0, 0, 0.45);
    transition: right 220ms ease-in-out;
    overflow-y: auto;
  }

  .mobile-sidebar.active {
    right: 0;
  }

  .mobile-sidebar-header {
    position: sticky;
    top: 0;
    z-index: 2;
    min-height: 76px;
    padding: max(14px, env(safe-area-inset-top)) 18px 14px;
    border-bottom: 1px solid var(--mp-border);
    background: rgba(9, 13, 25, 0.95);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
  }

  .mobile-sidebar-header .logo img {
    max-width: 190px;
    max-height: 38px !important;
  }

  .mobile-sidebar-header i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--mp-border-strong);
    border-radius: 12px;
    color: var(--mp-text);
    background: rgba(255, 255, 255, 0.045);
    font-size: 26px;
  }

  .mobile-sidebar-menu {
    padding: 14px;
    margin: 0;
  }

  .mobile-sidebar-menu > li {
    padding: 2px 0;
  }

  .mobile-sidebar-menu li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 10px 12px;
    border-radius: 11px;
    color: var(--mp-text-muted);
    font-family: var(--nav-font);
    font-size: 15px;
    font-weight: 600;
  }

  .mobile-sidebar-menu li a:hover,
  .mobile-sidebar-menu li a:focus-visible {
    color: var(--mp-text);
    background: var(--mp-accent-soft);
  }

  .mobile-dropdown-menu {
    padding: 4px 0 6px 14px;
    margin: 0;
    border-left: 1px solid var(--mp-border-strong);
  }

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

  #mobile-overlay {
    position: fixed;
    z-index: 1200;
    inset: 0;
    width: 100%;
    height: 100dvh;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: rgba(2, 4, 10, 0.76) !important;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    transition: opacity 220ms ease, visibility 220ms ease;
  }

  #mobile-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-nav-right {
    gap: 10px;
    padding: 14px 0 0;
  }

  .mobile-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 10px 16px;
    border: 1px solid var(--mp-border-strong);
    border-radius: 12px;
    color: var(--mp-text);
    font-family: var(--nav-font);
    font-size: 14px;
    font-weight: 700;
  }

  .mobile-btn-register,
  .mobile-btn-register:hover {
    color: #ffffff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--mp-accent), var(--mp-accent-strong));
  }

  .mobile-btn-login,
  .mobile-btn-login:hover {
    color: var(--mp-text);
    background: rgba(255, 255, 255, 0.045);
  }
}


.hero {
  min-height: min(900px, 100svh);
  padding: 152px 0 112px;
  background: var(--mp-bg);
}

.hero .hero-bg {
  opacity: 0.5;
  filter: saturate(0.75) contrast(1.08);
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(7, 9, 18, 0.98) 0%, rgba(7, 9, 18, 0.9) 42%, rgba(7, 9, 18, 0.4) 76%, rgba(7, 9, 18, 0.76) 100%),
    linear-gradient(180deg, rgba(7, 9, 18, 0.14) 0%, var(--mp-bg) 100%) !important;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 74% 45%, rgba(143, 124, 255, 0.2), transparent 24rem),
    linear-gradient(180deg, transparent 68%, var(--mp-bg));
}

.hero .container {
  z-index: 4;
}

.hero .row {
  align-items: center;
}

.hero h1 {
  max-width: 780px;
  margin: 0 0 24px;
  color: var(--mp-text);
  font-size: clamp(43px, 5.4vw, 72px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.055em;
}

.hero h1 span {
  color: #c8c0ff;
  border: 0;
}

.hero p {
  max-width: 660px;
  margin: 0 0 34px;
  color: #c4ccdc;
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 400;
  line-height: 1.65;
}

.hero .btn-get-started {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid rgba(201, 193, 255, 0.32);
  border-radius: 13px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--mp-accent), var(--mp-accent-strong));
  box-shadow: 0 14px 36px rgba(95, 67, 235, 0.25);
  font-family: var(--nav-font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.hero .btn-get-started:hover {
  color: #ffffff;
  border-color: rgba(225, 221, 255, 0.64);
  background: linear-gradient(135deg, #745bf2, #6548df);
  box-shadow: 0 18px 44px rgba(95, 67, 235, 0.34);
  transform: translateY(-2px);
}

.hero .hero-img {
  position: relative;
}

.hero .hero-img::before {
  content: "";
  position: absolute;
  inset: 10% 5%;
  border-radius: 50%;
  background: rgba(143, 124, 255, 0.25);
  filter: blur(65px);
  pointer-events: none;
}

.hero .bannerSwiper {
  overflow: hidden;
  border: 1px solid rgba(197, 188, 255, 0.24);
  border-radius: var(--mp-radius-xl);
  background: rgba(14, 20, 35, 0.78);
  box-shadow: var(--mp-shadow-lg);
}

.hero .bannerSwiper::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
}

.hero .bannerSwiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 390px;
  padding: 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent);
}

.hero .bannerSwiper img,
.hero .animated {
  display: block;
  width: 100%;
  max-height: 500px;
  margin: 0 auto;
  border-radius: 20px;
  object-fit: contain;
  animation: none;
}

.hero .hero-waves {
  display: none;
}


.about {
  padding-top: var(--mp-section-space);
}

.about .content {
  padding-right: clamp(0px, 3vw, 36px);
}

.about .content h3 {
  padding: 8px 12px;
  border: 1px solid rgba(143, 124, 255, 0.28);
  border-radius: 999px;
  color: #c2b9ff;
  background: var(--mp-accent-soft);
  font-size: 13px;
  font-weight: 700;
}

.about .content h2 {
  margin: 18px 0;
  color: var(--mp-text);
  font-size: clamp(31px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.045em;
}

.about .content p {
  color: var(--mp-text-muted);
  font-size: 17px;
}

.about .icon-box {
  height: 100%;
  padding: 28px;
  border: 1px solid var(--mp-border);
  border-radius: var(--mp-radius-lg);
  color: var(--mp-text-muted);
  background: linear-gradient(145deg, rgba(23, 32, 54, 0.88), rgba(13, 18, 33, 0.86));
  box-shadow: none;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.about .icon-box:hover {
  border-color: rgba(143, 124, 255, 0.38);
  transform: translateY(-3px);
}

.about .icon-box i {
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border: 1px solid rgba(143, 124, 255, 0.25);
  border-radius: 14px;
  color: #b9afff;
  background: var(--mp-accent-soft);
  font-size: 24px;
}

.about .icon-box:hover i {
  color: #ffffff;
  background: var(--mp-accent-strong);
}

.about .icon-box h3 {
  margin-bottom: 10px;
  color: var(--mp-text);
  font-size: 19px;
  font-weight: 650;
}

.about .icon-box p {
  color: var(--mp-text-muted);
  font-size: 15px;
  line-height: 1.65;
}

.about .icon-boxes .col-md-6:nth-child(2) .icon-box,
.about .icon-boxes .col-md-6:nth-child(4) .icon-box {
  margin-top: 0;
}


.stats {
  position: relative;
  background: linear-gradient(180deg, rgba(13, 18, 33, 0.76), rgba(7, 9, 18, 0.7));
}

.stats .row {
  --bs-gutter-x: 18px;
  --bs-gutter-y: 18px;
}

.stats .col-lg-3 {
  position: relative;
}

.stats i {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 32px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(143, 124, 255, 0.28);
  border-radius: 13px;
  color: #bdb4ff;
  background: var(--mp-accent-soft);
  box-shadow: none;
  font-size: 21px;
}

.stats .stats-item {
  min-height: 142px;
  margin: 0;
  padding: 24px 24px 22px 92px;
  border: 1px solid var(--mp-border);
  border-radius: var(--mp-radius-md);
  background: rgba(17, 24, 43, 0.82);
  box-shadow: none;
  text-align: left;
}

.stats .stats-item span {
  color: var(--mp-text);
  font-family: var(--heading-font);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
}

.stats .stats-item p {
  margin-top: 5px;
  color: var(--mp-text-muted);
  font-family: var(--default-font);
  font-size: 14px;
  font-weight: 500;
}


.gallery .row {
  --bs-gutter-x: 18px;
  --bs-gutter-y: 18px;
}

.gallery .gallery-item {
  height: 100%;
  overflow: hidden;
  padding: 8px 8px 14px;
  border: 1px solid var(--mp-border);
  border-radius: var(--mp-radius-md);
  background: rgba(17, 24, 43, 0.82);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.14);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.gallery .gallery-item:hover {
  border-color: rgba(143, 124, 255, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
  transform: translateY(-4px);
}

.gallery .gallery-item a {
  display: block;
  overflow: hidden;
  border-radius: 11px;
  background: #090d19;
}

.gallery .gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.gallery .gallery-item:hover img {
  filter: saturate(1.06);
  transform: scale(1.025);
}

.gallery .gallery-item p {
  margin: 13px 8px 0 !important;
  color: var(--mp-text);
  font-family: var(--nav-font);
  font-size: 14px;
  font-weight: 600;
}


.features > .container > .content {
  max-width: 760px;
  margin: 0 auto 48px;
}

.features > .container > .content h3 {
  margin-bottom: 14px;
  color: var(--mp-text);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
}

.features > .container > .content p {
  color: var(--mp-text-muted);
  font-size: 16px;
}

.features .row {
  --bs-gutter-x: 16px;
  --bs-gutter-y: 16px;
  justify-content: center;
}

.features .features-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 108px;
  padding: 20px;
  border: 1px solid var(--mp-border);
  border-radius: var(--mp-radius-md);
  background: rgba(248, 249, 252, 0.96);
  box-shadow: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.features .features-item:hover {
  border-color: rgba(143, 124, 255, 0.46);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  transform: translateY(-3px);
}

.features .features-item a,
.features .features-item center {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.features .features-item img {
  width: auto;
  max-width: 100%;
  max-height: 68px;
  object-fit: contain;
}


.details .features-item {
  margin: 0;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--mp-border);
  border-radius: var(--mp-radius-xl);
  color: var(--mp-text-muted);
  background:
    radial-gradient(circle at 90% 10%, rgba(143, 124, 255, 0.11), transparent 18rem),
    rgba(17, 24, 43, 0.76);
}

.details .features-item + .features-item {
  margin-top: 28px;
}

.details .features-item img {
  max-height: 420px;
  margin-inline: auto;
  filter: drop-shadow(0 22px 42px rgba(0, 0, 0, 0.3));
}

.details .features-item h3 {
  margin-bottom: 20px;
  color: var(--mp-text);
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.2;
}

.details .features-item p,
.details .features-item li {
  color: var(--mp-text-muted);
  font-size: 16px;
}

.details .features-item ul li {
  gap: 8px;
  padding-bottom: 12px;
}

.details .features-item ul i {
  flex: 0 0 auto;
  padding: 0;
  color: var(--mp-success);
}


.pricing {
  background: linear-gradient(180deg, rgba(11, 16, 32, 0.76), rgba(7, 9, 18, 0.52));
}

.pricing .row {
  --bs-gutter-x: 18px;
  --bs-gutter-y: 18px;
}

.pricing .pricing-item {
  height: 100%;
  padding: 32px;
  border: 1px solid var(--mp-border);
  border-radius: var(--mp-radius-lg);
  color: var(--mp-text-muted);
  background: rgba(17, 24, 43, 0.9);
  box-shadow: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.pricing .col-lg-4 .pricing-item:hover {
  border-color: rgba(143, 124, 255, 0.42);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.24);
  transform: translateY(-4px);
}

.pricing .col-lg-4 .pricing-item.featured {
  border-color: rgba(143, 124, 255, 0.52);
  background:
    linear-gradient(180deg, rgba(143, 124, 255, 0.1), transparent 45%),
    rgba(17, 24, 43, 0.94);
}

.pricing h3 {
  max-width: calc(100% - 80px);
  margin-bottom: 12px;
  color: var(--mp-text);
  font-size: 19px;
  font-weight: 650;
}

.pricing h4 {
  margin: 24px 0 6px;
  color: #c2b9ff;
  font-size: clamp(40px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.045em;
}

.pricing h4 sup {
  font-size: 24px;
}

.pricing h4 span,
.pricing .description,
.pricing ul {
  color: var(--mp-text-muted);
}

.pricing .description {
  min-height: 48px;
  font-size: 14px;
  line-height: 1.65;
}

.pricing .cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin: 24px 0 10px;
  padding: 10px 20px;
  border: 1px solid var(--mp-border-strong);
  border-radius: 12px;
  color: var(--mp-text);
  background: rgba(255, 255, 255, 0.045);
  font-size: 14px;
  font-weight: 700;
}

.pricing .cta-btn:hover,
.pricing .featured .cta-btn {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--mp-accent), var(--mp-accent-strong));
}

.pricing ul {
  margin-top: 20px;
  line-height: 1.5;
}

.pricing ul li {
  gap: 8px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(166, 180, 211, 0.08);
  font-size: 14px;
}

.pricing ul li:last-child {
  border-bottom: 0;
}

.pricing ul i {
  flex: 0 0 auto;
  padding: 0;
  color: var(--mp-success);
  font-size: 20px;
}

.pricing ul .na,
.pricing ul .na i,
.pricing ul .na span {
  color: #9faac0;
}

.pricing .featured .popular {
  top: 20px;
  right: 20px;
  padding: 6px 10px;
  border: 1px solid rgba(143, 124, 255, 0.3);
  border-radius: 999px;
  color: #ded9ff;
  background: var(--mp-accent-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.pricing .col-lg-12 .pricing-item {
  min-height: auto;
  padding: 20px 24px;
  border-radius: var(--mp-radius-md);
  background: rgba(143, 124, 255, 0.08);
}

.pricing .col-lg-12 .description {
  min-height: 0;
  margin: 0;
}


.faq {
  background: linear-gradient(180deg, rgba(7, 9, 18, 0.55), rgba(11, 16, 32, 0.85));
}

.faq .container-fluid {
  max-width: 1420px;
  padding-inline: clamp(20px, 4vw, 64px);
}

.faq .content h3 {
  margin-bottom: 14px;
  color: var(--mp-text);
  font-size: clamp(28px, 4vw, 45px);
  font-weight: 500;
  line-height: 1.2;
}

.faq .content p {
  color: var(--mp-text-muted);
}

.faq .faq-container {
  margin-top: 28px;
}

.faq .faq-container .faq-item {
  margin-bottom: 12px;
  padding: 20px 54px 20px 52px;
  border: 1px solid var(--mp-border);
  border-radius: var(--mp-radius-md);
  color: var(--mp-text-muted);
  background: rgba(17, 24, 43, 0.82);
  box-shadow: none;
}

.faq .faq-container .faq-item:hover,
.faq .faq-container .faq-active {
  border-color: rgba(143, 124, 255, 0.38);
  background: rgba(20, 29, 49, 0.94);
}

.faq .faq-container .faq-item h3 {
  margin: 0;
  color: var(--mp-text);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
}

.faq .faq-container .faq-item h3:hover,
.faq .faq-container .faq-active h3 {
  color: #d0caff;
}

.faq .faq-container .faq-item .faq-icon {
  top: 24px;
  left: 20px;
  color: #bcb2ff;
  font-size: 19px;
}

.faq .faq-container .faq-item .faq-toggle {
  top: 25px;
  right: 20px;
  color: var(--mp-text-subtle);
}

.faq .faq-container .faq-item .faq-content p {
  padding-top: 4px;
  color: var(--mp-text-muted);
  line-height: 1.7;
}

.faq .faq-container .faq-active .faq-content {
  padding-top: 14px;
}

.faq .col-lg-5 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq .col-lg-5 img {
  width: 100%;
  max-width: 620px;
  max-height: 650px;
  border: 1px solid var(--mp-border);
  border-radius: var(--mp-radius-xl);
  box-shadow: var(--mp-shadow-lg);
  object-fit: cover;
}


.page-title {
  position: relative;
  overflow: hidden;
  padding-top: 126px;
  border-bottom: 1px solid var(--mp-border);
  background:
    radial-gradient(circle at 50% 10%, rgba(143, 124, 255, 0.22), transparent 28rem),
    linear-gradient(180deg, #0b1020, #070912);
}

.page-title .heading {
  padding: 66px 0 52px;
}

.page-title .heading h1 {
  margin-bottom: 14px;
  color: var(--mp-text);
  font-size: clamp(38px, 6vw, 62px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.page-title .heading p {
  color: var(--mp-text-muted);
  font-size: 17px;
}

.page-title nav {
  padding: 15px 0;
  border-top: 1px solid var(--mp-border);
  background: rgba(255, 255, 255, 0.025);
}

.page-title nav ol {
  color: var(--mp-text-muted);
  font-size: 14px;
}

.page-title nav ol a,
.page-title nav ol .current {
  color: var(--mp-text-muted) !important;
}

.starter-section .section-title {
  text-align: center;
}

.starter-section .section-title h2 {
  margin-inline: auto;
}

.starter-section .section-title div {
  margin-inline: auto;
}

.starter-section .col-md-6 {
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid var(--mp-border);
  border-radius: var(--mp-radius-lg);
  background: rgba(17, 24, 43, 0.88);
  box-shadow: var(--mp-shadow-sm);
}

.starter-section label {
  display: block;
  margin-bottom: 8px;
  color: var(--mp-text);
  font-family: var(--nav-font);
  font-size: 14px;
  font-weight: 600;
}

.starter-section .form-control {
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--mp-border-strong);
  border-radius: 12px;
  color: var(--mp-text);
  background-color: #0b1120;
  box-shadow: none;
  font-size: 16px;
}

.starter-section .form-control::placeholder {
  color: #8490aa;
  opacity: 1;
}

.starter-section .form-control:focus {
  color: var(--mp-text);
  border-color: var(--mp-accent);
  background-color: #0d1425;
  box-shadow: 0 0 0 4px rgba(143, 124, 255, 0.14);
}

.starter-section select.form-control {
  color-scheme: dark;
}

.starter-section #check-licence {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--mp-accent), var(--mp-accent-strong));
  box-shadow: 0 14px 34px rgba(95, 67, 235, 0.22);
  font-family: var(--nav-font);
  font-size: 14px;
  font-weight: 700;
}

.starter-section #check-licence:hover {
  background: linear-gradient(135deg, #745bf2, #6548df);
  transform: translateY(-1px);
}

.starter-section #result .alert {
  margin: 0;
  border-radius: 12px;
  text-align: left;
}


.footer {
  position: relative;
  padding: 72px 0 28px;
  border-top: 1px solid var(--mp-border);
  color: var(--mp-text-muted);
  background: #070912 !important;
  isolation: isolate;
}

.footer::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.14;
  background:
    linear-gradient(180deg, #070912 0%, rgba(7, 9, 18, 0.72) 45%, #070912 100%),
    url('../img/hero-bg-2.jpg') center / cover no-repeat;
  filter: saturate(0.7);
}

.footer .footer-top {
  padding: 0 0 48px;
  border-top: 0;
}

.footer .footer-about .logo img {
  max-width: 210px;
  max-height: 42px !important;
  margin: 0 0 18px;
}

.footer .footer-about p,
.footer .footer-contact p {
  margin: 0 0 8px;
  color: var(--mp-text-muted);
  font-size: 14px;
}

.footer h4 {
  margin-bottom: 18px;
  color: var(--mp-text);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}

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

.footer .footer-links ul a {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  color: var(--mp-text-muted);
  font-size: 14px;
}

.footer .footer-links ul a:hover,
.footer .footer-links ul a:focus-visible {
  color: var(--mp-text);
}

.footer .copyright {
  padding: 24px 0 0;
  border-top: 1px solid var(--mp-border);
}

.footer .copyright p {
  color: var(--mp-text-subtle);
  font-size: 13px;
}

.footer .copyright img {
  max-width: 190px;
  max-height: 34px !important;
  opacity: 0.84;
}


.whatsapp-button {
  min-height: 48px !important;
  padding: 0 17px !important;
  border: 1px solid rgba(134, 255, 196, 0.26) !important;
  border-radius: 14px !important;
  color: #ffffff !important;
  background: rgba(16, 130, 79, 0.94) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease !important;
}

.whatsapp-button:hover {
  color: #ffffff !important;
  background: rgba(20, 150, 91, 0.98) !important;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.34) !important;
  transform: translateY(-2px) !important;
}

.scroll-top {
  right: 20px;
  bottom: 20px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--mp-border-strong);
  border-radius: 14px;
  color: var(--mp-text);
  background: rgba(17, 24, 43, 0.94);
  box-shadow: var(--mp-shadow-sm);
}

.scroll-top:hover {
  color: #ffffff;
  background: var(--mp-accent-strong);
}

#preloader {
  background-color: var(--mp-bg);
}

#preloader::before {
  border-color: var(--mp-accent) transparent var(--mp-accent) transparent;
}


@media (max-width: 1199px) {
  .hero {
    padding-top: 140px;
  }

  .about .icon-box {
    padding: 24px;
  }

  .pricing .pricing-item {
    padding: 28px;
  }
}

@media (max-width: 991px) {
  :root {
    --mp-section-space: 82px;
  }

  .hero {
    min-height: auto;
    padding: 132px 0 88px;
    text-align: center;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(7, 9, 18, 0.82) 0%, rgba(7, 9, 18, 0.92) 58%, var(--mp-bg) 100%) !important;
  }

  .hero .row {
    gap: 42px;
  }

  .hero .hero-img {
    order: 2 !important;
    width: min(620px, 100%);
    margin-inline: auto;
  }

  .hero .col-lg-6 {
    align-items: center;
  }

  .hero h1,
  .hero p {
    margin-inline: auto;
  }

  .hero .bannerSwiper .swiper-slide {
    min-height: 320px;
  }

  .about .content {
    padding-right: 0;
    text-align: center;
  }

  .about .content h2,
  .about .content p {
    max-width: 720px;
    margin-inline: auto;
  }

  .details .features-item {
    text-align: left;
  }

  .details .features-item .col-md-5 {
    margin-bottom: 8px;
  }

  .faq .col-lg-5 {
    margin-bottom: 28px;
  }

  .footer .row {
    --bs-gutter-y: 36px;
  }
}

@media (max-width: 767px) {
  :root {
    --mp-section-space: 68px;
  }

  body {
    font-size: 15px;
  }

  section,
  .section {
    scroll-margin-top: 80px;
  }

  .section-title {
    padding-bottom: 34px;
  }

  .hero {
    padding: 118px 0 72px;
  }

  .hero h1 {
    font-size: clamp(36px, 11vw, 50px);
    line-height: 1.08;
  }

  .hero p {
    font-size: 17px;
  }

  .hero .d-flex {
    justify-content: center;
  }

  .hero .bannerSwiper {
    border-radius: 22px;
  }

  .hero .bannerSwiper .swiper-slide {
    min-height: 240px;
    padding: 10px;
  }

  .hero .bannerSwiper img {
    border-radius: 15px;
  }

  .about .icon-box {
    padding: 24px;
  }

  .stats i {
    left: 28px;
  }

  .stats .stats-item {
    min-height: 128px;
    padding-left: 84px;
  }

  .details .features-item {
    border-radius: 22px;
  }

  .pricing .pricing-item {
    padding: 26px;
  }

  .pricing .description {
    min-height: 0;
  }

  .faq .container-fluid {
    padding-inline: 12px;
  }

  .faq .content,
  .faq .faq-container {
    padding-inline: 0 !important;
  }

  .faq .faq-container .faq-item {
    padding: 18px 48px 18px 46px;
  }

  .faq .faq-container .faq-item .faq-icon {
    top: 22px;
    left: 17px;
  }

  .faq .faq-container .faq-item .faq-toggle {
    top: 23px;
    right: 16px;
  }

  .page-title {
    padding-top: 104px;
  }

  .page-title .heading {
    padding: 52px 0 40px;
  }

  .footer {
    padding-top: 58px;
  }

  .whatsapp-button {
    bottom: 14px !important;
    left: 14px !important;
    min-height: 46px !important;
  }

  .scroll-top {
    right: 14px;
    bottom: 14px;
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 420px) {
  .header .logo img {
    max-width: 176px;
  }

  .hero .btn-get-started {
    width: 100%;
  }

  .section-title div {
    font-size: 28px;
  }

  .pricing h3 {
    max-width: 100%;
    padding-right: 0;
  }

  .pricing .featured .popular {
    position: static;
    width: fit-content;
    margin: 0 0 14px;
  }

  .starter-section .col-md-6 {
    padding: 22px 18px;
  }

  .whatsapp-button {
    max-width: calc(100vw - 92px);
  }
}

@media (prefers-contrast: more) {
  :root {
    --mp-border: rgba(220, 225, 238, 0.34);
    --mp-border-strong: rgba(232, 235, 245, 0.58);
    --mp-text-muted: #d9deea;
    --mp-text-subtle: #c7cfdf;
  }

  .header .container,
  .about .icon-box,
  .stats .stats-item,
  .gallery .gallery-item,
  .details .features-item,
  .pricing .pricing-item,
  .faq .faq-container .faq-item,
  .starter-section .col-md-6 {
    border-width: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero .animated,
  .gallery .gallery-item:hover img,
  .about .icon-box:hover,
  .features .features-item:hover,
  .pricing .pricing-item:hover,
  .whatsapp-button:hover {
    transform: none !important;
  }
}
