
/* ===== header style #1 ===== */
/* Modern Glassmorphism Pill Header */
    .header-pill {
      position: fixed;
      top: 20px;
      left: 50%;
      transform: translateX(-50%);
      width: min(100% - 40px, 1200px);
      z-index: 1000;
      overflow: visible;
      background: rgba(15, 16, 22, 0.45);
      backdrop-filter: blur(25px) saturate(160%);
      -webkit-backdrop-filter: blur(25px) saturate(160%);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 100px;
      padding: 10px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    }

.hot-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 36px;
  padding: 0 20px;
  box-sizing: border-box;
  text-decoration: none;
  color: #f3e8ff;
  background:
    linear-gradient(90deg, rgba(12,10,22,.96), rgba(36,22,72,.92) 48%, rgba(18,12,32,.96));
  border-bottom: 1px solid rgba(196,181,253,.28);
  box-shadow: 0 8px 28px rgba(88,28,135,.28);
}
.hot-bar:hover {
  color: #fff;
}
.hot-bar-badge {
  flex: 0 0 auto;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #1a1028;
  background: linear-gradient(90deg, #c4b5fd, #e879f9 55%, #fbbf24);
}
.hot-bar-title {
  min-width: 0;
  max-width: min(720px, 72vw);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
}
.hot-bar-go {
  flex: 0 0 auto;
  color: #c4b5fd;
  font-size: 14px;
}
body.has-hot-bar .header-pill {
  top: 48px;
}
body.has-hot-bar.page-home .header {
  padding-top: 124px;
}

    .header-pill .logo-box {
      width: auto;
      min-width: 0;
      flex-shrink: 0;
    }

    .header-pill .logo-box .logo-img-full,
    .header-pill .logo-box .logo-img-icon {
      display: none;
    }

    .header-pill .nav-center {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      display: flex;
      align-items: center;
      background: rgba(95, 77, 156, 0.2);
      border: 1.5px solid #5f4d9c;
      border-radius: 100px;
      padding: 4px;
    }

    .header-pill .menuname-pill {
      color: white;
      padding: 8px 24px 8px 44px;
      cursor: pointer;
      border-radius: 100px;
      background: #5f4d9c url('../img/menu.svg') 18px center / 16px no-repeat;
      font-weight: 700;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      white-space: nowrap;
      position: relative;
      z-index: 30;
    }

    .header-pill .menucenter-pill {
      display: flex;
      align-items: center;
      padding: 0 20px 0 10px;
      color: white;
      white-space: nowrap;
    }

    .header-pill .menucenter-pill .link {
      cursor: pointer;
      color: #d9d6d6;
      font-size: 14px;
      transition: color 0.2s;
      text-decoration: none;
      max-width: 140px;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .header-pill .menucenter-pill .link:hover {
      color: white;
    }

    .header-pill .menucenter-pill .menuline {
      width: 1px;
      height: 16px;
      background: rgba(255, 255, 255, 0.2);
      margin: 0 15px;
    }

    .header-pill .actions-right {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-shrink: 0;
      position: relative;
      z-index: 1002;
      overflow: visible;
    }

    .header-pill .lang-switcher {
      display: flex;
      gap: 10px;
    }

    .header-pill .lang-switcher img {
      width: 22px;
      height: auto;
      border-radius: 2px;
      opacity: 0.8;
      transition: opacity 0.2s;
    }

    .header-pill .lang-switcher a:hover img {
      opacity: 1;
    }

    .header-pill .btn-gradient {
      background: linear-gradient(90deg, #6366f1 0%, #d946ef 100%);
      color: white;
      padding: 12px 28px;
      border-radius: 999px;
      font-weight: 700;
      font-size: 14px;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    }

    .header-pill .btn-gradient:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
      filter: brightness(1.1);
    }

    /* Support Dropdown */
    .support-dropdown-wrapper {
      position: relative;
      z-index: 1003;
      overflow: visible;
    }

    .support-dropdown {
      position: absolute;
      top: calc(100% + 15px);
      right: 0;
      width: 220px;
      padding: 1px;
      border-radius: 16px;
      background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.35) 0%,
        rgba(255, 255, 255, 0.06) 35%,
        rgba(255, 255, 255, 0.03) 55%,
        rgba(255, 255, 255, 0.08) 100%
      );
      box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
      z-index: 1200;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px) scale(0.95);
      transition: all 0.25s ease;
    }

    .support-dropdown.visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0) scale(1);
    }

    .support-menu {
      border-radius: 15px;
      background: rgba(15, 16, 22, 0.85);
      backdrop-filter: blur(25px) saturate(160%);
      -webkit-backdrop-filter: blur(25px) saturate(160%);
      box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset;
      padding: 10px 0;
    }

    .support-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 18px;
      color: #fff;
      text-decoration: none;
      transition: all 0.2s ease;
      cursor: pointer;
    }

    .support-item:hover {
      background: rgba(255, 255, 255, 0.1);
    }

    .support-item.disabled {
      cursor: default;
      opacity: 0.6;
    }

    .support-item.disabled:hover {
      background: transparent;
    }

    .support-icon {
      width: 22px;
      height: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      flex-shrink: 0;
    }

    .support-icon svg {
      width: 100%;
      height: 100%;
      filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
      overflow: visible;
    }

    .support-icon svg path,
    .support-icon svg rect,
    .support-icon svg circle[stroke],
    .support-icon svg line,
    .support-icon svg polyline {
      stroke: currentColor;
    }

    /* класс .chat не используем — блокируется частью AdBlock / фильтров */
    .support-icon.livechat svg {
      color: #a78bfa;
    }

    .support-icon.livechat svg path {
      stroke: #a78bfa;
      fill: none;
    }

    .support-icon.livechat svg circle {
      fill: #a78bfa;
      stroke: none;
    }

    .support-icon.telegram svg {
      color: #60a5fa;
    }

    .support-icon.email svg {
      color: #fbbf24;
    }

    .support-text {
      font-size: 14px;
      font-weight: 500;
    }

    .support-divider {
      height: 1px;
      background: rgba(255, 255, 255, 0.1);
      margin: 8px 15px;
    }

    .support-btn {
      border: none;
      cursor: pointer;
      font-family: inherit;
    }

    /* Menu Shell with Gradient Border & Glassmorphism */
    .header-pill .menuslider {
      position: absolute;
      top: calc(100% + 15px);
      left: 50%;
      transform: translateX(-50%);
      width: 300px;
      padding: 1px;
      border-radius: 20px;
      display: none;
      flex-direction: column;
      z-index: 1100;
      overflow: visible;
      background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.35) 0%,
        rgba(255, 255, 255, 0.06) 35%,
        rgba(255, 255, 255, 0.03) 55%,
        rgba(255, 255, 255, 0.08) 100%
      );
      box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 32px 80px rgba(0, 0, 0, 0.45);
    }

    /* Inner menu content with glassmorphism */
    .header-pill .menuslider::before {
      content: '';
      position: absolute;
      inset: 1px;
      border-radius: 19px;
      background: rgba(15, 16, 22, 0.85);
      backdrop-filter: blur(25px) saturate(160%);
      -webkit-backdrop-filter: blur(25px) saturate(160%);
      z-index: -1;
    }

    .header-pill .menuslider .menu-header {
      padding: 20px 20px 15px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      margin-bottom: 12px;
    }

    .header-pill .menuslider .menu-title-top {
      font-size: 18px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
    }

    .header-pill .menuslider .menu-subtitle {
      font-size: 12px;
      color: #9ca3af;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .header-pill .menuslider .menu-section {
      margin-bottom: 8px;
    }

    .header-pill .menuslider .menu-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 13px 20px;
      color: #fff;
      text-decoration: none;
      transition: all 0.25s ease;
      cursor: pointer;
      position: relative;
      border: 0;
      margin: 0;
      background: transparent;
    }

    .header-pill .menuslider .menu-item:hover {
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
      box-shadow: none;
    }

    .header-pill .menuslider .menu-item.has-submenu:hover,
    .header-pill .menuslider .menu-item.has-submenu.active {
      background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(99, 102, 241, 0.15));
    }

    .header-pill .menuslider .menu-icon {
      width: 38px;
      height: 38px;
      margin-right: 0;
      flex-shrink: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 14px;
      color: #fff;
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04)),
        linear-gradient(135deg, rgba(99, 102, 241, 0.9), rgba(217, 70, 239, 0.65));
      box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.12) inset,
        0 10px 24px rgba(99, 102, 241, 0.22);
      transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    }

    .header-pill .menuslider .menu-icon svg {
      width: 22px;
      height: 22px;
      display: block;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
      filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.25));
    }

    .header-pill .menuslider .menu-item:hover .menu-icon,
    .header-pill .menuslider .menu-item.has-submenu.active .menu-icon {
      transform: scale(1.08);
      filter: brightness(1.08);
      box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.2) inset,
        0 14px 32px rgba(217, 70, 239, 0.28);
    }

    .header-pill .menuslider .menu-text {
      flex: 1;
      font-size: 14px;
      font-weight: 500;
      color: inherit;
    }

    .header-pill .menuslider .menu-arrow {
      width: 16px;
      height: 16px;
      margin-left: auto;
      opacity: 0.6;
      transition: transform 0.2s, opacity 0.2s;
      color: #fff;
    }

    .header-pill .menuslider .menu-item:hover .menu-arrow,
    .header-pill .menuslider .menu-item.has-submenu.active .menu-arrow {
      opacity: 1;
      transform: translateX(2px);
    }

    .header-pill .menuslider .menu-footer {
      padding: 12px 0 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      margin-top: 12px;
    }

    .header-pill .menuslider .menu-footer-text {
      padding: 0 20px;
      font-size: 11px;
      color: #9ca3af;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 8px;
    }

    .header-pill .menuslider .submenu-shell {
      position: absolute;
      top: -1px;
      left: calc(100% + 14px);
      width: 280px;
      padding: 1px;
      border-radius: 16px;
      background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.35) 0%,
        rgba(255, 255, 255, 0.06) 35%,
        rgba(255, 255, 255, 0.03) 55%,
        rgba(255, 255, 255, 0.08) 100%
      );
      box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px) scale(0.95);
      transition: all 0.25s ease;
      z-index: 1200;
    }

    .header-pill .menuslider .submenu-shell.visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0) scale(1);
    }

    .header-pill .menuslider .submenu {
      border-radius: 15px;
      background: rgba(15, 16, 22, 0.85);
      backdrop-filter: blur(25px) saturate(160%);
      -webkit-backdrop-filter: blur(25px) saturate(160%);
      box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset;
      padding: 18px 0;
    }

    .header-pill .menuslider .submenu-header {
      padding: 0 20px 14px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      margin-bottom: 12px;
    }

    .header-pill .menuslider .submenu-title {
      font-size: 13px;
      font-weight: 700;
      color: #9ca3af;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .header-pill .menuslider .submenu-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 20px;
      text-decoration: none;
      color: #fff;
      font-size: 14px;
      font-weight: 500;
      transition: all 0.2s ease;
    }

    .header-pill .menuslider .submenu-item:hover {
      background: rgba(255, 255, 255, 0.08);
      transform: translateX(3px);
    }

    .header-pill .menuslider .submenu-divider {
      height: 1px;
      background: rgba(255, 255, 255, 0.1);
      margin: 10px 20px;
    }

    /* === NEW FUNCTIONS SECTION === */
    .new-functions-section {
      padding: 80px 0 100px;
      position: relative;
      overflow: hidden;
    }

    .new-functions-section::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 0;
      background: #000 url("../img/header.jpg") center center no-repeat;
      background-size: cover;
      filter: blur(22px);
      transform: scale(1.15);
      pointer-events: none;
    }

    .new-functions-section::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(99, 102, 241, 0.8) 20%, 
        rgba(217, 70, 239, 0.8) 50%, 
        rgba(99, 102, 241, 0.8) 80%, 
        transparent 100%
      );
      animation: gradientLine 3s ease-in-out infinite;
      z-index: 2;
    }

    @keyframes gradientLine {
      0%, 100% { opacity: 0.5; }
      50% { opacity: 1; }
    }

    .functions-carousel {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 16px;
      z-index: 1;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }

    .functions-carousel--full {
      width: 100vw;
      max-width: 100vw;
      position: relative;
      left: 50%;
      transform: translateX(-50%);
      padding: 0 12px 0 20px;
      margin: 0;
    }

    .carousel-track-wrapper {
      overflow: hidden;
      flex: 1;
      min-width: 0;
      max-width: none;
      width: 100%;
    }

    .carousel-track {
      display: flex;
      gap: 25px;
      transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
      will-change: transform;
    }

    .function-card {
      flex: 0 0 calc(20% - 20px);
      min-width: 280px;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .function-card:hover {
      transform: translateY(-10px);
    }

    .card-image-wrapper {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      aspect-ratio: 16/10;
      background: rgba(255, 255, 255, 0.08);
      padding: 1px;
      box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.2) inset,
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(99, 102, 241, 0.15);
    }

    .card-image-wrapper::before {
      content: '';
      position: absolute;
      inset: 1px;
      border-radius: 19px;
      background: rgba(20, 20, 25, 0.4);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      z-index: 0;
    }

    .card-image-wrapper img {
      position: relative;
      z-index: 1;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 19px;
      transition: transform 0.4s ease;
    }

    .function-card:hover .card-image-wrapper img {
      transform: scale(1.05);
    }

    .card-info {
      text-align: center;
      margin-top: 15px;
    }

    .card-date {
      display: block;
      font-size: 14px;
      color: rgba(255, 255, 255, 0.5);
      margin-bottom: 5px;
      letter-spacing: 1px;
    }

    .card-name {
      font-size: 18px;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.85);
      letter-spacing: 0.5px;
    }

    .carousel-btn {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.3);
      background: rgba(255, 255, 255, 0.1);
      color: white;
      font-size: 24px;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      z-index: 2;
    }

    .carousel-btn:hover {
      background: rgba(255, 255, 255, 0.2);
      border-color: rgba(255, 255, 255, 0.5);
      transform: scale(1.1);
    }

    .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 40px;
      position: relative;
      z-index: 1;
    }

    .new-functions-section .center {
      position: relative;
      z-index: 1;
    }

    .new-functions-title {
      color: white;
      display: block;
      width: 100%;
      text-align: center;
      font: 24px Opensans;
      padding: 0 0 40px;
      margin: 0;
      cursor: pointer;
    }

    .carousel-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .carousel-dot.active {
      background: rgba(255, 255, 255, 0.9);
      transform: scale(1.2);
    }

    .carousel-dot:hover {
      background: rgba(255, 255, 255, 0.6);
    }

    @media (max-width: 1200px) {
      .function-card {
        flex: 0 0 calc(25% - 19px);
      }
    }

    @media (max-width: 992px) {
      .function-card {
        flex: 0 0 calc(33.333% - 17px);
      }
    }

    @media (max-width: 768px) {
      .function-card {
        flex: 0 0 calc(50% - 13px);
      }
    }

    @media (max-width: 480px) {
      .function-card {
        flex: 0 0 calc(100% - 24px);
        min-width: 0;
      }
      .functions-carousel--full {
        width: 100%;
        max-width: 100%;
        left: auto;
        transform: none;
        padding: 0 4px;
      }
      .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
      }
    }


