* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #fff;
  font-size: 16px;
  padding-top: 100px;
}

html, body {
  overflow-x: hidden;
  background: #0B0F19;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.wrapper {
  background: transparent;
  width: 100%;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 32.5px 40px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 100px;
  background: rgba(17, 24, 39, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #1F2937;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  font-size: 29px;
  font-weight: 800;
}

header .logo a {
  color: #fff;
}

header nav {
  width: auto;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 70px;
}

header nav ul li {
  display: inline-block;
  font-size: 18px;
}

header nav ul li a {
  color: #fff;
  transition: all 300ms ease;
}

header nav ul li.active a{
  color: #3B82F6;
  font-weight: bold;
}

header nav ul li:not(.active):not(.btn) a:hover {
  color: #3B82F6;
}

header nav ul li.btn a {
  background: #3B82F6;
  padding: 9px 17px;
  border-radius: 7px;
  transition: all 300ms ease;
}

header nav ul li.btn a:hover {
  background: #2563EB;
}

/* Hero */

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 150px 160px;
}

.hero--info {
  width: 420px;
  padding-top: 130px;
}

.hero--info h1 {
  color: #FFFFFF;
  font-size: 30px;
  font-weight: 700;
}

.hero--info p {
  font-weight: 500;
  line-height: 170%;
  margin: 30px 0;
  color: #9CA3AF;
}

.hero--info .btn {
  background: #3B82F6;
  padding: 9px 17px;
  border-radius: 7px;
  transition: all 300ms ease;
  color: #fff;
  border: 0;
  font-size: 16px;
  display: inline-block;
}

.hero--info .btn:hover {
  cursor: pointer;
  transform: scale(1.1);
  background: #2563EB;
}

.hero img {
  position: static;
  width: 300px;
  padding-top: 90px;
}

/* Advantaged */

.advantages h3 {
  font-weight: 600;
  font-size: 20px;
}

.advantages p {
  padding: 10px 0;
  color: #9CA3AF;
}

.advantages img:not(#ts) {
  width: 45px;
  height: 45px;
  margin-bottom: 18px;
}

.advantages #ts {
  width: 55px;
  height: 55px;
  margin-bottom: 18px;
}

.block {
  width: 21%;
  min-height: 140px;
  min-width: 300px;
  padding: 35px;
  margin: 15px;
  border: 1px solid #1F2937;
  border-radius: 18px;
  background: #111827;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.block:hover {
  transform: translateY(-3px);
  border-color: #3B82F666;
}

.advantages {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-bottom: 100px;
}

.advantages .block {
  text-align: left;
}

/* Footer */

footer {
  background: #0B0F19;
  padding: 50px 0;
}

footer .blocks {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

footer .left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

footer .right {
  display: flex;
  gap: 120px;
  padding: 0 40px;
}

footer .blocks .logo {
  font-size: 24px;
  font-weight: 800;
  padding: 0 40px;
}

footer .blocks h4 {
  font-weight: 500;
  font-size: 17px;
}

footer .blocks ul {
  list-style: none;
}

footer .blocks ul li a, footer .blocks a:not(.logo-link), footer .blocks p {
  opacity: 1;
  color: #9CA3AF;
  transition: all 300ms ease;
}

footer .blocks ul li a:hover, footer .blocks a:not(.logo-link):hover {
  color: #3B82F6;
}

footer .blocks .logo .logo-link {
  color: #fff;
}

footer .blocks .underlogo {
  padding: 0 40px;
  max-width: 450px;
  width: 100%;
}

footer .blocks ul li {
  margin-top: 8px;
}

footer .blocks p {
  margin-top: 8px;
}

footer hr {
  margin: 30px 0;
  border: 0;
  height: 0.6px;
  background: #475569;
}

.copyright {
  text-align: center;
}

/* Страница "Примеры" */

.hero-examples {
  display: flex;
  flex-direction: column;
  gap: 120px;
  margin-top: 20px;
  margin-bottom: 120px;
}

.hero-examples .infotext {
  width: 40%;
  padding: 0;
}

.hero-examples .infotext h2 {
  margin-bottom: 15px;
  font-size: 25px;
  color: #FFFFFF;
}

.hero-examples .infotext p {
  color: #9CA3AF;
}

.example-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.example-row {
  background: #111827;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #1F2937;
}

.example-row.reverse {
  flex-direction: row-reverse;
}

.hero-examples img {
  width: 60%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid #1F2937;
  transition: 0.3s
}

.hero-examples img:hover {
  transform: scale(1.03);
}

.hero-examples .pop-up {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1001;
  display: none;
}

.hero-examples .pop-up img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 0;
  border: 0;
  width: 90%;
  cursor: default;
}