/* ===== header style #2 ===== */
@font-face {
    font-family: Opensans;
    src: url('../fonts/OpenSans-Regular.woff2') format("woff2"),
    url('../fonts/OpenSans-Regular.woff') format("woff");
   font-weight: normal;
   font-style: normal;
}
@font-face {
    font-family: Opensansl;
    src: url('../fonts/OpenSans-Light.woff2') format("woff2"),
    url('../fonts/OpenSans-Light.woff') format("woff");
}

@font-face {
    font-family: Opensansb;
    src: url('../fonts/OpenSans-SemiBold.woff2') format("woff2"),
    url('../fonts/OpenSans-SemiBold.woff') format("woff");
   font-weight: normal;
   font-style: normal;
}



::-webkit-scrollbar {
    width: 10px;  
    background-color:#3e414b;
}

::-webkit-scrollbar-thumb {
    background-color: #715bb7;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #7c61d1;
}

*{
  margin: 0;
  padding: 0;
}

img{
  border: 0;
}

.clear{
  clear: both;
}

.select{
   border: 1px solid #cecece;
   background: white;
   padding: 7px;
   font:15px Opensans;
   display: table;
   width: 275px;
   float: left;
}

html {
  background-color: #0d0e14;
  min-height: 100%;
}

body{
  font: 15px Opensans;
  width: 100%;
  min-height: 600px;
  min-height: 100vh;
  min-height: 100dvh;
  min-width: 1000px;
  background-color: #0d0e14;
}

.window{
  z-index: 91;
  width: 500px;
  min-height: 220px;
  position: fixed;
  top: 30%;
  left: 50%;
  margin-left: -250px;
  display: none;
}



.window_load{
  z-index: 91;
  width: 100px;
  height: 100px;
  position: fixed;
  top: 33%;
  left: 50%;
  margin-left: -50px;
  display: none;
}



.window .topname{
  width: 100%;
  font: 19px Opensansl;
  color: white;
  text-align: center;
  background: #5b4a96;
  padding-top: 18px;
  padding-bottom: 18px;
}

.window .container{
  width: 100%;
  min-height: 100px;
  background: white;
}

.window .text{
  padding: 20px 20px 0 20px;
  line-height: 24px;
}

.bgwindow{
  width: 100%;
  height: 1200px;
  background: url(../img/windowbg.png);
  position: fixed;
  top:0;
  left:0;
  z-index: 90;
  display: none;
}

.window .load{
   width: 60px;
   margin: 300px auto  0 auto;
   z-index: 3;
}


.window .bgline{
   background: #585660;
   width: 100%;
   height: 65px;
   margin: 31px 20px 0 0px;
}

.window .bgline .link {
   float: right;
   margin-top: 22px;
   margin-right: 40px;
   cursor: pointer;
   display: block;
   color: #c6c6c6;
}

.window .bgline .link:hover {
   color: white;
}





.window .close{
   background:   url(../img/close.png) no-repeat;
   width: 30px;
   height: 30px;
   display: block;
   position: absolute;
   right: 15px;
   top: 15px;
   cursor: pointer;
}


.window .close:hover{
   background-position: 0 -40px;
}


.line2{
  width: 100%;
  border-bottom: 1px solid #f0f0f0;
  padding-top: 15px;
  margin-bottom: -5px;
}



.form{
   position:relative;
   border: 1px solid #cecece;
   background: white;
   padding: 10px;
   font:15px Opensans;
   display: block;
   width: 250px;
   float: left;
    border-radius: 3px;
   -webkit-border-radius: 3px;
   -moz-border-radius: 3px;
   -khtml-border-radius: 3px;
}


.form:focus{
       border: 1px solid #a5a5a5;
	   outline: none;
}




.td1{
   width: 150px;
   float: left;
   text-align: right;
   margin-right: 8px;
   margin-top: 32px;

}

.td2{
   width: 276px;
   float: left;
   margin-top: 20px;

}


.mess{
   padding: 9px 12px 9px 12px;
   background: #fff1d5;
   color: #85621b;
   border: 1px solid #d1b57c;
   display: table;
   font: 13px Opensans;
   margin-left: 160px;
}

.mess A {
   color: white;
}

.error{
   padding: 9px 12px 9px 12px;
   background: #fff1d5;
   border: 1px solid #d1b57c;
   color: #85621b;
   display: table;
   font: 13px Opensans;
   margin-left: 110px;
   display: none;
}

.hide{
   opacity: 0;
   filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);
   -moz-opacity: 0;
   -khtml-opacity: 0;
   zoom: 1;
}




A{
  color: black;
}

.center{
  min-width: 1000px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}


.header_table{
  width: 100%;
}


.header{
    width: 100%;
    position: relative;
    overflow: hidden;
}

 
body.page-home .header {
    box-sizing: border-box;
    background: black url('../img/header.jpg') 0 0 no-repeat;
    height: 700px;
    padding-top: 96px;
}

body.page-home .header .platform {
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
}


.header .lang_list{
   width: 200px;
   position: absolute;
   top:25px;
   left: 50%;
   margin-left:-50px;
}

.header .lang_list A {
   margin-left:10px;
}


.header .logo{
   display: block;
   width: 380px;
   background:   url('../img/logo.svg') no-repeat;
   background-size: 380px 49px;
   height: 60px;
   margin-top: 59px;
   float: left;
	

}

.header .menu{
	margin-top: 64px;
	position: absolute;
	left: 50%;
	margin-left: -115px;
	border: 2px solid #5f4d9c;
    border-radius:100px;
	-moz-border-radius: 100px;
  	-webkit-border-radius: 100px;
  	-khtml-border-radius: 100px;
}

 

.header .menu  .menuname{
	float: left;
	color: white;
	padding: 8px 27px 8px 47px;
	z-index: 20;
	position: relative;
	cursor: pointer;
	width: 70px;
	text-align:center;
	border-radius:100px;
 	-moz-border-radius: 100px;
  	-webkit-border-radius: 100px;
  	-khtml-border-radius: 100px;
	background: #5f4d9c url(../img/menu.svg) 22px 12px no-repeat;
}

 

.header .menu  .menucenter{
	float: left;
	color: white;
	padding: 8px 20px 0 10px;
}



.header .menu  .menuline{
	float: left;
	width: 19px;
	height: 20px;
	background: url(../img/menuline.png) no-repeat;
	margin:0  0 0 18px;
}

.header .menu  .menuslider{
	background: #5f4d9c;
	width: 145px;
	display: none;
	-moz-border-radius: 30px;
  	-webkit-border-radius: 30px;
  	-khtml-border-radius: 30px;
  	border-radius: 20px;
	position: absolute;
	top: 5px;
	left: -1px;
	z-index: 15;
	padding-top: 30px;
}

.header .menu  .menuslider A{
	 padding: 10px 8px 10px 8px;
	 color: #e9e9e9;
 	 display: block;
	 text-align:center;
	 text-decoration: none;
 }

  
.header .menu  .menuslider A:hover{
	 color: white;
 }



.header .menu  .menuslider .line{
	width: 100%;
	height: 1px;
	border-bottom: 1px solid #473780;
}


.header  .menu  .link{
	float: left;
	cursor: pointer;
	color: #d9d6d6;
	overflow:hidden;
}

.header  .menu  .link:hover{
	color: white;
}


.header .tel{
    display: block;
    float: right;
	height: 50px;
	background: url(../img/tel.png) 0 5px no-repeat;
	margin-top: 55px;
	margin-left: 50px;
	font: 22px Opensans;
	color: white;
	padding-left:49px;
    text-decoration: none;
    margin-right:30px; 
	cursor: pointer;
}

.header .tel a {
    display: block;
    text-decoration: none;  
	color: white;
}

 

.header .tel .time{
    display: block;
	color: white;
    text-decoration: none;  
	font: 10px Opensans;
}


.header H1{
   width: 100%;
   text-align: center;
   font: 57px Opensansl;
   color: white;
   display: block;
   margin-top: 150px;
   height: 140px;
}


.header H1{
   width: 100%;
   text-align: center;
   font: 57px Opensansl;
   color: white;
   display: block;
   margin-top: 150px;
   height: 140px;
}



.button_reg{
	position: relative;
    display: table;
	padding: 19px 35px 19px 35px;
	font: 17px Opensans;
	color: white;
	border: 3px solid #dedfe1;
	cursor: pointer;
 	margin: 0 auto;
	-moz-border-radius: 40px;
  	-webkit-border-radius: 40px;
  	-khtml-border-radius:40px;
   	border-radius: 40px;
	text-align:center;
}


.button_reg:hover{
	border: 3px solid #f1d517;
	color:#f1d517;
}




.button5{
    float: left;
	text-align: center;
	position: relative;
    display: block;
	width: auto;
	white-space: nowrap;
	padding: 15px 27px 15px 27px;
	font: 17px Opensans;
	color: #fdccfd;
	border: 3px solid #fdccfd;
	cursor: pointer;
	-moz-border-radius: 40px;
  	-webkit-border-radius: 40px;
  	-khtml-border-radius:40px;
   	border-radius: 40px;
	margin: 40px 40px 0 0;
	text-decoration: none;
}





.button5:hover{
	border: 3px solid #f1d517;
	color:#f1d517;
}


.button6{
    float: left;
	text-align: center;
	position: relative;
    display: block;
	width: 120px;
	padding: 15px 27px 15px 27px;
	font: 17px Opensans;
	color: #c3eaff;
	border: 3px solid #c3eaff;
	cursor: pointer;
	text-decoration: none;
	box-sizing: border-box;
	-moz-border-radius: 40px;
  	-webkit-border-radius: 40px;
  	-khtml-border-radius:40px;
   	border-radius: 40px;
	margin: 40px 40px 0 0;
}


.button6:hover{
	border: 3px solid #f1d517;
	color:#f1d517;
}


.button1{
	position: relative;
    display: block;
    padding: 8px 24px  9px 24px;
    display: table;
    color: white;
    float: left;
    font:13px Opensans;
    text-decoration: none;
    margin: 12px 10px 0 20px;
    border: 2px solid #dedfe1;
	cursor: pointer;
	-moz-border-radius: 40px;
  	-webkit-border-radius: 40px;
  	-khtml-border-radius:40px;
   	border-radius: 40px;
}

.button1:hover{
	border: 2px solid #f1d517;
	color:#f1d517;
}
 
#s-m-t-tooltip{
 position:absolute; 
 max-width:300px; 
 padding:8px 10px 10px 10px; 
 background: black;
 z-index:99; 
 display:inline-block; 
 font-family:Verdana; 
 font-size:11px; 
 line-height:16px;
 color:white; 
 -moz-border-radius:5px; 
 -khtml-border-radius:5px; 
 -webkit-border-radius:5px; 
 border-radius:5px;
}


.loading3{
    display: none;
  	width: 44px;
	height: 10px;
	float: left;
	background:  url(../img/loading3.gif)   no-repeat;
    margin-top: 25px;
}


/* News Section with iframe */
.news-featured::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 100%
  );
  z-index: 3;
  animation: shimmerEffect 3s ease-in-out infinite;
}

/* Floating elements */
.news::after {
  content: '✦';
  position: absolute;
  top: 20%;
  right: 10%;
  font-size: 20px;
  color: rgba(6, 182, 212, 0.3);
  animation: floatingOrbs 8s ease-in-out infinite;
}

.news-layout::before {
  content: '◆';
  position: absolute;
  bottom: 10%;
  left: 5%;
  font-size: 16px;
  color: rgba(217, 70, 239, 0.4);
  animation: floatingOrbs 6s ease-in-out infinite reverse;
}

/* News Controls */
.news-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding: 0 20px;
  animation: slideInUp 1s ease-out 0.5s both;
}

.speed-controls {
  display: flex;
  gap: 15px;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px;
  border-radius: 25px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.speed-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font: 11px Opensans;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.speed-btn:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
}