.hero-examples .pop-up span {
  position: fixed;
  top: 10px;
  right: 20px;
  width: 40px;
  height: 40px;
  color: #FFFFFF;
  font-size: 50px;
  font-weight: 400;
  text-align: center;
  cursor: pointer;
  z-index: 1002;
  text-shadow: 0 0 10px rgba(0,0,0,0.8);
}

.dark-img {
  filter: brightness(0.9) contrast(0.95);
}

.result {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  gap: 90px;
  padding-bottom: 60px;
  padding-top: 40px;
}

.description {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.order {
  width: 360px;
  height: 515px;
  border: 1px solid #1F2937;
  border-radius: 18px;
  background: #111827;
  padding: 20px 0;
}

.order h3 {
  text-align: center;
  padding-top: 20px;
  color: #FFFFFF;
  font-size: 25px;
}

.pricecolor {
  color: #3B82F6;
}

.rub {
  font-size: 0.8em;
}

.note {
  text-align: center;
  color: #9CA3AF;
  font-size: 13px;
  padding-top: 5px;
  padding-bottom: 12px;
}

.order ul {
  list-style: none;
  padding-left: 0;
}

.order li {
  max-width: 250px;
  margin: 11px auto;
  padding-left: 30px;
  background: url("/images/check.png") no-repeat left center;
  background-size: 20px 20px;
}

.btn-order {
  background: #3B82F6;
  padding: 12px 35px;
  border-radius: 7px;
  box-shadow: 0 0 0 rgba(59, 130, 246, 0);
  transition: 0.3s;
  border: 0;
  display: block;
  margin: 40px auto;
  width: fit-content;
}

.btn-order:hover, .btn-order2:hover {
  box-shadow: 0 0 20px rgba(59,130,246,0.6);
  cursor: pointer;
}

.btn-order {
  color: #fff;
  font-size: 21px;
}

.servergroups, .channels {
  max-width: 460px;
  width: 100%;
}

.servergroups h1, .channels h1 {
  text-align: left;
  font-size: 25px;
  color: #FFFFFF;
  padding-bottom: 20px;
}

.servergroups p, .channels p {
  text-align: left;
  margin: 9px 0;
  line-height: 25px;
  color: #9CA3AF;
}

.whitebold {
  color: #FFFFFF;
}

.titles {
  text-align: center;
  color: #FFFFFF;
}

.titles2 {
  text-align: center;
  color: #FFFFFF;
  padding-bottom: 60px;
}

.bots {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bot-item {
  width: 100%;
  max-width: 700px;
  text-align: left;
  margin: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #111827;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #1F2937;
}

.bot-text h2 {
  color: #FFFFFF;
  margin-bottom: 15px;
  font-size: 25px;
}

.bot-text p {
  line-height: 20px;
  margin: 10px 0;
  color: #9CA3AF;
}

.bot-item img {
  margin-top: 40px;
  border-radius: 12px;
  border: 1px solid #1F2937;
}

.name-price {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.btn-order2 {
  background: #3B82F6;
  padding: 12px 35px;
  border-radius: 7px;
  box-shadow: 0 0 0 rgba(59, 130, 246, 0);
  transition: 0.3s;
  border: 0;
  display: inline-block;
  margin-top: 30px;
  color: #fff;
  font-size: 19px;
}

/* Страница Новости */

.temporary {
  text-align: center;
  color: #FFFFFF;
  padding-top: 100px;
  padding-bottom: 300px;
  font-size: 27px;
}

/* Страница FAQ */

.faq-h {
  padding-top: 70px;
  padding-bottom: 80px;
  text-align: center;
  color: #FFFFFF;
}

.faq-block h3 {
  font-size: 16px;
}

.faq-block p {
  font-size: 14px;
  color: #9CA3AF;;
  padding: 10px 0;
  line-height: 22px;
}

.faq-blocks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1240px;
  margin: 0 auto;
  padding-bottom: 120px;
}

.faq-block {
  flex: 0 1 570px;
  padding: 28px 32px;
  border: 1px solid #1F2937;
  border-radius: 18px;
  background: #111827;
  box-sizing: border-box;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.faq-block:hover {
  transform: translateY(-3px);
  border-color: #3B82F666;
}

/* Под телефон и планшет */

.sidebar {
  position: absolute;
  top: 100%;
  right: 0;
  width: 220px;
  background: #111827;
  backdrop-filter: blur(7px);
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 10px;
  transform: scaleY(0);
  transform-origin: top;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
  border-radius: 15px;
}

.sidebar.active {
  transform: scaleY(1);
  opacity: 1;
  pointer-events: auto;
}

.sidebar li {
  width: 100%;
}

.sidebar li a {
  display: block;
  padding: 12px 15px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  transition: 0.2s;
}

.sidebar li a:hover {
  background: rgba(255,255,255,0.1);
}

.menu-button {
  display: none;
  cursor: pointer;
}

.menu-button a {
  display: flex;
  align-items: center;
}

.menu-button .icon {
  width: 30px;
  height: 30px;
  display: block;
  background-image: url("/images/menu.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.menu-button.active .icon {
  background-image: url("/images/close.svg");
}


@media (max-width: 1200px) {
  .hero {
    padding: 0 80px 140px;
  }

  .hero--info {
    width: 380px;
    padding-top: 100px;
  }

  .hero img {
    width: 280px;
    padding-top: 70px;
  }

  .hero-examples {
    gap: 30px;
    margin-bottom: 60px;
    margin-top: 30px;
  }

  .titles {
    padding-bottom: 40px;
  }

  .example-row, .example-row.reverse {
    flex-direction: column;
    align-items: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 25px;
  }

  .hero-examples img {
    width: 100%;
    height: auto;
    display: block;
    box-sizing: border-box;
  }

  .hero-examples .infotext {
    width: 100%;
    text-align: left;
  }

  .bot-item {
    box-sizing: border-box;
    margin: 15px auto;
    padding: 25px;
  }

  .faq-blocks {
    padding: 0 13px;
    box-sizing: border-box;
    gap: 30px;
  }

  .faq-block {
    width: 100%;
  }

  .faq-h {
    padding-left: 10px;
    padding-right: 10px;
  }
}


@media (max-width: 1000px) {

  .hero {
    flex-direction: column;
    align-items: center;
    padding: 0 20px 80px;
  }

  .hero--info {
    width: 100%;
    max-width: 420px;
    padding-top: 60px;
    text-align: left;
  }

  .hero img {
    width: 260px;
    padding-top: 60px;
  }

  .result {
    flex-direction: column;
    align-items: center;
    gap: 70px;
    padding: 0 30px;
    padding-bottom: 50px;
  }

  .description {
    width: 100%;
    max-width: 600px;
  }

  .order {
    width: 100%;
    max-width: 350px;
  }
}


@media (max-width: 930px) {
  .container {
    padding: 32.5px 13px;
  }

  .hideOnMobile {
    display: none;
  }

  .menu-button {
    display: block;
  }

  footer .blocks {
    flex-direction: column;
    gap: 70px;
  }

  footer .left {
    text-align: left;
  }

  footer .blocks .logo {
    padding: 0 10px;
  }

  footer .blocks .underlogo {
    padding: 0 10px;
  }

  footer .underlogo {
    width: 100%;
    max-width: 450px;
    margin: 10px 0 0 0;
    text-align: left;
  }

  footer .right {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 60px;
    padding: 0 10px;
  }

  footer .right > div {
    text-align: left;
  }

  .advantages {
    padding-bottom: 50px;
  }
}


@media (max-width: 600px) {

  .bot-item {
    max-width: 700px;
    width: 100%;
  }

  .bot-item img {
    width: 100%;
    height: auto;
  }

  .titles,
  .titles2 {
    font-size: 25px;
  }

  .bot-text h2 {
    font-size: 22px;
  }
}