.speed-btn.active {
  color: white;
  background: linear-gradient(135deg, #06b6d4, #d946ef);
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.view-all-btn {
  background: rgba(6, 182, 212, 0.2);
  border: 1px solid rgba(6, 182, 212, 0.4);
  border-radius: 25px;
  padding: 12px 24px;
  font: 12px Opensans;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.view-all-btn:hover {
  background: rgba(6, 182, 212, 0.3);
  transform: translateY(-2px);
}

.btn-icon {
  transition: transform 0.3s ease;
}

.view-all-btn:hover .btn-icon {
  transform: translateX(3px);
}

}

 

 

.main_projects {
    background: black;
}

.main_projects .project {
   float: left;
   position: relative;
   cursor: pointer;
}


  
 
 
.main_projects A:hover img{
     opacity: 1; 
    
}

.main_projects  IMG {
   opacity: 0.8; 
}


.main_products {
    background: #212125;
	width: 100%;
	min-height: 500px;
}
 
.main_products h2 {
    color: white;
	display: block;
	width: 100%;
	text-align: center;
	font: 24px Opensans;
	padding-top: 57px;
}

.main_products .product {
    width: 20%;
 	float: left;
	margin-top: 60px;
	margin-bottom: 50px;
	color: white;
	text-align: center;
	text-decoration: none;
	font-size: 16px;
 }

.main_products .product IMG {
   display: block;
   margin: 0 auto;
   margin-bottom: 12px;
 }



 

.contact{
	float: left;
	color: white;
	width: 33%;
	margin-top: 100px;
} 


.contact .city{
	font: 27px Opensansl;
	width: 280px;
	margin: 0 auto;
} 

.contact .phone{
	font: 27px Opensansl;
	width: 280px;
	margin: 0 auto;
} 


.office{
    background: #715bb7; 
	width: 100%;
	padding-bottom: 100px;
	padding-top:40px;
} 


.office  H2{
    color: white;
	display: block;
	width: 100%;
	text-align: center;
	font: 24px Opensans;
	padding-bottom: 40px;
} 

.office  .text{
    color: white;
	width: 900px;
	margin: 0 auto;
	line-height: 25px;
	padding-bottom: 15px;
} 



.office .map{
	width: 907px;
	margin: 0 auto;
	position: relative;
} 


.office .map_text1{
   position: absolute;
   left: 22px;
   top: 17px;
   color: white;
   font: 12px Opensans;
} 

.office .map_text2{
   position: absolute;
   left: 22px;
   top: 49px;
   color: white;
   font: 12px Opensans;
} 

.office .map_text3{
   position: absolute;
   left: 22px;
   top: 82px;
   color: white;
   font: 12px Opensans;
} 

.office .map_text4{
   position: absolute;
   left: 311px;
   top: 84px;
   color: white;
   font: 12px Opensans;
} 

.project_logo{
   width: 400px;
   margin: 0 auto;
   margin-top: 120px;
   text-align: center;
}

.project_name{
   width: 100%;
   text-align:center;
   margin-top: 60px;
   font: 39px Opensansl;
   color: white;
}

.project_name2{
   width: 100%;
   text-align:center;
   font: 17px Opensans;
   color: black;
}

.project_page{
   width: 100%;
   background: #edeef2;
   min-height: 300px;
   padding-top: 40px;
}

.project_site{
   width: 100%;
   background: #333333;
   min-height: 400px;
   padding-top: 40px;
}


.project_site_link{
   display: block;
   width:300px;
   margin: 0 auto;
}


.project_site_icon{
   width:100px;
   background:url(../img/cool.png) 0 0 no-repeat;
   height: 100px;
   margin: 0 auto;
   display: block;
   margin-top: 90px;
}


.project_site_a{
   display: block;
   width:300px;
   color: white;
   text-align: center;
   font: 25px Opensans;
   margin-top: 20px;
   text-decoration: none;
}

.project_site_link:hover A{
   color: #f1d517;
   background-position: 0 -200px;
}



.prev{
   float: left;
   margin:90px 0 0 50px;
}

.prev_img{
   float: left;
   background: url(../img/prev.png) no-repeat;
   width: 10px;
   height: 35px;
   display: block;
}

.prev_a{
   float: left;
   display: block;
   color: white;
   text-decoration: none;
   font: 13px Opensans;
   margin: 8px 0 0 10px;
}


.next{
   float: right;
   margin:90px 70px 0 0;
}



.next_img{
   float: left;
   background: url(../img/next.png) no-repeat;
   width: 35px;
   height: 35px;
   display: block;
}

.next_a{
   float: left;
   display: block;
   color: white;
   text-decoration: none;
   font: 13px Opensans;
   margin: 7px 10px 0 0;
}


.next:hover a{
   color: #f1d517;
   background-position: 0 -65px;
}

.prev:hover a{
   color: #f1d517;
   background-position: 0 -65px;
}




.project_screen{
   width: 985px;
   margin: 0 auto;
}

.project_screen .safaritop{
   width: 985px;
   background: url(../img/safaritop.png) no-repeat;
   height: 53px;
}

.project_screen .safaricenter{
   width: 985px;
   background: url(../img/safaricenter.png)   repeat-y;
}

.project_screen .safaricenter IMG{
   display: block;
   margin-left: 27px;
}


.social{
   width: 100%;
   background: #37373f; 
   padding-bottom: 57px;
}


.social .groups{
   width: 100%;
   background: #37373f; 
   height: 120px;
   top: 100px;
   left: 0;
   position: absolute;
}


.social .groups_center {
   width: 220px;
   margin: 0 auto;
   margin-top: 30px;
}


.social .groups_center A {
   display: block;
   float: left;
   width: 45px;
   height: 45px;
   margin-left: 20px;
}


.social .groups_center .vk {
   background: url(../img/vk.png) no-repeat;
}

.social .groups_center .fb {
   background: url(../img/fb.png) no-repeat;
}

.social .groups_center .tw {
   background: url(../img/tw.png) no-repeat;
}


.social h2 {
    color: white;
	display: block;
	width: 100%;
	text-align: center;
	font: 24px Opensans;
	padding-top: 57px;
	padding-bottom: 74px;

}



.about_text{
    width: 100%;
	padding-bottom: 30px;
	  background: #212125;
}

.about_text .text{
	  color: white;
	margin-top: 40px;
    margin-bottom: 40px;
	width: 78%;
	line-height: 27px;
	float: left;
}


.about_text .cert_block{
    float:right;
	margin-right:20px;
	  color: white;
}


.about_text .cert{
	margin-top: 40px;
    margin-bottom: 40px;
	width: 18%;
	height: 261px;
	background: url(../img/cert.jpg) no-repeat;
	cursor: pointer;
	 border: 1px solid #4e4e4e;
	width: 184px; 
	height:262px;
}



.about_text  H2{
 color: white;
	  background: #212125;
	
   width: 100%;
   text-align: center;
   font: 29px Opensansl;
   display: block;
  padding-top: 40px;
}


.about_cms{
    width: 100%;
	background: #715bb7;
	padding-top: 20px;
}

.about_cms .text{
    margin: 0 auto;
	margin-top: 40px;
    padding-bottom: 40px;
	width: 90%;
	line-height: 27px;
	color: white;
}

.about_cms  H3{
   width: 100%;
   text-align: center;
   font: 29px Opensansl;
   display: block;
   margin-top: 40px;
   color: white;
}

.about_cms  .cms_img{
    margin: 0 auto;
	margin-top: 20px;
    width: 848px;
	height: 481px;
	background-image: url(../img/about-cms.png);
     background-size: cover;
}


 
.about_team{
    width: 100%;
	background: #2f3341;
	padding-top: 20px;
	padding-bottom: 30px;

}


.about_team  H4{
   width: 100%;
   text-align: center;
   font: 29px Opensansl;
   display: block;
   margin-top: 40px;
   color: white;
}



.about_team  .user{
   width: 20%;
   float: left;
   color: white;
   height: 221px;
   margin-top: 30px;
   position: relative;
}



.about_team  .name{
   width: 100%;
   text-align:center;
   margin-top: 5px;
   font-size: 16px;
}

.about_team  .type{
   width: 100%;
   text-align:center;
   color: #94969d;
   margin-top: 5px;
}


.about_team  .photobg{
   width: 213px;
   height: 151px;
   background: url(../img/photo_bg.png)  no-repeat;
   position: absolute;
   left: 50%;
   margin-left: -105px;
   top: 0;

}

.about_team  .photo{
   width: 170px;
   height: 151px;
   margin: 0 auto;
}


.about_reviews{
    width: 100%;
	padding-bottom: 30px;
}


.about_reviews .refresh{
    width: 30px;
	height: 30px;
    background: url(../img/reload.png)  no-repeat;
    margin: 0 auto;
    display: block;
	margin-top: 30px;
	cursor: pointer;
}


.about_reviews  H3{
   width: 100%;
   text-align: center;
   font: 29px Opensansl;
   display: block;
   margin-top: 40px;
}

.about_reviews  .review{
   width: 60%;
   font:18px Opensansl;
   margin: 0 auto;
   margin-top: 20px;
   line-height: 28px;
   color: black;

}

.about_reviews  .user{
   width: 200px;
   color: white;
   height: 221px;
   margin: 0 auto;
   margin-top: 30px;
   position: relative;
}



.about_reviews .name{
   width: 100%;
   text-align:center;
   margin-top: 5px;
   font: 16px Opensans;
   color: black;

}

.about_reviews  .type{
   width: 100%;
   text-align:center;
   color: #94969d;
   margin-top: 5px;
   font-size: 15px;

}


.about_reviews  .photobg{
   width: 213px;
   height: 141px;
   background: url(../img/photo_bg2.png)  no-repeat;
   position: absolute;
   left: 50%;
   margin-left: -105px;
   top: 0;

}

.about_reviews  .photo{
   width: 170px;
   height: 141px;
   background: url(../3.png)  no-repeat;
   margin: 0 auto;
}




.product_img{
  background: url(../1.png) no-repeat;
  width: 300px;
  height:450px;
  margin: 70px 0 0 140px;
  float: left;
}

.product_img.product-box {
  background: none;
  display: block;
}

.product_img.product-box > .product-img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
}


.product_right{
   width: 55%;
   float: left;
   color: white;
   margin: 80px 0 0 70px;
}

.product_right .adminlogin{
  width: 195px;
  text-align:center;
  margin-top: 20px;
}

.product_right h2{
     font: 42px Opensansl;
}

.product_right .text{
	 line-height: 27px;
     margin: 20px 0 0 0;
}

.product_sites {
  background: #5f4d9c;
  width: 100%;
  padding-bottom: 30px;
}

.product_sites h2 {
    color: white;
	display: block;
	width: 100%;
	text-align: center;
	font: 24px Opensans;
	padding-top: 44px;
}

.product_sites  .sites {
    display: table;
	margin: 0 auto;
	margin-top: 44px;
}


.product_sites  .site {
    width: 375px;
	height: 256px;
	display: block;
	float: left;
	margin-right:2px;
}



.ok1{
    width: 24px;
	height: 24px;
    background: url(../img/ok4.png) no-repeat;
	display: block;
	margin: 0 auto;
}

.ok2{
    width: 24px;
	height: 24px;
    background: url(../img/ok4.png) no-repeat;
	display: block;
	margin: 0 auto;
}

.ok3{
    width: 24px;
	height: 24px;
    background: url(../img/ok4.png) no-repeat;
	display: block;
	margin: 0 auto;
}


.ok4{
    width: 24px;
	height: 24px;
    background: url(../img/ok4.png) no-repeat;
	display: block;
	margin: 0 auto;
}

.ok5{
    width: 24px;
	height: 24px;
    background: url(../img/ok5.png) no-repeat;
	display: block;
	margin: 0 auto;
}

.word{
    width: 24px;
	height: 24px;
    background: url(../img/word.png) no-repeat;
	display: block;
	margin: 0 auto;
	cursor: pointer;
}

.buy{
    width: 24px;
	height: 24px;
    background: url(../img/buy.png) no-repeat;
	display: block;
	margin: 0 auto;
	cursor: pointer;
}

.demo{
  background: #2f2f2f;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 50px;
  height:420px;
  overflow: hidden;
}

.demo H2{
    color: white;
	display: block;
	width: 100%;
	text-align: center;
	font: 24px Opensans;
	padding-top: 10px;
	padding-bottom: 20px;
}


.services{
  background: #232323;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 0px;
}

.services .service_product{
  padding-top: 20px;
  padding-bottom: 30px;
  padding-left: 60px;
  text-align: left;
  margin-left: 30px;   
 }


.services H2{
    color: white;
	display: block;
	width: 100%;
	text-align: center;
	font: 24px Opensans;
	padding-top: 10px;
	padding-bottom: 40px;
}



.table{
  width: 900px;
  margin: 0 auto;
  border-spacing: 0;
  border-collapse: separate;
}


.table TD{
  text-align: center;
  color: white;
}


.table TD{
  padding: 10px;
}


.table .head TD{
 background: #2f2f2f;
}

.table  .left{
   text-align: left;
  // background: #2f2f2f;
	
	  border-right: 1px solid  #2f2f2f;

	   border-bottom: 1px solid #2f2f2f; 
}

.table    .color1{
   background: #382e58;
   border-right: 1px solid #51447B;
   border-top: 1px solid #51447B;
}

.table .head .color1{
   background: #5f4d9c;
}

.table    .color2{
   background: #594900;
   border-right: 1px solid #806904;
   border-top: 1px solid #7B6604;
}

.table .head .color2{
   background: #cfac08;
}


.footer{
  background: black;
  min-height: 250px;
  width: 100%;
  padding-top: 30px;
  border-top: none;
  border-bottom: none;
}



.footer .block{
    width: 15%;
	float: left;
	margin: 0px 0  50px 40px;
}

.footer .name{
    font: 17px Opensans;
	color: #b5b5b5;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.footer .item, .footer .item A{
    font: 14px Opensans;
	color: #7e7e7e;
	text-decoration: none;
}

.footer .item{
    margin: 8px 0 0 0px;
}

.footer .item A:hover{
	color: white;
}

.mobile_trading{
	position: relative;
	width: 100%;
    min-height: 500px;
    background: #0a0a0f;
	padding: 90px 0 80px;
	overflow: hidden;
}

.mobile_trading  H3{
   position: absolute;
   left: 25%;
   top: 50px;
   font: 28px Opensans;
   display: block;
   color: white;
	
}


.mobile_img{
	width: 615px;
	height: 514px;
	margin: 0 auto;
	background:  url(../img/mobile.png) 0 0 no-repeat; 
}



.hosting {
  background: #0d0e14; /* как у футера — иначе стык #0f1016 vs #0d0e14 даёт «серую полосу» */
  width: 100%;
  min-height: 400px;
  padding: 100px 0 32px;
  position: relative;
  overflow: hidden; /* обрезать ::before (фиолетовое свечение), иначе «линии» у нижнего края */
  border-bottom: none;
}

/* Add a subtle glow behind the hosting card */
.hosting::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hosting .center {
  position: relative;
  z-index: 1;
}

.hosting-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 1px; /* For the gradient border shell */
  border-radius: 32px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.05) 40%,
    rgba(255, 255, 255, 0.02) 60%,
    rgba(255, 255, 255, 0.1) 100%
  );
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.hosting-content {
  background: rgba(20, 20, 25, 0.8);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 31px;
  padding: 60px 40px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hosting h2 {
  color: white;
  font: 700 32px OpenSans, sans-serif;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.hosting h3 {
  color: #9ca3af;
  font: 400 18px OpenSans, sans-serif;
  margin-bottom: 40px;
}

.hosting-price {
  display: inline-block;
  font-size: 48px;
  font-weight: 800;
  color: white;
  margin: 20px 0;
  background: linear-gradient(to right, #818cf8, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hosting-price span {
  font-size: 20px;
  font-weight: 400;
  color: #9ca3af;
  -webkit-text-fill-color: #9ca3af;
}

.hosting .server {
  width: 100%;
  max-width: 500px;
  height: 140px;
  margin: 30px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.server-icon-glass {
  width: 100px;
  height: 100px;
  position: relative;
  padding: 1px;
  border-radius: 24px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.08) 35%,
    rgba(255, 255, 255, 0.03) 55%,
    rgba(255, 255, 255, 0.12) 100%
  );
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1) inset,
    0 20px 50px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(99, 102, 241, 0.3);
  transition: all 0.4s ease;
}

.server-icon-glass::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 23px;
  background: rgba(15, 16, 22, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 0;
}

.server-icon-glass svg {
  position: relative;
  z-index: 1;
  width: 60px;
  height: 60px;
  color: #fff;
  filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.5));
}

.hosting-card:hover .server-icon-glass {
  transform: scale(1.05);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.15) inset,
    0 25px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(99, 102, 241, 0.5);
}

.hosting-card:hover .server-icon-glass svg {
  filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.8));
}

/* Pulse animation for server icon */
.server-icon-glass::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.4), rgba(217, 70, 239, 0.4));
  opacity: 0;
  z-index: -1;
  animation: serverPulse 2s ease-out infinite;
}

@keyframes serverPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* Server Rack - realistic mini server */
.server-rack {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 22px 16px;
  border-radius: 16px;
  background: rgba(15, 16, 28, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(120, 130, 255, 0.18);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 12px 28px rgba(0, 0, 0, 0.45),
    0 0 24px rgba(99, 102, 241, 0.18),
    0 0 48px rgba(99, 102, 241, 0.06);
  width: 320px;
  transition: all 0.4s ease;
}

.hosting-card:hover .server-rack {
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 14px 32px rgba(0, 0, 0, 0.55),
    0 0 36px rgba(99, 102, 241, 0.3);
  transform: scale(1.02);
}

.rack-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: rgba(139, 140, 255, 0.9);
  text-transform: uppercase;
  margin-bottom: 6px;
  padding-left: 2px;
  text-shadow: 0 0 12px rgba(99, 102, 241, 0.4);
}

.rack-unit {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.rack-unit.active {
  background: linear-gradient(90deg, rgba(99, 102, 241, 0.12), rgba(217, 70, 239, 0.08));
  border-color: rgba(99, 102, 241, 0.22);
}

.rack-leds {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.rack-led {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

.rack-led.on.blue {
  background: #818cf8;
  box-shadow: 0 0 8px rgba(129, 140, 248, 0.8), 0 0 16px rgba(99, 102, 241, 0.3);
}

.rack-led.on.green {
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.7), 0 0 16px rgba(74, 222, 128, 0.25);
}

.rack-led.blink.amber {
  background: #fbbf24;
  box-shadow: 0 0 6px rgba(251, 191, 36, 0.6), 0 0 14px rgba(251, 191, 36, 0.2);
  animation: ledBlink 1.2s ease-in-out infinite;
}

.rack-unit:nth-child(3) .rack-led.blink.amber {
  animation-delay: 0.4s;
}

.rack-unit:nth-child(4) .rack-led.blink.amber {
  animation-delay: 0.8s;
}

@keyframes ledBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.15; }
}

.rack-bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rack-bars span {
  height: 4px;
  border-radius: 3px;
  background: linear-gradient(90deg, #818cf8, #c084fc);
  opacity: 0.85;
  transition: width 1.5s ease;
  box-shadow: 0 0 6px rgba(129, 140, 248, 0.25);
}

.hosting-card:hover .rack-bars span {
  opacity: 1;
  box-shadow: 0 0 10px rgba(129, 140, 248, 0.4);
}

.rack-stat {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
  white-space: nowrap;
  min-width: 46px;
  text-align: right;
}

.rack-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
  padding: 8px 4px 2px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.rack-ping {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #4ade80;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(74, 222, 128, 0.3);
}

.rack-ping-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.7), 0 0 20px rgba(74, 222, 128, 0.3);
  animation: pingPulse 2s ease infinite;
}

@keyframes pingPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.rack-uptime {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

/* Alternative server icon v2 - Cloud network */
.server-icon-glass.server-v2 {
  border-radius: 50%;
  background: linear-gradient(
    145deg,
    rgba(99, 102, 241, 0.25) 0%,
    rgba(139, 92, 246, 0.15) 50%,
    rgba(217, 70, 239, 0.25) 100%
  );
}

.server-icon-glass.server-v2::before {
  border-radius: 50%;
  background: rgba(15, 16, 22, 0.5);
}

.server-icon-glass.server-v2 svg {
  width: 70px;
  height: 70px;
  filter: drop-shadow(0 0 15px rgba(99, 102, 241, 0.6));
}

.server-icon-glass.server-v2::after {
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.5) 0%, rgba(217, 70, 239, 0.3) 50%, transparent 70%);
  animation: serverPulseV2 3s ease-out infinite;
}

@keyframes serverPulseV2 {
  0%, 100% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.2;
  }
}

.hosting-btn,
.quotes-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: linear-gradient(90deg, #6366f1 0%, #d946ef 100%);
  border-radius: 100px;
  color: white;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  margin-top: 20px;
  box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
  transition: all 0.3s ease;
}

.hosting-btn:hover,
.quotes-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(99, 102, 241, 0.5);
  filter: brightness(1.1);
}

.home-promo {
  background: #0d0e14;
  padding: 8px 0 56px;
  position: relative;
}
.home-promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.home-promo-card {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 1px;
  border-radius: 32px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.05) 40%,
    rgba(255, 255, 255, 0.02) 60%,
    rgba(255, 255, 255, 0.1) 100%
  );
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.home-promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(99, 102, 241, 0.22);
}
.home-promo-inner {
  height: 100%;
  background: rgba(20, 20, 25, 0.8);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 31px;
  padding: 36px 28px 32px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-sizing: border-box;
}
.home-promo-ico {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 24px rgba(99, 102, 241, 0.18);
}
.home-promo-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #c4b5fd;
  margin-bottom: 10px;
}
.home-promo-inner h2 {
  color: #fff;
  font: 700 26px OpenSans, sans-serif;
  margin: 0 0 10px;
  letter-spacing: -0.4px;
  text-transform: uppercase;
}
.home-promo-accent {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 12px;
  background: linear-gradient(90deg, #818cf8, #c084fc, #fbbf24);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.home-promo-inner p {
  margin: 0;
  color: #9ca3af;
  font: 400 15px OpenSans, sans-serif;
  line-height: 1.5;
}
.home-promo-card .hosting-btn {
  margin-top: 22px;
}
.quotes-actions {
  text-align: center;
  margin-top: 28px;
}
.bonus{
  text-decoration:line-through;
}

.adress{
    color: white;
	font: 16px Opensans;
	margin:70px 0 0px 80px;
}

.share{  	 
   zoom:0.8;
   margin-top:20px;
}
.share_item{  	 
   float: left;
   margin-right:20px;
}

.currency_title{
	float: left;
    color:white;
    font: 18px Opensansb;
	width:200px;
	margin-top: 10px;
	
	
	background: url('../img/arrow_quotes.svg') 90px 7px  no-repeat;
 
}



.currency_block .currency{
	float: left;
   width:120px;
 
	color:white;
	padding: 0px 0px 50px 48px;
   background: url('../img/icon/eurusd.png') 0px 0px  no-repeat;
}

.currency_block	.currency_course{
	color:rgb(5,198,5);
}
 



@media (max-width: 1200px) { 	
 html {
	  background-color: #0d0e14 !important;
 }
 body{
	  min-width: 320px !important;
	 width:100% !important;
	 background-color: #0d0e14 !important;
	 -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
 }
  
 .logo{
   float: auto !important;		
   clear: both !important;	
   margin-left:5%;
 
 }

.center{
  min-width: 300px !important;
  width:98% !important;
  margin: 0 auto;
 }

	
.currency_block .currency_title{
	 display: none;
}
	
.currency_block .currency {
	display: inline-block;
	 	float: auto !important;
    width:38% !important;
}
	

		
 .menu{
   float: auto !important;		
   clear: both !important;	
	  display: none;
 }
	
 /* старый моб. отступ для прочих страниц; на главной hero — как десктоп, чтобы совпадало с old2 */
 #slides{
   width:100% !important;
	 font-size:40px !important;
	 margin-top: 220px;
  }
  body.page-home .header #slides {
    margin-top: 150px;
    width: 100% !important;
    font-size: clamp(24px, 5vw, 40px) !important;
  }
.advantage{
    width:100% !important;
		padding-bottom:80px;
 }
	
.advantage .block {
	float: auto !important;		
   clear: both !important;
	width:90% !important;
	margin-left:5%;
		margin-top:5%;
	margin-bottom:100px;
	opacity:1;
}
	
.main_products{
	float: auto !important;		
   clear: both !important;
  width:100% !important;
		padding-bottom:80px;
	
}
.main_products .product{
	float: auto !important;		
    clear: both !important;
	width:70% !important;
	margin-left:0;
	margin-top:5%;
		opacity:1;
}
	
.footer{
	
   float: auto !important;		
   clear: both !important;
   width:100% !important;
}
	.footer .block{
	
	float: auto !important;		
   clear: both !important;
	width:90% !important;
	margin-left:5%;
	margin-top:5%;
}
.window{
  width:100% !important;
  top:5% !important;
  left: 0! important;
  margin:0 !important;
 }	
.window .td1{
  width:30% !important;

 }		
.window .td2{
  width:60% !important;

 }		
.window .form{
  width:100% !important;

 }		
	.window .td2{
  width:50% !important;

 }		
	
 .tel{
    display: none !important;
 }	
    .social, .paysystems, .main_projects{
    display: none;
 }


 body:not(.page-home) .platform{
	 width:100% !important;
	 left:0 !important;
	 margin-left:0  !important;
	 background-size: 160% !important;
	
	  border-radius:12px;
	   
 }
	
  .services{
	 width:100% !important;
	 left:0 !important;
	 margin-left:0  !important;   
 }
.services .table{
	 width:90% !important;

	 margin-left:5%  !important;   
 }
	
.about_text .text{
      padding-left:10%;
	 width:80%;
	 float:none !important;
	clear: both;
	}
	
	
	
.about_text .cert_block{
    display: table;
	float:none !important;
	clear: both;
	margin:0 auto;
}
	
	.cms_img{
         width: 80% !important;
		 max-width:80%  !important;
	 
	}
	.h1_contact{
		display: none !important;
	}
	
	.contact{
	    float:none !important;
	    clear: both !important;
		width:80% !important;
		margin-top:15%;
		 margin-left:5% !important;
	}
	.adress{
	     margin-left:9% !important;
	}
	
	.product_right{
		width:90% !important;
		margin-left:5%;
		margin-top:15%;
	}
	
	.prev, .next{
		margin:0;
		padding:0;
		margin-left:5%;
		margin-top:25% !important;
	}
	
	 .center .platform{
	   top:140px !important;
	   
    }
	
}
	
/* ===== header style #3 ===== */
/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
	display: none;
}
.ui-helper-hidden-accessible {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
.ui-helper-reset {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	line-height: 1.3;
	text-decoration: none;
	font-size: 100%;
	list-style: none;
}
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
	content: "";
	display: table;
	border-collapse: collapse;
}
.ui-helper-clearfix:after {
	clear: both;
}
.ui-helper-clearfix {
	min-height: 0; /* support: IE7 */
}
.ui-helper-zfix {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	opacity: 0;
	filter:Alpha(Opacity=0); /* support: IE8 */
}

.ui-front {
	z-index: 100;
}


/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
	cursor: default !important;
}


/* Icons
----------------------------------*/

/* states and images */
.ui-icon {
	display: block;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
}


/* Misc visuals
----------------------------------*/

/* Overlays */
.ui-widget-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.ui-accordion .ui-accordion-header {
	display: block;
	cursor: pointer;
	position: relative;
	margin: 2px 0 0 0;
	padding: .5em .5em .5em .7em;
	min-height: 0; /* support: IE7 */
	font-size: 100%;
}
.ui-accordion .ui-accordion-icons {
	padding-left: 2.2em;
}
.ui-accordion .ui-accordion-icons .ui-accordion-icons {
	padding-left: 2.2em;
}
.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
	position: absolute;
	left: .5em;
	top: 50%;
	margin-top: -8px;
}
.ui-accordion .ui-accordion-content {
	padding: 1em 2.2em;
	border-top: 0;
	overflow: auto;
}
.ui-autocomplete {
	position: absolute;
	top: 0;
	left: 0;
	cursor: default;
}
.ui-button {
	display: inline-block;
	position: relative;
	padding: 0;
	line-height: normal;
	margin-right: .1em;
	cursor: pointer;
	vertical-align: middle;
	text-align: center;
	overflow: visible; /* removes extra width in IE */
}
.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
	text-decoration: none;
}
/* to make room for the icon, a width needs to be set here */
.ui-button-icon-only {
	width: 2.2em;
}
/* button elements seem to need a little more width */
button.ui-button-icon-only {
	width: 2.4em;
}
.ui-button-icons-only {
	width: 3.4em;
}
button.ui-button-icons-only {
	width: 3.7em;
}

/* button text element */
.ui-button .ui-button-text {
	display: block;
	line-height: normal;
}
.ui-button-text-only .ui-button-text {
	padding: .4em 1em;
}
.ui-button-icon-only .ui-button-text,
.ui-button-icons-only .ui-button-text {
	padding: .4em;
	text-indent: -9999999px;
}
.ui-button-text-icon-primary .ui-button-text,
.ui-button-text-icons .ui-button-text {
	padding: .4em 1em .4em 2.1em;
}
.ui-button-text-icon-secondary .ui-button-text,
.ui-button-text-icons .ui-button-text {
	padding: .4em 2.1em .4em 1em;
}
.ui-button-text-icons .ui-button-text {
	padding-left: 2.1em;
	padding-right: 2.1em;
}
/* no icon support for input elements, provide padding by default */
input.ui-button {
	padding: .4em 1em;
}

/* button icon element(s) */
.ui-button-icon-only .ui-icon,
.ui-button-text-icon-primary .ui-icon,
.ui-button-text-icon-secondary .ui-icon,
.ui-button-text-icons .ui-icon,
.ui-button-icons-only .ui-icon {
	position: absolute;
	top: 50%;
	margin-top: -8px;
}
.ui-button-icon-only .ui-icon {
	left: 50%;
	margin-left: -8px;
}
.ui-button-text-icon-primary .ui-button-icon-primary,
.ui-button-text-icons .ui-button-icon-primary,
.ui-button-icons-only .ui-button-icon-primary {
	left: .5em;
}
.ui-button-text-icon-secondary .ui-button-icon-secondary,
.ui-button-text-icons .ui-button-icon-secondary,
.ui-button-icons-only .ui-button-icon-secondary {
	right: .5em;
}

/* button sets */
.ui-buttonset {
	margin-right: 7px;
}
.ui-buttonset .ui-button {
	margin-left: 0;
	margin-right: -.3em;
}

/* workarounds */
/* reset extra padding in Firefox, see h5bp.com/l */
input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
	border: 0;
	padding: 0;
}
.ui-datepicker {
	width: 17em;
	padding: .2em .2em 0;
	display: none;
}
.ui-datepicker .ui-datepicker-header {
	position: relative;
	padding: .2em 0;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
	position: absolute;
	top: 2px;
	width: 1.8em;
	height: 1.8em;
}
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
	top: 1px;
}
.ui-datepicker .ui-datepicker-prev {
	left: 2px;
}
.ui-datepicker .ui-datepicker-next {
	right: 2px;
}
.ui-datepicker .ui-datepicker-prev-hover {
	left: 1px;
}
.ui-datepicker .ui-datepicker-next-hover {
	right: 1px;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
	display: block;
	position: absolute;
	left: 50%;
	margin-left: -8px;
	top: 50%;
	margin-top: -8px;
}
.ui-datepicker .ui-datepicker-title {
	margin: 0 2.3em;
	line-height: 1.8em;
	text-align: center;
}
.ui-datepicker .ui-datepicker-title select {
	font-size: 1em;
	margin: 1px 0;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
	width: 45%;
}
.ui-datepicker table {
	width: 100%;
	font-size: .9em;
	border-collapse: collapse;
	margin: 0 0 .4em;
}
.ui-datepicker th {
	padding: .7em .3em;
	text-align: center;
	font-weight: bold;
	border: 0;
}
.ui-datepicker td {
	border: 0;
	padding: 1px;
}
.ui-datepicker td span,
.ui-datepicker td a {
	display: block;
	padding: .2em;
	text-align: right;
	text-decoration: none;
}
.ui-datepicker .ui-datepicker-buttonpane {
	background-image: none;
	margin: .7em 0 0 0;
	padding: 0 .2em;
	border-left: 0;
	border-right: 0;
	border-bottom: 0;
}
.ui-datepicker .ui-datepicker-buttonpane button {
	float: right;
	margin: .5em .2em .4em;
	cursor: pointer;
	padding: .2em .6em .3em .6em;
	width: auto;
	overflow: visible;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
	float: left;
}

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
	width: auto;
}
.ui-datepicker-multi .ui-datepicker-group {
	float: left;
}
.ui-datepicker-multi .ui-datepicker-group table {
	width: 95%;
	margin: 0 auto .4em;
}
.ui-datepicker-multi-2 .ui-datepicker-group {
	width: 50%;
}
.ui-datepicker-multi-3 .ui-datepicker-group {
	width: 33.3%;
}
.ui-datepicker-multi-4 .ui-datepicker-group {
	width: 25%;
}
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
	border-left-width: 0;
}
.ui-datepicker-multi .ui-datepicker-buttonpane {
	clear: left;
}
.ui-datepicker-row-break {
	clear: both;
	width: 100%;
	font-size: 0;
}

/* RTL support */
.ui-datepicker-rtl {
	direction: rtl;
}
.ui-datepicker-rtl .ui-datepicker-prev {
	right: 2px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next {
	left: 2px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-prev:hover {
	right: 1px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next:hover {
	left: 1px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane {
	clear: right;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
	float: left;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
	float: right;
}
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
	border-right-width: 0;
	border-left-width: 1px;
}
.ui-dialog {
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	padding: .2em;
	outline: 0;
}
.ui-dialog .ui-dialog-titlebar {
	padding: .4em 1em;
	position: relative;
}
.ui-dialog .ui-dialog-title {
	float: left;
	margin: .1em 0;
	white-space: nowrap;
	width: 90%;
	overflow: hidden;
	text-overflow: ellipsis;
}
.ui-dialog .ui-dialog-titlebar-close {
	position: absolute;
	right: .3em;
	top: 50%;
	width: 20px;
	margin: -10px 0 0 0;
	padding: 1px;
	height: 20px;
}
.ui-dialog .ui-dialog-content {
	position: relative;
	border: 0;
	padding: .5em 1em;
	background: none;
	overflow: auto;
}
.ui-dialog .ui-dialog-buttonpane {
	text-align: left;
	border-width: 1px 0 0 0;
	background-image: none;
	margin-top: .5em;
	padding: .3em 1em .5em .4em;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
	float: right;
}
.ui-dialog .ui-dialog-buttonpane button {
	margin: .5em .4em .5em 0;
	cursor: pointer;
}
.ui-dialog .ui-resizable-se {
	width: 12px;
	height: 12px;
	right: -5px;
	bottom: -5px;
	background-position: 16px 16px;
}
.ui-draggable .ui-dialog-titlebar {
	cursor: move;
}
.ui-draggable-handle {
	-ms-touch-action: none;
	touch-action: none;
}
.ui-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: block;
	outline: none;
}
.ui-menu .ui-menu {
	position: absolute;
}
.ui-menu .ui-menu-item {
	position: relative;
	margin: 0;
	padding: 3px 1em 3px .4em;
	cursor: pointer;
	min-height: 0; /* support: IE7 */
	/* support: IE10, see #8844 */
	list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
}
.ui-menu .ui-menu-divider {
	margin: 5px 0;
	height: 0;
	font-size: 0;
	line-height: 0;
	border-width: 1px 0 0 0;
}
.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
	margin: -1px;
}

/* icon support */
.ui-menu-icons {
	position: relative;
}
.ui-menu-icons .ui-menu-item {
	padding-left: 2em;
}

/* left-aligned */
.ui-menu .ui-icon {
	position: absolute;
	top: 0;
	bottom: 0;
	left: .2em;
	margin: auto 0;
}

/* right-aligned */
.ui-menu .ui-menu-icon {
	left: auto;
	right: 0;
}
.ui-progressbar {
	height: 2em;
	text-align: left;
	overflow: hidden;
}
.ui-progressbar .ui-progressbar-value {
	margin: -1px;
	height: 100%;
}
.ui-progressbar .ui-progressbar-overlay {
	background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
	height: 100%;
	filter: alpha(opacity=25); /* support: IE8 */
	opacity: 0.25;
}
.ui-progressbar-indeterminate .ui-progressbar-value {
	background-image: none;
}
.ui-resizable {
	position: relative;
}
.ui-resizable-handle {
	position: absolute;
	font-size: 0.1px;
	display: block;
	-ms-touch-action: none;
	touch-action: none;
}
.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
	display: none;
}
.ui-resizable-n {
	cursor: n-resize;
	height: 7px;
	width: 100%;
	top: -5px;
	left: 0;
}
.ui-resizable-s {
	cursor: s-resize;
	height: 7px;
	width: 100%;
	bottom: -5px;
	left: 0;
}
.ui-resizable-e {
	cursor: e-resize;
	width: 7px;
	right: -5px;
	top: 0;
	height: 100%;
}
.ui-resizable-w {
	cursor: w-resize;
	width: 7px;
	left: -5px;
	top: 0;
	height: 100%;
}
.ui-resizable-se {
	cursor: se-resize;
	width: 12px;
	height: 12px;
	right: 1px;
	bottom: 1px;
}
.ui-resizable-sw {
	cursor: sw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	bottom: -5px;
}
.ui-resizable-nw {
	cursor: nw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	top: -5px;
}
.ui-resizable-ne {
	cursor: ne-resize;
	width: 9px;
	height: 9px;
	right: -5px;
	top: -5px;
}
.ui-selectable {
	-ms-touch-action: none;
	touch-action: none;
}
.ui-selectable-helper {
	position: absolute;
	z-index: 100;
	border: 1px dotted black;
}
.ui-selectmenu-menu {
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	display: none;
}
.ui-selectmenu-menu .ui-menu {
	overflow: auto;
	/* Support: IE7 */
	overflow-x: hidden;
	padding-bottom: 1px;
}
.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
	font-size: 1em;
	font-weight: bold;
	line-height: 1.5;
	padding: 2px 0.4em;
	margin: 0.5em 0 0 0;
	height: auto;
	border: 0;
}
.ui-selectmenu-open {
	display: block;
}
.ui-selectmenu-button {
	display: inline-block;
	overflow: hidden;
	position: relative;
	text-decoration: none;
	cursor: pointer;
}
.ui-selectmenu-button span.ui-icon {
	right: 0.5em;
	left: auto;
	margin-top: -8px;
	position: absolute;
	top: 50%;
}
.ui-selectmenu-button span.ui-selectmenu-text {
	text-align: left;
	padding: 0.4em 2.1em 0.4em 1em;
	display: block;
	line-height: 1.4;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.ui-slider {
	position: relative;
	text-align: left;
}
.ui-slider .ui-slider-handle {
	position: absolute;
	z-index: 2;
	width: 1.2em;
	height: 1.2em;
	cursor: default;
	-ms-touch-action: none;
	touch-action: none;
}
.ui-slider .ui-slider-range {
	position: absolute;
	z-index: 1;
	font-size: .7em;
	display: block;
	border: 0;
	background-position: 0 0;
}

/* support: IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
	filter: inherit;
}

.ui-slider-horizontal {
	height: .8em;
}
.ui-slider-horizontal .ui-slider-handle {
	top: -.3em;
	margin-left: -.6em;
}
.ui-slider-horizontal .ui-slider-range {
	top: 0;
	height: 100%;
}
.ui-slider-horizontal .ui-slider-range-min {
	left: 0;
}
.ui-slider-horizontal .ui-slider-range-max {
	right: 0;
}

.ui-slider-vertical {
	width: .8em;
	height: 100px;
}
.ui-slider-vertical .ui-slider-handle {
	left: -.3em;
	margin-left: 0;
	margin-bottom: -.6em;
}
.ui-slider-vertical .ui-slider-range {
	left: 0;
	width: 100%;
}
.ui-slider-vertical .ui-slider-range-min {
	bottom: 0;
}
.ui-slider-vertical .ui-slider-range-max {
	top: 0;
}
.ui-sortable-handle {
	-ms-touch-action: none;
	touch-action: none;
}
.ui-spinner {
	position: relative;
	display: inline-block;
	overflow: hidden;
	padding: 0;
	vertical-align: middle;
}
.ui-spinner-input {
	border: none;
	background: none;
	color: inherit;
	padding: 0;
	margin: .2em 0;
	vertical-align: middle;
	margin-left: .4em;
	margin-right: 22px;
}
.ui-spinner-button {
	width: 16px;
	height: 50%;
	font-size: .5em;
	padding: 0;
	margin: 0;
	text-align: center;
	position: absolute;
	cursor: default;
	display: block;
	overflow: hidden;
	right: 0;
}
/* more specificity required here to override default borders */
.ui-spinner a.ui-spinner-button {
	border-top: none;
	border-bottom: none;
	border-right: none;
}
/* vertically center icon */
.ui-spinner .ui-icon {
	position: absolute;
	margin-top: -8px;
	top: 50%;
	left: 0;
}
.ui-spinner-up {
	top: 0;
}
.ui-spinner-down {
	bottom: 0;
}

/* TR overrides */
.ui-spinner .ui-icon-triangle-1-s {
	/* need to fix icons sprite */
	background-position: -65px -16px;
}
.ui-tabs {
	position: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
	padding: .2em;
}
.ui-tabs .ui-tabs-nav {
	margin: 0;
	padding: .2em .2em 0;
}
.ui-tabs .ui-tabs-nav li {
	list-style: none;
	float: left;
	position: relative;
	top: 0;
	margin: 1px .2em 0 0;
	border-bottom-width: 0;
	padding: 0;
	white-space: nowrap;
}
.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
	float: left;
	padding: .5em 1em;
	text-decoration: none;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active {
	margin-bottom: -1px;
	padding-bottom: 1px;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
	cursor: text;
}
.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
	cursor: pointer;
}
.ui-tabs .ui-tabs-panel {
	display: block;
	border-width: 0;
	padding: 1em 1.4em;
	background: none;
}
.ui-tooltip {
	padding: 8px;
	position: absolute;
	z-index: 9999;
	max-width: 300px;
}
body .ui-tooltip {
	border-width: 2px;
}

/* Component containers
----------------------------------*/
.ui-widget {
	 font: 12px Opensans;
	
	 
}
.ui-widget .ui-widget {
	font-size: 1em;
}
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
	font-family: Verdana,Arial,sans-serif;
	font-size: 1em;
}
.ui-widget-content {
	background: #2e2e2e !important;
	-moz-border-radius: 5px;
  	-webkit-border-radius: 5px;
  	-khtml-border-radius:5px;
   	border-radius: 5px;
	color: white !important;
}
.ui-widget-content a {
	color: #222222;
}
.ui-widget-header {
	border: 1px solid #aaaaaa;
	color: #222222;
	font-weight: bold;
}
.ui-widget-header a {
	color: #222222;
}


/* ===== header style #4 (legacy .chat removed — встроенная панель .chat-panel-overlay) ===== */
/* ===== header style #5 ===== */
.loader{
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #000;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.6s ease;
}

.loader-screen {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.loader-screen__svg {
  display: block;
  overflow: visible;
  width: min(40vw, 150px);
  height: auto;
}

@keyframes ls-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes ls-spin2 {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}

@keyframes ls-breathe {
  0%, 100% { opacity: 0.85; }
  50%      { opacity: 1; }
}

.loader-screen__chevron--breathe {
  animation: ls-breathe 2.5s ease-in-out infinite;
}

.loader-screen__arc {
  transform-origin: 0 0;
}

.loader-screen__arc--cw {
  animation: ls-spin 1.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.loader-screen__arc--ccw {
  animation: ls-spin2 2.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}


/* ===== content style #1 ===== */
.products-section {
  background: #1a1a1f;
  padding: 80px 0;
}

.products-section.products-section-alt {
  background: #0f0f14;
  border-top: 1px solid rgba(95, 77, 156, 0.2);
}

.products-section .center h2 {
  text-align: center;
  color: white;
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.4;
}

/* Catalog switch: products <-> services */
.catalog-switch {
  position: relative;
}

.catalog-view {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.38s ease, transform 0.38s ease;
  pointer-events: none;
}

.catalog-view.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.catalog-view.is-leaving {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}

.catalog-view[hidden] {
  display: none !important;
}

.services-catalog {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background: #1a1a1f;
}

.services-catalog::before {
  content: none;
}

.services-catalog .center {
  position: relative;
  z-index: 1;
}

.services-catalog-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 28px;
}

.services-catalog-head h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.services-catalog-lead {
  margin: 0 auto;
  max-width: 520px;
  color: rgba(203, 213, 225, 0.72);
  font-size: 15px;
  line-height: 1.65;
}

.services-category-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 36px;
  max-width: 920px;
}

.services-category-btn {
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #9ca3af;
  font: 13px 'Opensans', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  white-space: nowrap;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.services-category-btn:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
}

.services-category-btn.active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(90deg, #9333ea 0%, #db2777 100%);
  box-shadow: 0 8px 22px rgba(147, 51, 234, 0.32);
}

.service-tile.is-filtered-out {
  display: none;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-tile {
  --tile-accent: #818cf8;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  min-height: 318px;
  padding: 28px 26px 24px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 46%),
    rgba(14, 16, 26, 0.82);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.service-tile:nth-child(1) { --tile-accent: #38bdf8; }
.service-tile:nth-child(2) { --tile-accent: #a78bfa; }
.service-tile:nth-child(3) { --tile-accent: #22d3ee; }
.service-tile:nth-child(4) { --tile-accent: #c084fc; }
.service-tile:nth-child(5) { --tile-accent: #60a5fa; }
.service-tile:nth-child(6) { --tile-accent: #f472b6; }

.service-tile::before {
  content: '';
  position: absolute;
  top: -36%;
  right: -22%;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--tile-accent) 34%, transparent), transparent 70%);
  pointer-events: none;
  opacity: 0.75;
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 0;
}

.service-tile::after {
  content: '';
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 2px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, transparent, var(--tile-accent), transparent);
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.3s ease, transform 0.35s ease;
  z-index: 1;
}

.service-tile:hover {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--tile-accent) 55%, rgba(255, 255, 255, 0.2));
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.38),
    0 0 40px color-mix(in srgb, var(--tile-accent) 22%, transparent),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.service-tile:hover::before {
  opacity: 1;
  transform: scale(1.18) translate(-4%, 6%);
}

.service-tile:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.service-tile--featured {
  border-color: rgba(167, 139, 250, 0.5);
  background:
    linear-gradient(155deg, rgba(99, 102, 241, 0.3), rgba(217, 70, 239, 0.14) 48%, rgba(255, 255, 255, 0.03)),
    rgba(16, 18, 32, 0.9);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.34),
    0 0 42px rgba(139, 92, 246, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.service-tile--featured::after {
  opacity: 0.7;
  transform: scaleX(0.85);
}

.service-tile-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #6366f1, #d946ef);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.35);
}

.service-tile-preview {
  position: relative;
  z-index: 1;
  height: 108px;
  margin: -28px -26px 18px;
  overflow: hidden;
  border-radius: 26px 26px 0 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.service-tile-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-tile:hover .service-tile-preview img {
  transform: scale(1.05);
}

.service-tile h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.service-tile-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}

.service-tile-tags span {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(226, 232, 240, 0.82);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.service-tile--featured .service-tile-tags span {
  border-color: rgba(167, 139, 250, 0.35);
  background: rgba(99, 102, 241, 0.14);
  color: #e9d5ff;
}

.service-tile p {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  color: rgba(203, 213, 225, 0.74);
  font-size: 14px;
  line-height: 1.6;
  flex: 1 1 auto;
}

.service-tile-btn {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  gap: 8px;
  width: 100%;
  max-width: 100%;
  margin: auto 0 0;
  float: none;
  box-sizing: border-box;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #fff !important;
  text-decoration: none;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease,
    gap 0.25s ease;
}

.service-tile-btn span {
  transition: transform 0.25s ease;
}

.service-tile-btn:hover {
  background: linear-gradient(90deg, #6366f1, #d946ef);
  border-color: transparent;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(99, 102, 241, 0.34);
  gap: 12px;
}

.service-tile-btn:hover span {
  transform: translateX(2px);
}

.service-tile--featured .service-tile-btn {
  background: linear-gradient(90deg, #6366f1, #d946ef);
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(99, 102, 241, 0.3);
}

.service-tile--featured .service-tile-btn:hover {
  filter: brightness(1.08);
}

@media (max-width: 1024px) {
  .services-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .services-catalog {
    padding: 56px 0 68px;
  }

  .services-catalog-head {
    margin-bottom: 22px;
  }

  .services-category-filter {
    gap: 8px;
    margin-bottom: 28px;
    padding: 0 4px;
  }

  .services-category-btn {
    padding: 8px 14px;
    font-size: 12px;
  }

  .services-catalog-head h2 {
    font-size: 24px;
  }

  .services-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-tile {
    min-height: 0;
    padding: 22px 20px;
  }

  .service-tile-preview {
    height: 96px;
    margin: -22px -20px 16px;
    border-radius: 22px 22px 0 0;
  }
}

/* Segmented Control */
/* Variant: billing pill toggle (monthly / annually style) */
.segmented-control-wrapper {
  position: relative;
  background: #1a1a1f;
  padding: 52px 0 24px;
  overflow: hidden;
}

.segmented-control-wrapper::before,
.segmented-control-wrapper::after {
  content: none;
}

.segmented-control-wrapper .center {
  display: flex;
  justify-content: center;
}

.segmented-control {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 auto;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
}

.segmented-control::after {
  content: none;
}

.segment-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  padding: 10px 24px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #9ca3af;
  font: 14px 'Opensans', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  white-space: nowrap;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
  text-transform: none;
  letter-spacing: 0;
  z-index: 1;
}

.segment-btn::before,
.segment-btn::after {
  content: none;
}

.segment-btn:hover {
  color: #fff;
  background: transparent;
  transform: none;
  box-shadow: none;
}

.segment-btn.active {
  color: #fff;
  background: linear-gradient(90deg, #6366f1 0%, #d946ef 100%);
  box-shadow:
    0 10px 24px rgba(99, 102, 241, 0.38),
    0 4px 12px rgba(0, 0, 0, 0.22);
  transform: none;
}

.segment-btn.active:hover {
  color: #fff;
  background: linear-gradient(90deg, #6366f1 0%, #d946ef 100%);
  box-shadow:
    0 12px 28px rgba(99, 102, 241, 0.45),
    0 4px 12px rgba(0, 0, 0, 0.22);
}

.segment-text {
  position: relative;
  z-index: 1;
}

.products-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0 auto;
}

/* Products carousel (first products-section) */
.products-section .center .products-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.products-section .products-carousel .carousel-track-wrapper {
  overflow: hidden;
  flex: 1;
  min-width: 0;
  container-type: inline-size;
  container-name: prod-carousel;
  /* сверху/снизу — бейдж и тень. Боковой padding нельзя:
     overflow режет по padding-edge, и соседний слайд вылезает в этот зазор */
  padding: 22px 0 28px;
  box-sizing: border-box;
}

.products-section .products-carousel .carousel-track {
  position: relative;
  display: flex;
  gap: 25px;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Не больше 3 карточек в видимой области (ширина от обёртки, не от трека) */
.products-section .products-carousel .carousel-track .product-card {
  flex: 0 0 calc((100cqi - 50px) / 3);
  min-width: 0;
  max-width: none;
  box-sizing: border-box;
}

/* scale вылезает за слот и даёт щель соседнего слайда при overflow */
.products-section .products-carousel .product-card.featured,
.products-section .products-carousel .product-card.is-new {
  transform: none;
}
.products-section .products-carousel .product-card.featured:hover,
.products-section .products-carousel .product-card.is-new:hover {
  transform: translateY(-6px);
}

@media (max-width: 992px) {
  .products-section .products-carousel .carousel-track .product-card {
    flex: 0 0 calc((100cqi - 25px) / 2);
  }
}

@media (max-width: 768px) {
  .products-section .products-carousel .carousel-track .product-card {
    flex: 0 0 100cqi;
  }

  .products-section .center .products-carousel {
    gap: 8px;
  }
}

.product-card {
  background: rgba(50, 50, 60, 0.8);
  border: 1px solid rgba(95, 77, 156, 0.3);
  border-radius: 20px;
  padding: 30px;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.product-card:hover {
  border-color: rgba(95, 77, 156, 0.6);
  background: rgba(50, 50, 60, 0.95);
}

.product-card h3 {
  color: white;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px 0;
  text-align: left;
}

.page-home .product-card h3 {
  margin-bottom: 25px;
}

.product-desc {
  color: #a9a9a9;
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 25px 0;
  flex-grow: 0;
}

.product-image {
  flex-grow: 1;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
}

.product-img {
  max-width: 100%;
  max-height: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.product-box {
  position: relative;
  display: inline-block;
  line-height: 0;
  container-type: inline-size;
  container-name: pbox;
}

.product-image .product-box > .product-img {
  display: block;
  width: 100%;
  height: auto;
}

.product-image .product-box {
  width: 118px;
  max-width: 118px;
}

.product-box-ui {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
}

.product-box-title {
  position: absolute;
  left: 15%;
  right: 2%;
  top: 29.2%;
  text-align: center;
  color: #111;
  font-family: Calibri, "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  font-size: 17.3cqi;
  letter-spacing: -0.04em;
  line-height: 1;
  white-space: nowrap;
}

.product-box-title.is-long {
  font-size: 13.4cqi;
  letter-spacing: -0.045em;
}

.product-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
}

.product-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Featured Card Styles */
.product-card.featured {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(217, 70, 239, 0.2) 100%);
  border: 1px solid rgba(99, 102, 241, 0.4);
  transform: scale(1.02);
  box-shadow: 0 0 28px rgba(99, 102, 241, 0.32), 0 10px 28px rgba(217, 70, 239, 0.14);
}

.product-card.featured:hover {
  border-color: rgba(99, 102, 241, 0.7);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(217, 70, 239, 0.3) 100%);
  transform: scale(1.03);
}

.product-card.is-new {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.18) 0%, rgba(219, 39, 119, 0.16) 100%);
  border: 1px solid rgba(192, 38, 211, 0.4);
  transform: scale(1.02);
  box-shadow: 0 0 26px rgba(124, 58, 237, 0.32), 0 8px 22px rgba(219, 39, 119, 0.16);
}

.product-card.is-new:hover {
  border-color: rgba(219, 39, 119, 0.55);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.26) 0%, rgba(219, 39, 119, 0.22) 100%);
  transform: scale(1.03);
  box-shadow: 0 0 32px rgba(124, 58, 237, 0.4), 0 12px 26px rgba(219, 39, 119, 0.22);
}

.product-badges {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  z-index: 2;
  max-width: calc(100% - 16px);
}
.popular-badge,
.new-badge {
  background: linear-gradient(90deg, #6366f1 0%, #d946ef 100%);
  color: white;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}
.new-badge {
  background: linear-gradient(90deg, #7c3aed 0%, #db2777 100%);
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.35);
}

.featured-btn {
  background: linear-gradient(90deg, #6366f1 0%, #d946ef 100%);
  border: none;
  color: white;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.featured-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
  filter: brightness(1.1);
}

.new-btn {
  background: linear-gradient(90deg, #7c3aed 0%, #db2777 100%);
  border: none;
  color: white;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.35);
}

.new-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(219, 39, 119, 0.45);
  filter: brightness(1.1);
}

@media (max-width: 1024px) {
  .products-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .product-card.featured,
  .product-card.is-new {
    transform: scale(1);
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .products-section .center h2 {
    font-size: 22px;
  }

  .products-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-card.featured,
  .product-card.is-new {
    grid-column: span 1;
  }

  .product-card {
    padding: 20px;
  }

  .product-card h3 {
    font-size: 18px;
  }

  /* Segmented Control Responsive */
  .segmented-control {
    gap: 8px;
    padding: 5px;
    max-width: calc(100% - 16px);
  }

  .segment-btn {
    flex: 1 1 0;
    min-width: 0;
    padding: 9px 16px;
    font-size: 13px;
  }
}

/* ===== footer style #1 ===== */
.footer {
  background: #0d0e14;
  /* было 100px сверху + 100px снизу у .hosting — ~200px пустого тёмного поля; визуально «толстая серая полоса» */
  padding: 48px 0 60px;
  color: #898ca7;
  font-family: OpenSans, sans-serif;
  position: relative;
  overflow: hidden; /* градиентная полоска и анимация не вылезают за блок */
  border-top: none;
  border-bottom: none;
  box-shadow: none;
  /* субпиксельный стык секций */
  margin-top: -1px;
}

/* Переливающаяся линия сверху футера — как у .new-functions-section */
.footer > .footer-shimmer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(99, 102, 241, 0.8) 20%,
    rgba(217, 70, 239, 0.8) 50%,
    rgba(99, 102, 241, 0.8) 80%,
    transparent 100%
  );
  animation: gradientLine 3s ease-in-out infinite;
}

.footer .center {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 60px;
  margin-bottom: 80px;
}

.footer-brand-large {
  flex: 1;
  min-width: 180px;
}

.footer-logo-v2 {
  margin-bottom: 18px;
}

.footer-logo-v2 .ms-logo {
  max-width: 100%;
}

.footer-logo-v2 .ms-logo__wordmark svg {
  height: 18px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.2));
}

.brand-quote {
  font-size: 14px;
  line-height: 1.7;
  color: #9ca3af;
  max-width: 260px;
}

.footer-news {
  margin-top: 52px;
  max-width: 280px;
}
.footer-news-title {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.footer-news p {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.5;
  color: #9ca3af;
}
.footer-news-row {
  display: flex;
  gap: 8px;
}
.footer-news input[type="email"] {
  flex: 1;
  min-width: 0;
  height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-size: 13px;
  outline: none;
}
.footer-news input[type="email"]:focus {
  border-color: rgba(167,139,250,0.55);
}
.footer-news button {
  height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.footer-news button:hover { opacity: 0.92; }
.footer-news-msg {
  min-height: 16px;
  margin-top: 8px;
  font-size: 12px;
  color: #c4b5fd;
}
.footer-forum {
  margin-top: 22px;
  max-width: 280px;
}
.footer-forum p {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.5;
  color: #9ca3af;
}
.footer-forum-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.footer-forum-btn:hover { opacity: 0.92; }
.footer-share {
  margin-top: 40px;
  max-width: 280px;
}
.footer-share .social-pills {
  flex-wrap: wrap;
  gap: 10px;
}
.footer-share .social-pill {
  width: 44px;
  height: 44px;
}
.footer-share .social-emoji {
  width: 20px;
  height: 20px;
}

.footer-nav-grid {
  flex: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.nav-col h4 {
  color: white;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
  position: relative;
}

.nav-col h4::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #6366f1, #d946ef);
  border-radius: 1px;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-list li {
  margin-bottom: 15px;
}

.nav-list a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-list a:hover {
  color: white;
  padding-left: 8px;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

/* Horizontal Stats Bar */
.footer-stats-bar {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 80px;
  flex-wrap: wrap;
  gap: 30px;
}

.stat-item-v2 {
  text-align: center;
}

.stat-item-v2 .val {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #6366f1, #d946ef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item-v2 .label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6b7280;
}

.footer-bottom-v2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  flex-wrap: wrap;
  gap: 30px;
}

.social-pills {
  display: flex;
  gap: 15px;
}

.social-pill {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-pill:hover {
  background: rgba(99, 102, 241, 0.1);
  border-color: #6366f1;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.social-emoji {
  width: 26px;
  height: 26px;
  color: #d1d5db;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-emoji svg {
  width: 100%;
  height: 100%;
  display: block;
}

.social-pill:hover .social-emoji {
  color: #ffffff;
}

.copyright-v2 {
  font-size: 14px;
  color: #4b5563;
}

@media (max-width: 900px) {
  .footer-top { flex-direction: column; }
  .footer-nav-grid { grid-template-columns: repeat(2, 1fr); width: 100%; }
  .footer-stats-bar { justify-content: center; display: grid; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .footer-nav-grid { grid-template-columns: 1fr; }
  .footer-bottom-v2 { flex-direction: column; text-align: center; }
  .footer-stats-bar { grid-template-columns: 1fr; }
}

/* ===== product style #1 ===== */

    html:has(.product-page-main),
    body.page-product:has(.product-page-main) {
      background-color: #0d0e14;
    }
    body.page-product .product-page-main {
      background-color: #5b4a96;
    }
    .product-page-main .product_img.product-img-upload {
      background-image: url("../files/upload/dpn2wef5.png");
      background-repeat: no-repeat;
      background-position: center top;
      background-size: contain;
    }
    .product-page-main .product_img.product-img-upload.product-box {
      background-image: none;
    }
    .product-page-main .product_img.social-network-hero-art {
      width: 300px;
      height: 450px;
      margin: 70px 0 0 140px;
      float: left;
      border-radius: 34px;
      background:
        radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.22) 0 0, transparent 46px),
        radial-gradient(circle at 70% 34%, rgba(129, 140, 248, 0.9) 0 0, transparent 58px),
        radial-gradient(circle at 48% 66%, rgba(217, 70, 239, 0.78) 0 0, transparent 68px),
        linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03)),
        linear-gradient(160deg, #171827 0%, #30215b 52%, #7c2d83 100%);
      box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.12) inset,
        0 30px 80px rgba(0, 0, 0, 0.34),
        0 0 70px rgba(99, 102, 241, 0.24);
      position: relative;
      overflow: hidden;
    }
    .product-page-main .product_img.social-network-hero-art::before,
    .product-page-main .product_img.social-network-hero-art::after {
      content: '';
      position: absolute;
      inset: 74px 44px auto;
      height: 150px;
      border-radius: 26px;
      background: rgba(15, 16, 22, 0.58);
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow: 0 20px 44px rgba(0, 0, 0, 0.24);
    }
    .product-page-main .product_img.social-network-hero-art::after {
      inset: auto 34px 62px 56px;
      height: 116px;
      background:
        linear-gradient(90deg, rgba(99, 102, 241, 0.42), rgba(217, 70, 239, 0.2)),
        rgba(15, 16, 22, 0.68);
    }
    .product-page-main .trader-social-platform {
      border-radius: 32px;
      background:
        radial-gradient(circle at 16% 22%, rgba(99, 102, 241, 0.32), transparent 220px),
        radial-gradient(circle at 84% 18%, rgba(217, 70, 239, 0.26), transparent 220px),
        linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
        #151722;
      box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.14) inset,
        0 34px 90px rgba(0, 0, 0, 0.42);
      overflow: hidden;
    }
    .product-page-main .trader-social-platform::before {
      content: '';
      position: absolute;
      inset: 44px;
      border-radius: 24px;
      background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 28%, transparent 28% 31%, rgba(255, 255, 255, 0.05) 31% 100%),
        repeating-linear-gradient(0deg, transparent 0 42px, rgba(255, 255, 255, 0.08) 42px 43px);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }
    .product-page-main .trader-social-platform::after {
      content: '';
      position: absolute;
      left: 120px;
      right: 90px;
      top: 115px;
      height: 86px;
      border-radius: 22px;
      background: linear-gradient(90deg, rgba(99, 102, 241, 0.62), rgba(217, 70, 239, 0.42));
      box-shadow:
        0 128px 0 rgba(255, 255, 255, 0.07),
        0 256px 0 rgba(255, 255, 255, 0.05);
    }
    .product-page-main .mobile_img {
      background: none;
    }
    body.page-product .product-page-main > .header {
      position: relative;
      box-sizing: border-box;
      height: auto !important;
      min-height: 520px;
      padding-top: 96px !important;
      background: #000;
      overflow: hidden;
      isolation: isolate;
    }

    body.page-product .product-page-main > .header::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 0;
      background: #000 url("../img/header.jpg") center top no-repeat;
      background-size: cover;
      filter: blur(22px);
      transform: scale(1.08);
      transform-origin: center top;
      pointer-events: none;
    }

    body.page-product .product-page-main > .header > .center {
      position: relative;
      z-index: 1;
    }

    @media (max-width: 1200px) {
      body.page-product .product-page-main > .header {
        min-height: 0;
      }
    }

    .product-page-main .services {
      display: none;
    }

    .vps-pricing {
      position: relative;
      padding: 72px 0 96px;
      background: #0f0a1e;
      overflow: visible;
      scroll-margin-top: 110px;
    }

    .vps-pricing::before {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(520px 280px at 12% 0%, rgba(139, 92, 246, 0.16), transparent 70%),
        radial-gradient(480px 260px at 88% 10%, rgba(236, 72, 153, 0.12), transparent 72%);
    }

    .vps-pricing .center {
      position: relative;
      z-index: 1;
      max-width: 1180px;
      margin: 0 auto;
    }

    .vps-pricing-head {
      text-align: center;
      margin: 0 auto 36px;
    }

    .vps-pricing-head h2 {
      margin: 0 0 8px;
      color: #fff;
      font: 24px Opensans, sans-serif;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .vps-pricing-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
      align-items: stretch;
      padding: 16px 2px 12px;
    }

    .vps-pricing-grid--1,
    .vps-pricing-grid--2,
    .vps-pricing-grid--3 {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: stretch;
    }

    .vps-pricing-grid--3 .vps-plan {
      flex: 0 1 330px;
      max-width: 340px;
    }

    .vps-pricing-grid--2 .vps-plan {
      flex: 0 1 360px;
      max-width: 380px;
    }

    .vps-pricing-grid--1 .vps-plan {
      flex: 0 1 420px;
      width: 100%;
      max-width: 420px;
    }

    .vps-plan {
      --plan-accent: #818cf8;
      position: relative;
      display: flex;
      flex-direction: column;
      min-height: 100%;
      padding: 0 0 0;
      overflow: visible;
      border-radius: 22px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 42%),
        rgba(15, 16, 26, 0.82);
      box-shadow:
        0 18px 42px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset;
      backdrop-filter: blur(18px) saturate(140%);
      -webkit-backdrop-filter: blur(18px) saturate(140%);
      transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .vps-plan--starter { --plan-accent: #38bdf8; }
    .vps-plan--trader { --plan-accent: #a78bfa; }
    .vps-plan--stream { --plan-accent: #a78bfa; }
    .vps-plan--pro { --plan-accent: #4ade80; }
    .vps-plan--elite { --plan-accent: #fbbf24; }

    .vps-plan:hover {
      transform: translateY(-6px);
      border-color: color-mix(in srgb, var(--plan-accent) 45%, rgba(255, 255, 255, 0.12));
      box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.34),
        0 0 36px color-mix(in srgb, var(--plan-accent) 18%, transparent);
    }

    .vps-plan--popular {
      border-color: rgba(167, 139, 250, 0.45);
      box-shadow:
        0 20px 48px rgba(0, 0, 0, 0.34),
        0 0 42px rgba(139, 92, 246, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.06) inset;
      transform: scale(1.02);
    }

    .vps-plan-cover {
      position: relative;
      flex: 0 0 auto;
      height: 86px;
      overflow: hidden;
      border-radius: 22px 22px 0 0;
      background: #12101c;
    }

    .vps-plan-cover img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 40%;
    }

    .vps-plan-cover::after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 42px;
      pointer-events: none;
      background: linear-gradient(180deg, transparent 0%, rgba(15, 16, 26, 0.55) 48%, rgba(15, 16, 26, 0.96) 100%);
    }

    .vps-plan-body {
      display: flex;
      flex-direction: column;
      flex: 1 1 auto;
      padding: 16px 18px 22px;
    }

    .vps-plan-badge {
      position: absolute;
      z-index: 3;
      top: 0;
      left: 50%;
      transform: translate(-50%, -50%);
      padding: 6px 14px;
      border-radius: 999px;
      background: linear-gradient(90deg, #9333ea, #db2777);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      white-space: nowrap;
      box-shadow: 0 8px 20px rgba(147, 51, 234, 0.35);
      pointer-events: none;
    }

    .vps-plan h3 {
      margin: 0 0 6px;
      color: #fff;
      font-size: 24px;
      font-weight: 700;
      line-height: 1.2;
    }

    .vps-plan-desc {
      margin: 0 0 18px;
      color: #6b7280;
      font-size: 13px;
      line-height: 1.5;
    }

    .vps-plan-price {
      display: flex;
      align-items: flex-end;
      gap: 4px;
      margin-bottom: 6px;
    }

    .vps-plan-price-value {
      color: #fff;
      font-size: 30px;
      font-weight: 700;
      line-height: 1;
      letter-spacing: -0.03em;
    }

    .vps-plan-price-period {
      margin-bottom: 4px;
      color: #9ca3af;
      font-size: 14px;
    }

    .vps-plan-save {
      display: none;
    }

    .vps-plan-specs,
    .vps-plan-features {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .vps-plan-specs {
      margin-bottom: 16px;
      padding-bottom: 16px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .vps-plan-specs li,
    .vps-plan-features li {
      position: relative;
      padding-left: 18px;
      color: #d1d5db;
      font-size: 13px;
      line-height: 1.45;
    }

    .vps-plan-specs li + li,
    .vps-plan-features li + li {
      margin-top: 10px;
    }

    .vps-plan-specs li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 7px;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--plan-accent);
      box-shadow: 0 0 10px color-mix(in srgb, var(--plan-accent) 60%, transparent);
    }

    .vps-plan-features {
      flex: 1 1 auto;
      margin-bottom: 20px;
    }

    .vps-plan-features li::before {
      content: '✕';
      position: absolute;
      left: 0;
      top: 0;
      color: #4b5563;
      font-size: 12px;
      font-weight: 700;
    }

    .vps-plan-features li.is-included::before {
      content: '✓';
      color: #4ade80;
    }

    .vps-plan-features li:not(.is-included) {
      color: #6b7280;
    }

    .vps-plan-btn {
      display: block;
      width: 100%;
      margin-top: auto;
      flex-shrink: 0;
      padding: 13px 18px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.04);
      color: #fff;
      font: 14px 'Opensans', sans-serif;
      font-weight: 700;
      text-align: center;
      text-decoration: none;
      box-sizing: border-box;
      cursor: pointer;
      transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    }

    .vps-plan-btn:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.18);
      transform: translateY(-1px);
    }

    .vps-plan-btn--primary {
      border: none;
      background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
      box-shadow: 0 8px 24px rgba(139, 92, 246, 0.35);
    }

    .vps-plan-btn--primary:hover {
      box-shadow: 0 12px 28px rgba(139, 92, 246, 0.48);
      transform: translateY(-2px);
    }

    @media (max-width: 1200px) {
      .vps-pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 16px;
        align-items: start;
      }

      .vps-plan {
        min-height: auto;
      }

      .vps-plan--popular,
      .vps-plan:hover {
        transform: none;
      }
    }

    @media (max-width: 768px) {
      .vps-pricing {
        padding: 56px 0 64px;
        overflow: visible;
      }

      .vps-pricing-head h2 {
        font-size: 24px;
      }

      .vps-pricing-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
        align-items: start;
      }

      .vps-pricing-grid--1 .vps-plan,
      .vps-pricing-grid--2 .vps-plan,
      .vps-pricing-grid--3 .vps-plan {
        flex: 1 1 100%;
        max-width: none;
        width: 100%;
      }

      .vps-plan {
        min-height: auto;
        transform: none;
      }

      .vps-plan--popular {
        padding-top: 0;
      }

      .vps-plan-badge {
        top: 0;
        transform: translate(-50%, -50%);
      }

      .vps-plan:hover {
        transform: none;
      }

      .vps-plan-cover {
        height: 72px;
      }

      .vps-plan-price-value {
        font-size: 30px;
      }
    }


/* ===== product style #2 ===== */
.color2 { display: none; }

/* ===== animated logo ===== */
@keyframes ms-dash {
  from { stroke-dashoffset: 20; }
  to   { stroke-dashoffset: 0; }
}

@keyframes ms-ripple {
  0%   { r: 2; opacity: 0.65; }
  100% { r: 19; opacity: 0; }
}

@keyframes ms-glow {
  0%, 100% { opacity: 0.22; }
  50%      { opacity: 0.60; }
}

.ms-logo {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  line-height: 0;
  vertical-align: middle;
}

.ms-logo__mark svg,
.ms-logo__wordmark svg {
  display: block;
  overflow: visible;
}

.ms-logo__dash {
  animation: ms-dash 1.8s linear infinite;
}

.ms-logo__dash--delay {
  animation-delay: 0.9s;
}

.ms-logo__ripple {
  animation: ms-ripple 4s ease-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.ms-logo__ripple--2 { animation-delay: 1.33s; }
.ms-logo__ripple--3 { animation-delay: 2.66s; }

.ms-logo__glow {
  animation: ms-glow 3.5s ease-in-out infinite;
}

.header-pill .ms-logo-link {
  display: inline-block;
  text-decoration: none;
}

.header-pill .ms-logo--header .ms-logo__wordmark {
  display: block;
}

.header-pill .ms-logo--header .ms-logo__mark svg {
  width: 39px;
  height: 46px;
}

.header-pill .ms-logo--header .ms-logo__wordmark svg {
  width: auto;
  height: 24px;
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
    min-width: 0 !important;
  }

  .center {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100%;
    box-sizing: border-box;
    padding-left: 16px;
    padding-right: 16px;
  }

  .header-pill {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 8px;
    row-gap: 8px;
    padding: 10px 16px 12px;
  }

  .header-pill .logo-box {
    grid-column: 1;
    grid-row: 1;
  }

  .header-pill .nav-center {
    grid-column: 1 / -1;
    grid-row: 2;
    position: static;
    left: auto;
    top: auto;
    transform: none;
    justify-self: center;
  }

  .header-pill .actions-right {
    display: contents;
  }

  .header-pill .support-dropdown-wrapper {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .header-pill .lang-switcher {
    grid-column: 2;
    grid-row: 1;
    justify-content: center;
    justify-self: center;
    padding: 0;
  }

  .header-pill .ms-logo--header {
    gap: 0;
  }

  .header-pill .ms-logo--header .ms-logo__wordmark {
    display: none;
  }

  .header-pill .ms-logo--header .ms-logo__mark svg {
    width: 34px;
    height: 40px;
  }

  body.page-home .header {
    padding-top: 124px;
  }
  body.has-hot-bar .header-pill {
    top: 44px;
  }
  body.has-hot-bar.page-home .header {
    padding-top: 156px;
  }
  .hot-bar {
    height: 34px;
    gap: 8px;
    padding: 0 12px;
  }
  .hot-bar-title {
    max-width: 58vw;
    font-size: 12px;
  }

  .news-page {
    padding-top: 128px;
  }
}


.footer-logo-v2 .ms-logo--footer .ms-logo__mark svg {
  width: 26px;
  height: 30px;
}

.footer-logo-v2 .ms-logo--footer .ms-logo__wordmark svg {
  height: 18px;
  width: auto;
}

.card-logo .ms-logo--auth {
  justify-content: center;
}

.card-logo .ms-logo--auth .ms-logo__mark svg {
  width: 39px;
  height: 46px;
}

.card-logo .ms-logo--auth .ms-logo__wordmark svg {
  height: 24px;
  width: auto;
}

body.page-news {
  background: #0a0a0f;
  color: #e5e7eb;
}
body.page-news .loader { background: #0a0a0f; }

.news-page {
  padding-top: 110px;
}

.news-list {
  padding: 40px 0 80px;
}

.news-list h1 {
  text-align: center;
  font: 37px Opensansl, sans-serif;
  color: #fff;
  margin: 0 0 48px;
  font-weight: 400;
}

.news-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.news-list-grid .function-card {
  flex: none;
  min-width: 0;
}

.news-article {
  padding: 24px 0 80px;
  min-height: 300px;
}

.news-article-date {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  letter-spacing: 1px;
}

.news-article h1 {
  width: 100%;
  text-align: center;
  font: 37px Opensansl, sans-serif;
  color: #fff;
  display: block;
  padding: 16px 0 30px;
  margin: 0;
  font-weight: 400;
}

.news-article-text {
  font-size: 15px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 900px;
  margin: 0 auto 28px;
}

.news-article-img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  margin: 0 auto 32px;
}

.news-back {
  display: inline-block;
  color: #c4b5fd;
  text-decoration: none;
}

.news-back:hover {
  color: #fff;
}

.product-faq {
  position: relative;
  padding: 110px 0 120px;
  background: #0a0a0f;
  overflow: hidden;
}
.product-faq::before,
.product-faq::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.product-faq::before {
  width: 520px;
  height: 520px;
  left: -120px;
  top: 40px;
  background: rgba(99, 102, 241, 0.16);
}
.product-faq::after {
  width: 420px;
  height: 420px;
  right: -80px;
  bottom: -60px;
  background: rgba(236, 72, 153, 0.12);
}
.product-faq .center {
  position: relative;
  z-index: 1;
  max-width: 1180px;
}
.product-faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.2fr);
  gap: 72px 80px;
  align-items: start;
}
.product-faq-intro {
  position: sticky;
  top: 130px;
}
.product-faq-kicker {
  margin: 0 0 18px;
  font-size: clamp(56px, 7vw, 92px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.06em;
  background: linear-gradient(105deg, #818cf8 0%, #c084fc 48%, #f472b6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.product-faq-intro h2 {
  margin: 0 0 18px;
  max-width: 420px;
  color: #fff;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.03em;
}
.product-faq-lead {
  margin: 0 0 28px;
  max-width: 360px;
  color: rgba(203, 213, 225, 0.72);
  font-size: 16px;
  line-height: 1.65;
}
.product-faq-cta {
  display: inline-flex;
  align-items: center;
  padding: 13px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(139, 92, 246, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-faq-cta:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(139, 92, 246, 0.48);
}
.product-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-faq-item {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 48%),
    rgba(15, 16, 26, 0.72);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.product-faq-item:hover,
.product-faq-item.is-open {
  border-color: rgba(167, 139, 250, 0.38);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.28),
    0 0 28px rgba(139, 92, 246, 0.12);
}
.product-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: #fff;
  font: 16px/1.4 Opensans, sans-serif;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.product-faq-plus {
  position: relative;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.product-faq-plus::before,
.product-faq-plus::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: #c4b5fd;
  border-radius: 2px;
  transition: transform 0.28s ease, background 0.28s ease;
}
.product-faq-plus::before {
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.product-faq-plus::after {
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%);
}
.product-faq-item.is-open .product-faq-plus {
  background: rgba(168, 85, 247, 0.18);
  border-color: rgba(192, 132, 252, 0.45);
}
.product-faq-item.is-open .product-faq-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
  background: #f472b6;
}
.product-faq-item.is-open .product-faq-plus::before {
  background: #f472b6;
}
.product-faq-a {
  padding: 0 22px 20px;
}
.product-faq-a p {
  margin: 0;
  padding-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(203, 213, 225, 0.78);
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .product-faq {
    padding: 72px 0 80px;
  }
  .product-faq-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .product-faq-intro {
    position: static;
  }
  .product-faq-intro h2,
  .product-faq-lead {
    max-width: none;
  }
}

.product-mobile {
  overflow: visible;
}
.product-mobile::before,
.product-mobile::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.product-mobile::before {
  width: 460px;
  height: 460px;
  left: 18%;
  top: 18%;
  background: rgba(99, 102, 241, 0.16);
}
.product-mobile::after {
  width: 380px;
  height: 380px;
  right: 8%;
  bottom: -40px;
  background: rgba(236, 72, 153, 0.1);
}
.product-mobile .center {
  position: relative;
  z-index: 1;
  max-width: 1280px;
}
.product-mobile-grid {
  display: grid;
  grid-template-columns: minmax(280px, 440px) minmax(0, 1fr);
  gap: 8px 40px;
  align-items: center;
}
.product-mobile-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}
.product-mobile-visual::before {
  content: '';
  position: absolute;
  left: 48%;
  top: 42%;
  width: 78%;
  height: 62%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(129, 140, 248, 0.28), transparent 72%);
  pointer-events: none;
}
.product-mobile-visual::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 62%;
  height: 36px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.55), transparent 72%);
  pointer-events: none;
}
.product-mobile .mobile_img {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  max-width: 100%;
  height: 600px;
  margin: 0;
  background: none;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 28px 36px rgba(0, 0, 0, 0.45));
}
.product-mobile-kicker {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: linear-gradient(105deg, #818cf8 0%, #c084fc 48%, #f472b6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.product-mobile-copy h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.product-mobile-lead {
  margin: 0 0 28px;
  max-width: 460px;
  color: rgba(203, 213, 225, 0.72);
  font-size: 16px;
  line-height: 1.65;
}
.product-mobile-feats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-mobile-feats li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 50%),
    rgba(15, 16, 26, 0.55);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.product-mobile-feats li:hover {
  border-color: rgba(167, 139, 250, 0.4);
  transform: translateY(-2px);
}
.product-mobile-ico {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #c4b5fd;
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(192, 132, 252, 0.28);
}
.product-mobile-feats strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-style: normal;
}
.product-mobile-feats em {
  display: block;
  color: rgba(203, 213, 225, 0.72);
  font-size: 13px;
  font-style: normal;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .product-mobile {
    padding: 64px 0 56px;
  }
  .product-mobile-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .product-mobile-visual {
    justify-content: center;
    order: -1;
  }
  .product-mobile .mobile_img {
    width: min(100%, 280px);
    height: auto;
    max-height: 480px;
    margin: 0 auto;
  }
}

/* ===== quotes — original rows, premium polish ===== */
.main_products.quotes {
  position: relative;
  background: #09090f;
  overflow: hidden;
  min-height: 0;
  padding: 72px 0 80px;
}
.main_products.quotes::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(640px 300px at 14% 8%, rgba(99, 102, 241, 0.14), transparent 70%),
    radial-gradient(520px 260px at 90% 92%, rgba(236, 72, 153, 0.08), transparent 72%);
}
.quotes .center {
  position: relative;
  z-index: 1;
}
.quotes-head {
  text-align: center;
  margin-bottom: 40px;
}
.quotes-kicker {
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(196, 181, 253, 0.8);
}
.quotes-head h2,
.main_products.quotes .quotes-head h2 {
  margin: 0 0 8px;
  padding: 0;
  color: #fff;
  font: 24px Opensans, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.quotes-hint {
  margin: 0 auto;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
  line-height: 1.5;
}
.quotes .currency_block {
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 8px 6px;
  margin: 0;
  padding: 22px 8px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: none;
  box-shadow: none;
  backdrop-filter: none;
}
.quotes .currency_block:last-of-type {
  border-bottom: 0;
}
.quotes .currency_title {
  flex: 0 0 132px;
  float: none;
  width: auto;
  margin: 8px 8px 0 0;
  padding: 0 28px 0 0;
  background: url("../img/arrow_quotes.svg") right 10px center no-repeat;
  font: 18px Opensansb, Opensans, sans-serif;
  color: #fff;
  letter-spacing: 0;
  text-transform: none;
}
.quotes .currency_block .clear {
  display: none;
}
.quotes .currency_block .currency {
  float: none;
  flex: 1 1 0;
  min-width: 0;
  width: auto;
  min-height: 0;
  margin: 0;
  padding: 2px 6px 2px 42px;
  border: 0;
  border-radius: 0;
  color: #fff;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: 0 4px;
  background-size: 32px 32px;
  box-shadow: none;
  box-sizing: border-box;
  transition: none;
}
.quotes .currency_block .currency:hover {
  transform: none;
  background-color: transparent;
  border-color: transparent;
}
.quotes .currency_name {
  display: block;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.quotes .currency_course {
  display: block;
  margin-top: 4px;
  font-family: Opensans, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  color: rgb(5, 198, 5);
  min-height: 1.2em;
}
@media (max-width: 1200px) {
  .quotes .currency_title {
    display: block !important;
    flex: 0 0 100%;
    margin: 0 0 12px;
    background-position: 90px center;
  }
  .quotes .currency_block {
    flex-wrap: wrap;
  }
  .quotes .currency_block .currency {
    display: block !important;
    float: none !important;
    flex: 1 1 28%;
    width: auto !important;
    min-width: 120px;
    margin-bottom: 16px;
  }
}
@media (max-width: 720px) {
  .main_products.quotes {
    padding: 48px 0 56px;
  }
  .quotes .currency_block .currency {
    flex: 1 1 42%;
  }
}

@media (max-width: 768px) {
  body.page-product .product_img,
  .product-page-main .product_img {
    display: block !important;
    float: none !important;
    width: min(220px, 58vw);
    height: min(330px, 87vw);
    margin: 8px auto 0 !important;
    background-size: contain !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
  }

  body.page-product .product-page-main > .header {
    min-height: 0 !important;
    height: auto !important;
    padding-top: 128px !important;
    padding-bottom: 28px;
  }

  body.page-product .product_right,
  .product_right {
    float: none !important;
    width: auto !important;
    max-width: 100%;
    margin: 20px 0 8px !important;
    box-sizing: border-box;
  }

  body.page-product .product_right h2,
  .product_right h2 {
    font-size: 26px;
    line-height: 1.2;
  }

  .product-title-row {
    gap: 8px 10px;
  }

  body.page-product .button5,
  body.page-product .button6,
  .product_right .button5,
  .product_right .button6 {
    float: none;
    display: inline-block;
    margin: 16px 10px 0 0;
    padding: 11px 18px;
    font-size: 14px;
  }

  .hosting {
    padding: 48px 0 24px;
    min-height: 0;
  }

  .hosting-content {
    padding: 32px 18px;
  }

  .hosting h2 {
    font-size: 22px;
  }

  .hosting-price {
    font-size: 36px;
  }

  .home-promo {
    padding: 4px 0 40px;
  }
  .home-promo-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .home-promo-inner {
    padding: 28px 18px 24px;
  }
  .home-promo-inner h2 {
    font-size: 22px;
  }

  .main_products .product {
    width: 100% !important;
    max-width: 320px;
    margin-left: auto !important;
    margin-right: auto;
    float: none !important;
  }

  .advantage .block {
    width: 100% !important;
    margin-left: 0 !important;
    margin-bottom: 48px;
  }

  #slides {
    font-size: clamp(22px, 7vw, 32px) !important;
    margin-top: 120px;
  }

  body.page-home .header #slides {
    margin-top: 24px;
  }

  body.page-home .header {
    height: 480px;
    background-size: cover;
    background-position: center top;
  }

  body.page-home .header .platform {
    width: min(92vw, 380px) !important;
    height: min(49vw, 203px) !important;
    left: 50% !important;
    margin-left: calc(min(92vw, 380px) * -0.5) !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center bottom !important;
  }

  .news-list-grid {
    grid-template-columns: 1fr;
  }

  .news-list h1,
  .news-article h1 {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .quotes .currency_block .currency {
    flex: 1 1 42%;
    min-width: 0;
  }

  .product-mobile-feats li {
    padding: 12px 12px;
  }
}

