@font-face {
  font-family: "FugazOne";
  src: url("./fonts/Fugazone/FugazOne-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "BlenderPro";
  src: url("./fonts/BlenderPro/fonnts.com-Blender_Pro_Thin.ttf")
    format("truetype");
}

@font-face {
  font-family: "BlenderProBold";
  src: url("./fonts/BlenderPro/fonnts.com-Blender_Pro_Bold.ttf")
    format("truetype");
}

@font-face {
  font-family: "AmoraFree";
  src: url("./fonts/AmoraFree/AmoraFree.ttf") format("truetype");
}

@font-face {
  font-family: "Audiowide";
  src: url("./fonts/Audiowide/Audiowide-Regular.ttf") format("truetype");
}

body {
  background-color: #0e1115;
  color: #ffffff;
}

svg {
  display: block;
  width: 100%;
  height: auto;
}

.container {
  max-width: 1530px;
  margin: 24px auto;
  padding: 27px 35px 20px;
  background-image: url(./media/Subtract-big.svg);
  /* background-position: center; */
  background-size: cover;
  background-repeat: no-repeat;
}

.text-gradient {
  background: linear-gradient(90deg, #f5bc29 0%, #ef9a12 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text {
  color: #f5bc29;
}

.text-bonus {
  color: #35c800;
}

.burger-menu {
  display: none;
}

a {
  text-decoration: none;
  color: inherit;
}

/*=================NAVBAR=================*/
nav {
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 17px;
}

.logo-text-top {
  font-family: "FugazOne", sans-serif;
  font-size: 32px;
  font-weight: 400;
  margin: 0;

  background: linear-gradient(90deg, #f5bc29 0%, #ef9a12 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-text-bottom {
  font-family: "BlenderPro", sans-serif;
  font-size: 22px;
  font-style: italic;
  margin: 0;
  color: #ffffff;
}

.navigation-buttons {
  display: flex;
  align-items: center;
  gap: 36px;
  margin: 0;
}

.navigation-buttons li {
  list-style: none;
  font-family: "AmoraFree", sans-serif;
  font-size: 20px;
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-selector-wrapper {
  position: relative;
}

.nav-sellector {
  display: flex;
  align-items: center;
  gap: 5px;

  background: #222832;
  padding: 7px 14px;
  border-radius: 46.31px;
  text-transform: uppercase;

  font-family: "BlenderPro", sans-serif;
  font-size: 17px;

  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.nav-sellector:hover {
  background: #2a3139;
}

.selector-arrow {
  transition: transform 0.3s ease;
}

.selector-arrow.rotated {
  transform: rotate(180deg);
}

.nav-auth {
  display: flex;
  align-items: center;

  background: #222832;
  border-radius: 46.31px;
  text-transform: uppercase;

  font-family: "BlenderPro", sans-serif;
  font-size: 17px;
}

.dropdown-menu {
  position: absolute;
  left: 0;
  top: 26px;
  background: #222832;
  border-radius: 0px 0px 16px 16px;
  min-width: 128px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  z-index: 1000;
}

.dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  padding-top: 10px;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 10px;
  font-family: "BlenderPro", sans-serif;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.dropdown-item:hover {
  background: #2a3139;
}

.check-icon {
  margin-left: auto;
  opacity: 0;
  transition: opacity 0.2s ease;
  width: 16px;
  height: 16px;
}

.dropdown-item.active .check-icon {
  opacity: 1;
}

.dropdown-item.active {
  background: linear-gradient(
    90deg,
    rgba(245, 188, 41, 0.1) 0%,
    rgba(239, 154, 18, 0.1) 100%
  );
}
.lang-flag {
  font-size: 20px;
}

.login {
  padding: 7px 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 46.31px;
}

.login:hover {
  background: linear-gradient(90deg, #f5bc29 0%, #ef9a12 100%);
  color: #222832;
}

.login.active {
  background: linear-gradient(90deg, #f5bc29 0%, #ef9a12 100%);
  color: #222832;
}

.register {
  padding: 7px 14px;
  border-radius: 46.31px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #ffffff;
}

.register:hover {
  background: linear-gradient(90deg, #f5bc29 0%, #ef9a12 100%);
  color: #222832;
}

.register.active {
  background: linear-gradient(90deg, #f5bc29 0%, #ef9a12 100%);
  color: #222832;
}

/*=================MAIN=================*/
main {
  display: flex;
  flex-direction: column;
}

/*=================HERO=================*/
.hero {
  display: flex;
  align-items: center;

  margin-top: 10px;
  gap: 40px;
}

.hero-aside {
  /* flex: 1 1 280px;  */
  max-width: 340px;
}

.hero-aside--left {
  display: flex;
  flex-direction: column;
  align-items: center;

  flex: 0 0 300px;
}

.left-img {
  background-image: url(./media/android.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: min(310px, 100%);
  aspect-ratio: 310 / 445;
}

.img-text {
  color: #ffffff;
  background: #000000e0;

  border-radius: 10px;

  position: relative;
  top: 215px;

  padding: 20px 11px 14px;
  margin: 0 9px;

  display: flex;
  flex-direction: column;

  gap: 15px;
}

.label-img {
  position: relative;
}

.label-android {
  font-family: "AmoraFree", sans-serif;
  font-size: 18px;

  text-transform: uppercase;

  background: linear-gradient(90deg, #f5bc29 0%, #ef9a12 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.descr-android {
  margin: 0;

  font-size: 16px;
  font-family: "BlenderPro", sans-serif;
}

.label-number {
  font-size: 40px;
  position: absolute;
  right: 0;
  top: 0;

  background: linear-gradient(180deg, #ffce2d 0%, #0b0c0f00 100%);
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  font-family: "Audiowide", sans-serif;
}

.left-text {
  display: flex;
  flex-direction: row;
  align-items: center;

  position: relative;
}

.left-text h1 {
  font-family: "AmoraFree", sans-serif;
  font-size: 46px;
  font-weight: 400;
  margin: 0;

  line-height: 1;
  margin-top: 20px;
}

.left-text img {
  position: absolute;

  width: 86px;
  height: 86px;
  right: 0;
  top: 50%;
  transform: translate(175%, -40%);
}

.hero-main {
  flex: 0 1 820px;
  flex-shrink: 1;
  position: relative;
  width: min(820px, 100%);
  min-width: 640px;
  aspect-ratio: 820 / 567;
  z-index: 1;
}

.hero-main-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-main-content {
  position: relative;
  z-index: 2;
  padding: 24px 14px;
}

.plan-card {
  border-radius: 20px;
  background: #00000052;
  width: 318px;
  padding: 15px 0;
  position: relative;
  top: 0;
  left: 0;
}

.plan-days {
  font-family: "BlenderPro", sans-serif;
  font-size: 16px;
  font-weight: 700;

  color: #f1aa1d;

  background: #fff;

  padding: 5px 24px;
  border-radius: 14px;
  margin-left: 21px;
  margin-top: 15px;
}

.plan-title {
  font-family: "AmoraFree", sans-serif;
  font-size: 46px;
  letter-spacing: 3px;
  font-weight: 400;
  margin: 0;
  padding: 0 12px 0 21px;
}

.plan-info-cards {
  padding-right: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 21px;
}

.plan-info {
  display: flex;
  justify-content: space-between;
  margin: 2px 0;
}

.plan-label {
  font-family: "BlenderPro", sans-serif;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  color: #ffffff;
}

.plan-value {
  font-family: "BlenderPro", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
}

.plan-line {
  border: 1px solid #ffffff6b;
}

.indicator-segment {
  width: 50px;
  height: 28px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.indicator-segment.active {
  background: #1a1a1a;
}

.indicator-segment:hover:not(.active) {
  background: rgba(0, 0, 0, 0.5);
}

.plan-indicator-skewed {
  display: flex;
  padding: 4px;
  border-radius: 8px;
  width: fit-content;
  margin-top: 3px;
  margin-left: 107px;
}

.indicator-skewed {
  width: 24px;
  height: 17px;
  background: #14161c;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  clip-path: polygon(35% 0%, 100% 0%, 65% 100%, 0% 100%);
  border-radius: 2px;
}

.indicator-skewed.active {
  background: linear-gradient(180deg, #f5bc29 0%, #ef9a12 100%);
  width: 50px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
}

.indicator-skewed:hover:not(.active) {
  background: #14161c;
}

.hero-aside--right {
  display: flex;
  flex-direction: column;

  flex: 1 1 260px;
  max-width: 340px;
}

.right-buttons {
  display: flex;
  gap: 30px;
  justify-content: flex-end;
}

.right-button {
  font-family: "BlenderPro", sans-serif;
  font-size: 16px;
  color: #222832;
  background: #ffffff;
  cursor: pointer;
  text-transform: uppercase;
  padding: 5px 24px;
  border-radius: 46px;
}

.anim-button {
  animation: buttonPulse 3s ease-out infinite;
}

@keyframes buttonPulse {
  0%,
  100% {
    background: #ffffff;
    color: #222832;
    box-shadow: none;
  }
  50% {
    background: #f0f0f0;
    box-shadow: 0 0 22px rgb(255 192 33);
    color: #222832;
    /* background: linear-gradient(90deg, #f5bc29 0%, #ef9a12 100%); */
  }
}

.right-button:hover {
  background: linear-gradient(90deg, #f5bc29 0%, #ef9a12 100%) !important;
  color: #222832 !important;
  animation: none !important;
  box-shadow: none !important;
}

.right-title {
  margin-top: 52px;
  text-align: right;
  position: relative;
  max-width: 320px;
}

.right-title h1 {
  font-family: "AmoraFree", sans-serif;
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 400;
  margin: 0;
  line-height: 1;
  position: absolute;
  right: 0;
  top: 0;
  white-space: nowrap;
}

.right-title h1:nth-child(1) {
  top: 0;
  letter-spacing: 3px;
}

.right-title h1:nth-child(2) {
  top: 96px;
  letter-spacing: 4px;
}

.right-title h1:nth-child(3) {
  top: 190px;
  letter-spacing: 3px;
}

.right-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 300px;
}

.right-descr {
  margin-top: 300px;
  text-align: right;
  font-family: "BlenderPro", sans-serif;
  font-size: 20px;
  color: #757c8b;
  line-height: 25px;
  letter-spacing: 0.5px;
}

.content-button {
  text-align: right;
  align-self: flex-end;
  font-size: 18px;
  font-weight: 700;

  padding: 12px 70px;

  font-family: "BlenderPro", sans-serif;
  color: #222832;
  background: #ffffff;
  cursor: pointer;
  text-transform: uppercase;
  border-radius: 46px;
}

.content-button:hover {
  background: linear-gradient(90deg, #f5bc29 0%, #ef9a12 100%);
  color: #222832;
}

/*=================FEATURE=================*/

.feature {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  background-image: url(./media/card-bg.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 580px;

  padding: 13px 23px 20px;
}

.feature-card-info {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: space-between;
}

.card-rank {
  display: flex;
  flex-direction: row;
  align-items: center;

  gap: 16px;
}

.card-icon {
  background: #363c4b;
  border-radius: 10px;
  padding: 16px;
}

.card-icon img {
  display: block;
  width: 44px;
  height: 44px;
}

.card-title h2 {
  font-family: "BlenderPro", sans-serif;
  font-size: 26px;
  font-weight: 500;

  margin: 0;

  background: linear-gradient(90deg, #f5bc29 0%, #ef9a12 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-title span {
  font-family: "BlenderPro", sans-serif;
  font-size: 18px;
  font-weight: 500;

  margin: 0;

  color: #757c8b;
}

.card-info-right h1 {
  font-family: "BlenderPro", sans-serif;
  font-size: 90px;
  font-weight: 700;
  font-style: medium;

  margin: 0;

  background: linear-gradient(90deg, #f5bc29 0%, #ef9a12 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.card-info-right span {
  font-family: "BlenderPro", sans-serif;
  font-size: 22px;
  font-weight: 500;

  margin: 0;

  text-transform: uppercase;
  letter-spacing: 3.4px;
}

.card-commission-title {
  font-family: "BlenderPro", sans-serif;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;

  color: #757c8b;

  margin: 0;
}

.card-lines {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  grid-auto-flow: column;
  gap: 6px 0px;
}

.card-line {
  display: flex;
  flex-direction: column;
}

.line-info {
  display: flex;
  gap: 175px;
}

.line-label {
  font-family: "BlenderPro", sans-serif;
  font-size: 16px;
  font-weight: 500;

  color: #757c8b;

  width: 40px;
}

.line-value {
  font-family: "BlenderPro", sans-serif;
  font-size: 16px;
  font-weight: 500;

  color: #757c8b;
}

.line,
.line-color {
  width: 230px;
  height: 14px;
  border-radius: 100px;

  background: #313745;
}

.purples {
  background: #a572da;
  width: 60px;
}

.card-footer {
  display: flex;
  justify-content: space-between;
}

.card-indicator-skewed {
  display: flex;
  padding: 4px;
  border-radius: 8px;
  width: fit-content;
  margin-top: 25px;
}

.card-inactive {
  display: flex;
  justify-content: center;
  /* align-items: flex-end; */
  gap: 33px;
}

.card-number {
  font-family: "BlenderPro", sans-serif;
  font-weight: 700;
}

.presently {
  color: #757c8b;
  font-size: 46.5px;
}

.slash {
  color: #757c8b;
  font-size: 70px;
}

.after {
  background: linear-gradient(90deg, #f5bc29 0%, #ef9a12 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  font-size: 70px;
}

.card-button {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  left: 20px;
  top: 0;
}

.feature-content {
  display: flex;
  flex-direction: column;

  width: 440px;
}

.feature-content h1 {
  font-family: "AmoraFree", sans-serif;
  font-size: 52px;
  font-weight: 400;
  margin: 0;

  text-transform: uppercase;
  letter-spacing: 10px;
}

.feature-content p {
  font-family: "BlenderPro", sans-serif;
  font-size: 20px;
  color: #757c8b;
  line-height: 30px;
  margin: 10px 0px;
  letter-spacing: 2px;
}

.feature-coins {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
}

.feature-coin {
  display: flex;
  gap: 5px;
  align-items: center;

  background: #ffffff;
  border-radius: 46px;
  padding: 5px;
  width: fit-content;
}

.feature-coin span {
  font-family: "BlenderPro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #222832;

  text-transform: uppercase;
}

.feature-preview {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.feature-preview img {
  display: block;
  width: 100%;
}

.play-button {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 80px;
  height: 285px;
  background: none;
  border: none;
  cursor: pointer;
}

.blues {
  background: #5590dc;
  width: 60px;
}

.greens {
  background: #46d27a;
  width: 60px;
}

.oranges {
  background: #dc8037;
  width: 60px;
}

.reds {
  background: #ca5d5e;
  width: 60px;
}

.yellows {
  background: #f6c915;
  width: 60px;
}

.card-info-right {
  text-align: center;
}

.play-button {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 80px;
  height: 285px;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.play-button:hover {
  transform: scale(1.1);
}

.video-fullscreen-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.close-video {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10001;
}

.close-video:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.close-video svg {
  pointer-events: none;
}

.right-button:hover {
  background: linear-gradient(90deg, #f5bc29 0%, #ef9a12 100%);
  color: #222832;
}

.navigation-buttons li :hover {
  color: #f5bc29;
}

/*=================AUTH CONTAINER=================*/
body:has(.container--auth),
body:has(.container--faq),
body:has(.container--contacts),
body:has(.container--blog),
body:has(.container--analytics) {
  margin: 0;
}

body:has(.container--auth) {
  overflow-y: hidden;
}

.container--auth {
  background-image: none;
  background-color: #0e1115;
  height: 100vh;
}

/*=================AUTH NAV=================*/
.nav--auth-center {
  background: #222222;
  border-radius: 46px;
}

.navigation--auth {
  display: none;
}

.nav--auth .navigation-buttons {
  margin: 0;
  padding: 0;
  gap: 0;
}

.nav--auth .navigation-buttons li {
  list-style: none;
}

.nav--auth .navigation-buttons li a {
  padding: 10px 20px;
  border-radius: 46px;
  display: block;
  transition: all 0.3s ease;
}

.nav--auth .navigation-buttons li a:hover {
  background: #ffbd42;
  color: #ffffff;
}

/*=================AUTH PAGE=================*/
.auth-page {
  display: flex;
  flex-direction: row;
  align-items: center;
  min-height: calc(100vh - 140px);
  gap: 40px;
}

.auth-image {
  flex: 0 0 46%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: flex-end;
}

.auth-image img {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
}

.auth-form-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.auth-form {
  width: 100%;
  max-width: 400px;
}

.auth-title {
  font-family: "BlenderPro", sans-serif;
  font-size: 60px;
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1.15;
  text-align: center;
}

.auth-field {
  margin-bottom: 18px;
}

.auth-label {
  display: block;
  font-family: "BlenderPro", sans-serif;
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 8px;
  padding-left: 16px;
  font-weight: 400;
  letter-spacing: 0.45px;
}

.auth-input {
  width: 100%;
  height: 52px;
  background: #1a1d24;
  border-radius: 9px;
  padding: 0 18px;
  font-family: "BlenderPro", sans-serif;
  font-size: 16px;
  color: #808080;
  outline: none;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
  border: none;
}

.auth-input::placeholder {
  color: #757c8b;
}

.auth-input:focus {
  border-color: #f5bc29;
}

.auth-input-wrapper {
  position: relative;
}

.auth-input-wrapper .auth-input {
  padding-right: 50px;
}

.auth-eye {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-eye svg {
  display: block;
  width: 22px;
  height: 22px;
}

.auth-eye.visible svg {
  stroke: #f5bc29;
}

.auth-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 6px 0 28px;
}

.auth-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.auth-toggle input {
  display: none;
}

.auth-toggle-slider {
  width: 42px;
  height: 24px;
  background: #2d2e30;
  border-radius: 12px;
  border: 1px solid #ffffff;
  position: relative;
  transition: background 0.3s ease;
}

.auth-toggle-slider::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: #ffffff;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: all 0.3s ease;
}

.auth-toggle input:checked + .auth-toggle-slider {
  background: linear-gradient(90deg, #f5bc29 0%, #ef9a12 100%);
}

.auth-toggle input:checked + .auth-toggle-slider::after {
  left: 21px;
  background: #ffffff;
}

.auth-toggle-text {
  font-family: "BlenderPro", sans-serif;
  font-size: 18px;
  color: #ffffff;
  letter-spacing: 0.45px;
}

.auth-forgot {
  font-family: "BlenderPro", sans-serif;
  letter-spacing: 0.45px;
  font-size: 18px;
  color: #f5bc29;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.auth-forgot:hover {
  opacity: 0.8;
}

.auth-submit {
  width: 100%;
  height: 52px;
  background: linear-gradient(90deg, #f5bc29 0%, #ef9a12 100%);
  border: none;
  border-radius: 9px;
  font-family: "BlenderPro", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
  letter-spacing: 0.45px;
}

.auth-submit:hover {
  opacity: 0.9;
}

.auth-divider {
  height: 1px;
  background: #e5e5e5;
  margin: 28px 0;
}

.auth-switch {
  font-family: "BlenderPro", sans-serif;
  font-size: 18px;
  color: #ffffff;
  text-align: center;
  margin: 0;
  letter-spacing: 0.45px;
}

.auth-switch a {
  color: #f3b323;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.auth-switch a:hover {
  opacity: 0.8;
}

/* Checkbox */
.auth-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin-bottom: 14px;
}

.auth-checkbox input {
  display: none;
}

.auth-checkbox-box {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1px solid #363c4b;
  border-radius: 3px;
  background: #1a1d24;
  position: relative;
  transition: all 0.3s ease;
}

.auth-checkbox input:checked + .auth-checkbox-box {
  background: linear-gradient(90deg, #f5bc29 0%, #ef9a12 100%);
  border-color: #f5bc29;
}

.auth-checkbox input:checked + .auth-checkbox-box::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #0e1115;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.auth-checkbox-text {
  font-family: "BlenderPro", sans-serif;
  font-size: 15px;
  color: #ffffff;
  letter-spacing: 0.45px;
}

.auth-checkbox-text a {
  color: #f3b323;
  text-decoration: none;
  font-weight: 700;
}

.auth-checkbox-text a:hover {
  opacity: 0.8;
}

/* Captcha */
.auth-captcha {
  display: flex;
  align-items: center;
  gap: 0;
  background: #1a1d24;
  border-radius: 9px;
  overflow: hidden;
}

.auth-captcha .auth-input {
  border-radius: 0 9px 9px 0;
  flex: 1;
}

.auth-captcha-image {
  min-width: 80px;
  height: 52px;
  background: #ffffff;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
}

.auth-captcha-image span {
  font-family: "AmoraFree", sans-serif;
  font-size: 18px;
  color: #0e1115;
  font-style: italic;
  letter-spacing: 2px;
  user-select: none;
}

/*=================FAQ PAGE=================*/
.container--faq {
  background-image: none;
  background-color: #0e1115;
  padding-bottom: 0;
  margin-bottom: 0;
}

/* Hero */
.faq-hero,
.about-hero {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 70px 0 0;
}

.faq-hero-ql {
  position: absolute;
  left: 232px;
  top: 75px;
  width: 230px;
}

.faq-hero-qr {
  position: absolute;
  right: 245px;
  top: -10px;
  width: 240px;
}

.faq-hero-qc {
  display: block;
  margin: -195px auto 0;
  width: 750px;
}

.faq-hero-content {
  position: relative;
  z-index: 1;
}

.faq-badge {
  display: inline-block;
  background: linear-gradient(90deg, #f5bc29 0%, #ef9a12 100%);
  color: #fff;
  font-family: "BlenderPro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  padding: 7px 22px;
  border-radius: 46px;
  margin-bottom: 18px;
}

.faq-hero-title {
  font-family: "BlenderProBold", sans-serif;
  font-size: 90px;
  font-weight: 700;
  margin: 0 0 18px;
}

.faq-hero-text {
  font-family: "BlenderPro", sans-serif;
  font-size: 20px;
  color: #757c8b;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.5;
  letter-spacing: 0.3px;
}

/* Bottom panel */
.faq-bottom {
  position: relative;
  background-image: url(./media/faq-bg.svg);
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
  padding: 73px 160px 160px;
  z-index: 2;
  margin-top: -230px;
}

/* Tabs */
.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  padding-bottom: 60px;
}

.faq-tab {
  font-family: "BlenderPro", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #757c8b;
  background: #1b1c25;
  border: none;
  border-radius: 30px;
  padding: 26px 34px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.faq-tab:hover {
  background: #ef9a12;

  color: #fff;
}

/* Content */
.faq-content {
  display: flex;
  gap: 80px;
  padding: 46px 0 0;
  align-items: flex-start;
}

.faq-content-left {
  flex: 1;
}

.faq-content-title {
  font-family: "BlenderPro", sans-serif;
  font-size: 78px;
  font-weight: 400;
  font-style: italic;
  margin: 0 0 28px;
  line-height: 1.12;
}

.faq-content-descr {
  font-family: "BlenderPro", sans-serif;
  font-size: 19px;
  color: #757c8b;
  line-height: 1.6;
  margin: 0;
  letter-spacing: 0.3px;
}

.faq-content-right {
  flex: 0 0 790px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Accordion items */
.faq-item {
  background: #1b1c25;
  border-radius: 30px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 36px;
  cursor: pointer;
}

.faq-item-title {
  font-family: "BlenderPro", sans-serif;
  font-size: 25px;
  font-weight: 600;
  color: #ffffff;
}

.faq-item-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item-toggle svg {
  display: block;
  width: 38px;
  height: 38px;
}

.faq-item-body {
  padding: 0 36px 32px;
}

.faq-item-body p {
  font-family: "BlenderPro", sans-serif;
  font-size: 18px;
  color: #757c8b;
  line-height: 1.6;
  margin: 0;
  letter-spacing: 0.3px;
}

.faq-item:not(.active) .faq-item-body {
  display: none;
}

/*=================MEDIA QUERIES=================*/

@media (max-width: 1600px) {
  .hero {
    justify-content: space-between;
    gap: 30px;
  }

  .hero-aside--left {
    flex: 0 0 280px;
  }

  .hero-main {
    flex: 0 1 740px;
  }

  .right-title h1:nth-child(1) {
    top: 8px;
  }

  .right-title h1:nth-child(3) {
    top: 182px;
  }

  .plan-card {
    width: 305px;
  }

  .plan-info-cards {
    gap: 8px;
  }

  .left-text h1 {
    font-size: 38px;
  }

  .left-text {
    gap: 12px;
  }

  .left-text img {
    width: 72px;
    height: 72px;
  }

  .img-text {
    top: 196px;
    padding: 14px 9px 14px;
    gap: 10px;
  }

  .feature-card {
    width: 500px;
  }

  .card-commission-title {
    font-size: 17px;
  }

  .card-info-right h1 {
    font-size: 80px;
  }

  .card-info-right span {
    font-size: 18px;
  }

  .card-lines {
    gap: 5px 18px;
  }

  .line,
  .line-color {
    width: 168px;
  }

  .purple {
    width: 60px;
  }

  .line-info {
    gap: 112px;
  }

  .card-indicator-skewed {
    margin-top: 40px;
  }

  .card-inactive {
    align-items: normal;
    gap: 14px;
  }

  .card-button {
    left: 25px;
    top: -10px;
  }

  .card-button img {
    width: 80px;
    height: 80px;
  }

  .feature-content h1 {
    font-size: 40px;
  }

  .feature-content p {
    margin: 0;
  }

  .container {
    padding: 27px 10px 20px;
  }
}

@media (max-width: 1440px) {
  .container {
    max-width: 1440px;
    padding: 20px 15px;
    background-size: cover;
  }

  .hero {
    gap: 44px;
    justify-content: normal;
    margin-bottom: 15px;
  }

  .hero-aside--left {
    flex: 0 0 260px;
  }

  .left-img {
    width: 284px;
  }

  .img-text {
    top: 180px;
    padding: 12px 8px;
    gap: 8px;
  }

  .left-text {
    gap: 6px;
  }

  .left-text h1 {
    font-size: 32px;
  }

  .left-text img {
    width: 64px;
    height: 64px;
    position: static;
    transform: translate(0, 0);
  }

  .hero-main {
    flex: 0 1 715px;
    min-width: 520px;
    min-height: 500px;
    border-radius: 20px;
    overflow: hidden;
  }

  .hero-main-background {
    display: none;
  }

  .hero-main-content {
    background: url(./media/robot.png);
    background-size: cover;
    background-position: left;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    padding: 0;
  }

  .plan-card {
    width: 280px;
    top: 10px;
    left: 10px;
    margin-bottom: 15px;
  }

  .plan-title {
    font-size: 38px;
  }

  .plan-info-cards {
    gap: 6px;
  }

  .plan-label,
  .plan-value {
    font-size: 16px;
  }

  .hero-aside--right {
    flex: 1 1 240px;
    max-width: 300px;
  }

  .right-title h1 {
    font-size: clamp(40px, 3.9vw, 80px);
    position: static;
  }

  .right-descr {
    margin-top: 50px;
    font-size: 18px;
  }

  .feature {
    flex-wrap: wrap;
    gap: 30px;
  }

  .feature-card {
    width: 578px;
    padding: 14px 14px 20px;
    order: 1;
  }

  .feature-preview {
    flex: 1 1 auto;
    min-width: 300px;
    max-width: 695px;
    height: 345px;
    order: 2;
    object-fit: cover;
  }

  .feature-content {
    width: 100%;
    order: 3;
  }

  .feature-content h1 {
    font-size: 38px;
    letter-spacing: 6px;
  }

  .card-button {
    left: 18px;
    top: 23px;
  }

  .right-title {
    position: static;
    margin-top: 26px;
    text-align: left;
  }

  .right-buttons {
    justify-content: flex-start;
  }

  .hero-button {
    position: absolute;
    bottom: 0;
  }
}

@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 20px;
    background-size: contain;
  }

  .hero {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: baseline;
  }

  .hero-top {
    display: flex;
    flex: 1 1 100%;
    gap: 40px;
    align-items: flex-start;
  }

  .hero-aside--left {
    flex: 0 0 260px;
    order: 1;
  }

  .hero-main {
    flex: 1 1 615px;
    height: 570px;
    order: 2;
  }

  .hero-aside--right {
    flex: 1 1 100%;
    order: 3;
    margin-top: 20px;
    flex-wrap: wrap;
    max-height: 300px;
  }

  .left-img {
    width: 300px;
  }

  .plan-card {
    width: 100%;
    max-width: 400px;
  }

  .plan-indicator-skewed {
    margin-left: 145px;
    margin-right: auto;
  }

  .feature {
    gap: 15px;
  }

  .feature-card {
    width: 500px;
  }

  .feature-preview {
    flex: 1 1 auto;
    min-width: 350px;
    max-width: 695px;
    height: 320px;
  }

  .card-indicator-skewed {
    margin-top: 30px;
  }

  .card-button {
    left: 15px;
    top: -10px;
  }

  .card-footer {
    height: 60px;
  }

  .line-info {
    gap: 96px;
  }

  .right-content {
    flex-direction: row;
    align-items: center;
  }
  .right-descr {
    text-align: left;
    margin-top: 46px;
    min-width: 330px;
  }

  .content-button {
    align-self: center;
    display: block;
  }

  .navigation-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .right-title {
    margin-right: 45px;
  }

  .feature-content {
    margin-top: 18px;
  }

  .card-inactive {
    align-self: anchor-center;
  }

  .line,
  .line-color {
    width: 155px;
  }

  .hero-button {
    bottom: 10px;
    left: 10px;
  }
}

@media (max-width: 1000px) {
  .container {
    background: #14161c;
    border-radius: 30px;
  }

  .container--aboutus {
    background: none;
  }

  nav {
    height: auto;
    position: relative;
  }

  .navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a1d24;
    padding: 20px;
    border-radius: 10px;
    margin-top: 10px;
    z-index: 1000;
  }

  .navigation.active {
    display: block;
  }

  .navigation-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .navigation-buttons li {
    width: 100%;
    padding: 10px;
    border-bottom: 1px solid #2a2f38;
  }

  .navigation-buttons li:last-child {
    border-bottom: none;
  }

  .nav-buttons {
    margin-left: auto;
  }

  .burger-menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    margin-left: 15px;
  }

  .burger-line {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 8px);
  }

  .burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -7px);
  }
  .hero {
    gap: 30px;
    flex-wrap: wrap;
  }

  .hero-aside--left,
  .hero-aside--right {
    flex: 1 1 calc(50% - 15px);
    max-width: calc(50% - 15px);
    order: 1;
  }

  .hero-aside--left {
    flex: 0 0 calc(27% - 15px);
  }

  .right-button {
    font-size: 22px;
  }

  .hero-main {
    order: 2;
    flex: 1 1 100%;
    min-width: 100%;
    min-height: 650px;
    max-width: 100%;
  }

  .left-img {
    width: 240px;
  }

  .img-text {
    top: 165px;
    padding: 10px 7px;
    gap: 6px;
  }

  .label-android {
    font-size: 16px;
  }

  .descr-android {
    font-size: 14px;
  }

  .label-number {
    font-size: 32px;
  }

  .left-text h1 {
    font-size: 28px;
  }

  .left-text img {
    width: 56px;
    height: 56px;
  }

  .plan-card {
    width: 290px;
  }

  .plan-info-cards {
    gap: 12px;
  }

  .plan-days {
    font-size: 14px;
    padding: 4px 18px;
  }

  .plan-title {
    font-size: 32px;
  }

  .plan-label,
  .plan-value {
    font-size: 14px;
  }

  .plan-indicator-skewed {
    margin-left: 80px;
  }

  .indicator-skewed {
    width: 20px;
    height: 14px;
  }

  .indicator-skewed.active {
    width: 40px;
  }

  .hero-aside--right {
    max-height: none;
  }

  .right-title {
    max-width: 100%;
  }

  .right-title h1 {
    font-size: clamp(36px, 6.5vw, 70px);
  }

  .right-content {
    gap: 26px;
  }

  .right-descr {
    font-size: 23px;
    margin-top: 40px;
    min-width: 282px;
    max-width: 470px;
  }

  .content-button {
    font-size: 16px;
    padding: 10px 50px;
  }

  .feature {
    flex-direction: column;
    gap: 20px;
  }

  .feature-card,
  .feature-content,
  .feature-preview {
    width: 100%;
    max-width: 100%;
    order: unset;
  }

  .feature-card {
    min-height: 300px;
    width: 97%;
    background: #242832;
    border-radius: 30px;
  }

  .feature-preview {
    height: 400px;
  }

  .card-icon {
    padding: 12px;
  }

  .card-icon img {
    width: 36px;
    height: 36px;
  }

  .card-title h2 {
    font-size: 32px;
  }

  .card-title span {
    font-size: 24px;
  }

  .card-info-right h1 {
    font-size: 70px;
  }

  .card-info-right span {
    font-size: 16px;
  }

  .card-commission-title {
    font-size: 16px;
  }

  .card-inactive {
    gap: 32px;
    align-self: auto;
    margin-top: 22px;
  }

  .line,
  .line-color {
    width: 340px;
    height: 17px;
  }

  .line-info {
    gap: 275px;
  }

  .line-label,
  .line-value {
    font-size: 16px;
  }

  .card-number {
    font-size: 16px;
  }

  .presently {
    font-size: 40px;
  }

  .slash {
    font-size: 60px;
  }

  .after {
    font-size: 60px;
  }

  .card-button img {
    width: 80px;
    height: 80px;
  }

  .feature-preview {
    height: 300px;
    min-width: 300px;
  }

  .feature-content h1 {
    font-size: 34px;
    letter-spacing: 4px;
  }

  .feature-content p {
    font-size: 18px;
    line-height: 26px;
  }

  .feature-coin span {
    font-size: 14px;
  }

  .play-button {
    width: 70px;
    height: 250px;
  }

  .card-button {
    left: 11px;
    top: -14px;
  }
}

@media (max-width: 768px) {
  .hero {
    gap: 16px;
    flex-wrap: wrap;
  }

  .right-button {
    font-size: 14px;
    padding: 5px 20px;
  }

  .right-descr {
    font-size: 20px;
    margin-top: 40px;
    min-width: 238px;
    max-width: 470px;
  }

  .content-button {
    font-size: 10px;
    padding: 10px 50px;
  }

  .right-content {
    gap: 10px;
    flex-direction: column;
  }

  .logo-text {
    display: none;
  }

  .left-img {
    width: 200px;
  }

  .label-number {
    font-size: 29px;
  }
  .descr-android {
    font-size: 12px;
  }

  .label-android {
    font-size: 13px;
  }

  .img-text {
    top: 145px;
    padding: 6px 4px;
    gap: 2px;
  }

  .left-text h1 {
    font-size: 23px;
  }

  .line,
  .line-color {
    width: 252px;
    height: 17px;
  }

  .line-info {
    gap: 194px;
  }
}

@media (max-width: 560px) {
  .right-descr {
    font-size: 15px;
    margin-top: 20px;
  }

  .right-button {
    font-size: 14px;
    padding: 5px 14px;
  }

  .line,
  .line-color {
    width: 200px;
    height: 17px;
  }

  .line-info {
    gap: 144px;
  }
}

@media (max-width: 540px) {
  .hero-aside--left {
    flex: 1 1 100%;
    max-width: 100%;
    order: 2;
    display: flex;
    justify-content: center;
  }
  .hero-aside--right {
    flex: 1 1 100%;
    max-width: 100%;
    order: 1;
    margin-top: 10px;
    display: flex;
    justify-content: center;
  }

  .hero-main {
    order: 3;
    flex: 1 1 100%;
    min-width: 100%;
    min-height: 364px;
    width: auto;
    height: auto;
  }

  .hero-main-content {
    padding: 0;
    position: static;
  }

  .left-img {
    width: 340px;
  }

  .left-text h1 {
    font-size: 42px;
  }

  .left-text img {
    width: 70px;
    height: 70px;
  }

  .right-button {
    font-size: 25px;
    padding: 5px 14px;
  }

  .right-title h1 {
    font-size: clamp(70px, 6.5vw, 70px);
  }

  .hero-aside--right {
    flex: 1 1 100%;
    max-width: 100%;
    order: 1;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .right-descr {
    font-size: 24px;
    margin-top: 20px;
  }

  .right-title {
    margin-right: 0;
    text-align: center;
  }

  .label-android {
    font-size: 24px;
  }

  .descr-android {
    font-size: 15px;
  }

  .label-number {
    font-size: 40px;
  }

  .img-text {
    top: 256px;
    padding: 12px 16px;
    gap: 9px;
  }

  .feature-card {
    min-height: 300px;
    width: 90%;
    background: #242832;
    border-radius: 30px;
  }

  .container {
    padding: 0;
  }

  .line,
  .line-color {
    width: 162px;
    height: 17px;
  }

  .line-info {
    gap: 102px;
  }

  .card-button img {
    width: 62px;
    height: 77px;
  }

  .card-button {
    left: 11px;
    top: 0px;
  }

  .logo img {
    width: 58px;
  }

  .nav-auth {
    font-size: 14px;
  }

  .nav-sellector {
    font-size: 14px;
  }

  .dropdown-menu {
    min-width: 115px;
  }

  .dropdown-item {
    font-size: 14px;
  }

  .nav-buttons {
    gap: 4px;
  }

  .card-lines {
    gap: 5px 10px;
  }

  .card-inactive {
    margin-top: 0;
  }

  .hero-button {
    bottom: 4px;
    left: 4px;
    width: 60px;
  }

  .plan-info-cards {
    gap: 5px;
  }

  .plan-indicator-skewed {
    margin-left: 104px;
  }
}

@media (max-width: 400px) {
  .line,
  .line-color {
    width: 130px;
    height: 17px;
  }

  .line-info {
    gap: 70px;
  }

  .plan-info-cards {
    gap: 2px;
  }

  .plan-title {
    font-size: 26px;
  }

  .plan-card {
    padding: 9px 0;
  }

  .feature-coins {
    align-items: center;
    justify-content: center;
  }

  .right-button {
    font-size: 19px;
  }

  .nav-sellector {
    padding: 7px 6px;
  }

  .login {
    padding: 7px 10px;
  }

  .register {
    padding: 7px 10px;
  }

  .right-title h1 {
    font-size: clamp(58px, 6.5vw, 70px);
  }

  .right-descr {
    font-size: 18px;
    margin-top: 20px;
  }

  .card-inactive {
    gap: 0px;
  }

  .card-title h2 {
    font-size: 18px;
  }

  .card-title span {
    font-size: 15px;
  }

  .card-info-right h1 {
    font-size: 50px;
  }

  .card-info-right span {
    font-size: 12px;
  }

  .card-button {
    left: 11px;
    top: -15px;
  }

  .after {
    font-size: 50px;
  }

  .slash {
    font-size: 50px;
  }

  .presently {
    font-size: 33px;
  }

  .card-number {
    font-size: 16px;
  }

  .card-inactive {
    margin-top: 34px;
  }
}

/*=================AUTH PAGE RESPONSIVE=================*/

/* Перебиваем стили main-страницы для auth/faq контейнеров на всех брейкпоинтах */
.container--auth,
.container--faq,
.container--contacts,
.container--blog,
.container--analytics {
  background-image: none !important;
  background-color: #0e1115 !important;
  border-radius: 0 !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

@media (max-width: 1400px) {
  .nav--auth .navigation-buttons li a {
    padding: 10px 16px;
  }
}

@media (max-width: 1200px) {
  .container--auth {
    padding: 20px 30px;
  }

  .nav--auth .navigation-buttons li a {
    padding: 10px 12px;
  }
}

@media (max-width: 1100px) {
  .nav--auth .navigation-buttons li a {
    padding: 10px 8px;
  }
}

@media (max-width: 1000px) {
  .nav--auth-center {
    display: none;
  }

  .container--auth .nav--auth {
    position: relative;
  }

  .navigation--auth {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a1d24;
    padding: 20px;
    border-radius: 10px;
    margin-top: 10px;
    z-index: 1000;
  }

  .navigation--auth.active {
    display: block;
  }

  .auth-image {
    display: none;
  }

  .auth-page {
    justify-content: center;
    min-height: calc(100vh - 100px);
  }

  .auth-form {
    max-width: 400px;
  }

  .auth-title {
    font-size: 44px;
  }

  .nav--auth .nav-sellector {
    padding: 10px 12px;
  }

  .nav--auth .login,
  .nav--auth .register {
    padding: 10px 12px;
  }
}

@media (max-width: 768px) {
  .container--auth {
    padding: 15px 20px;
  }

  .container--auth .logo-text {
    display: none;
  }

  .auth-title {
    font-size: 40px;
  }

  .nav--auth .nav-sellector {
    padding: 10px 10px;
  }

  .nav--auth .login,
  .nav--auth .register {
    padding: 10px 10px;
  }
}

@media (max-width: 540px) {
  .container--auth {
    padding: 10px 16px;
  }

  .auth-title {
    font-size: 34px;
  }

  .auth-form {
    max-width: 100%;
  }

  .nav--auth .nav-sellector {
    padding: 10px 8px;
  }

  .nav--auth .login,
  .nav--auth .register {
    padding: 10px 8px;
  }
}

@media (max-width: 400px) {
  .auth-title {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .auth-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .auth-submit {
    height: 48px;
    font-size: 18px;
  }

  .auth-toggle-text,
  .auth-forgot {
    font-size: 14px;
  }

  .nav--auth .nav-sellector {
    padding: 10px 6px;
  }

  .nav--auth .login,
  .nav--auth .register {
    padding: 10px 6px;
  }
}

/*=================FAQ PAGE RESPONSIVE=================*/
@media (max-width: 1400px) {
  .faq-hero-ql {
    left: 140px;
    width: 200px;
  }

  .faq-hero-qr {
    right: 150px;
    width: 200px;
  }

  .faq-hero-qc {
    width: 600px;
    margin-top: -150px;
  }

  .faq-bottom {
    padding: 60px 80px 120px;
    margin-top: -180px;
  }

  .faq-content-right {
    flex: 0 0 600px;
  }

  .faq-content-title {
    font-size: 60px;
  }

  .faq-content {
    gap: 60px;
  }

  .faq-tabs {
    gap: 18px;
  }

  .faq-tab {
    padding: 22px 28px;
  }

  .faq-item-header {
    padding: 34px 30px;
  }
}

@media (max-width: 1200px) {
  .faq-hero-ql {
    left: 60px;
    top: 60px;
    width: 170px;
  }

  .faq-hero-qr {
    right: 70px;
    width: 170px;
  }

  .faq-hero-qc {
    width: 480px;
    margin-top: -120px;
  }

  .faq-hero-title {
    font-size: 64px;
  }

  .faq-bottom {
    padding: 50px 50px 100px;
    margin-top: -140px;
    background-size: 106% auto;
  }

  .faq-content-right {
    flex: 0 0 480px;
  }

  .faq-content-title {
    font-size: 50px;
  }

  .faq-content {
    gap: 40px;
  }

  .faq-tab {
    padding: 18px 24px;
    font-size: 16px;
  }

  .faq-item-header {
    padding: 28px 26px;
  }

  .faq-item {
    border-radius: 22px;
  }
}

@media (max-width: 1000px) {
  .container--faq .nav--auth {
    position: relative;
  }

  .container--faq .nav--auth-center {
    display: none;
  }

  .container--faq .burger-menu {
    display: flex;
  }

  .container--faq .navigation--auth {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a1d24;
    padding: 20px;
    border-radius: 10px;
    margin-top: 10px;
    z-index: 1000;
  }

  .container--faq .navigation--auth.active {
    display: block;
  }

  .faq-hero {
    padding: 40px 0 0;
  }

  .faq-hero-ql {
    left: 20px;
    top: 40px;
    width: 130px;
  }

  .faq-hero-qr {
    right: 20px;
    width: 130px;
  }

  .faq-hero-qc {
    width: 360px;
    margin-top: -90px;
  }

  .faq-hero-title {
    font-size: 48px;
  }

  .faq-hero-text {
    font-size: 17px;
  }

  .faq-bottom {
    padding: 40px 30px 60px;
    margin-top: -100px;
    background-size: 110% auto;
  }

  .faq-content {
    flex-direction: column;
    gap: 30px;
  }

  .faq-content-left {
    flex: none;
    width: 100%;
  }

  .faq-content-right {
    flex: none;
    width: 100%;
  }

  .faq-content-title {
    font-size: 44px;
  }

  .faq-tabs {
    gap: 12px;
  }

  .faq-tab {
    font-size: 15px;
    padding: 16px 22px;
    border-radius: 24px;
  }

  .faq-item {
    border-radius: 20px;
  }

  .faq-item-header {
    padding: 24px 22px;
  }

  .faq-item-title {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .container--faq {
    padding: 15px 20px 0;
    margin-bottom: 0;
  }

  .container--faq .logo-text {
    display: none;
  }

  .faq-hero-ql,
  .faq-hero-qr {
    display: none;
  }

  .faq-hero {
    padding: 30px 0 0;
  }

  .faq-hero-title {
    font-size: 40px;
  }

  .faq-hero-text {
    font-size: 16px;
    max-width: 400px;
  }

  .faq-hero-qc {
    width: 280px;
    margin-top: -60px;
  }

  .faq-bottom {
    padding: 30px 20px 40px;
    margin-top: -70px;
    background-size: 114% auto;
  }

  .faq-tabs {
    gap: 8px;
    padding-bottom: 40px;
  }

  .faq-tab {
    font-size: 13px;
    padding: 12px 18px;
    border-radius: 20px;
  }

  .faq-content {
    padding: 20px 0 0;
  }

  .faq-content-title {
    font-size: 36px;
  }

  .faq-content-descr {
    font-size: 16px;
  }

  .faq-item-header {
    padding: 20px 20px;
  }

  .faq-item-title {
    font-size: 20px;
  }

  .faq-item {
    border-radius: 16px;
  }

  .faq-item-toggle svg {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 540px) {
  .container--faq {
    padding: 10px 16px 0;
    margin-bottom: 0;
  }

  .faq-hero {
    padding: 20px 0 0;
  }

  .faq-hero-title {
    font-size: 32px;
  }

  .faq-hero-text {
    font-size: 14px;
    max-width: 320px;
  }

  .faq-hero-qc {
    width: 220px;
    margin-top: -40px;
  }

  .faq-bottom {
    padding: 24px 16px 30px;
    margin-top: -50px;
    background-size: 118% auto;
  }

  .faq-tabs {
    gap: 6px;
    padding-bottom: 30px;
  }

  .faq-tab {
    font-size: 11px;
    padding: 10px 14px;
    border-radius: 16px;
  }

  .faq-content {
    padding: 10px 0 0;
  }

  .faq-content-title {
    font-size: 28px;
  }

  .faq-content-descr {
    font-size: 15px;
  }

  .faq-item-header {
    padding: 16px 16px;
  }

  .faq-item-title {
    font-size: 17px;
  }

  .faq-item-toggle svg {
    width: 28px;
    height: 28px;
  }

  .faq-item {
    border-radius: 14px;
  }

  .faq-item-body {
    padding: 0 16px 20px;
  }

  .faq-item-body p {
    font-size: 15px;
  }
}

@media (max-width: 400px) {
  .faq-hero-title {
    font-size: 26px;
  }

  .faq-hero-qc {
    width: 180px;
    margin-top: -30px;
  }

  .faq-bottom {
    padding: 20px 12px 24px;
    margin-top: -40px;
    background-size: 122% auto;
  }

  .faq-tab {
    font-size: 10px;
    padding: 8px 12px;
  }

  .faq-content-title {
    font-size: 24px;
  }

  .faq-item-title {
    font-size: 15px;
  }

  .faq-item-header {
    padding: 14px 14px;
  }
}

/*=================CONTACTS PAGE=================*/
.container--contacts {
  background-image: none;
  background-color: #0e1115;
}

/* Hero */
.contacts-hero {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  height: 459px;
  border-radius: 30px;
  overflow: hidden;
  background: url(./media/contacts-hero.png) center/cover no-repeat;
  display: flex;
  align-items: center;
}

.contacts-hero-content {
  position: relative;
  z-index: 1;
  padding-left: 62px;
}

.contacts-badge {
  display: inline-block;
  background: linear-gradient(90deg, #f5bc29 0%, #ef9a12 100%);
  color: #fff;
  font-family: "BlenderPro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  padding: 7px 22px;
  border-radius: 46px;
  margin-bottom: 18px;
}

.contacts-hero-title {
  font-family: "BlenderProBold", sans-serif;
  font-size: 90px;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.contacts-hero-notch {
  position: absolute;
  bottom: 0;
  right: 86px;
  width: 230px;
  height: 68px;
  background: #0e1115;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0;
}

.contacts-cta-btn {
  font-family: "BlenderPro", sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #0e1115;
  background: linear-gradient(90deg, #f5bc29 0%, #ef9a12 100%);
  border: none;
  border-radius: 28px;
  padding: 14px 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

.contacts-cta-btn:hover {
  opacity: 0.9;
}

/* Main content */
.contacts-main {
  display: flex;
  gap: 60px;
  max-width: 1600px;
  margin: 0 auto;
  padding-top: 81px;
  padding-bottom: 120px;
  align-items: flex-start;
}

.contacts-info {
  flex: 1;
  padding-top: 20px;
}

.contacts-info-title {
  font-family: "BlenderProBold", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 30px;
  line-height: 1.2;
}

.contacts-info-texts {
  margin-bottom: 50px;
}

.contacts-info-text {
  font-family: "BlenderPro", sans-serif;
  font-size: 17px;
  color: #757c8b;
  margin: 0 0 12px;
  line-height: 1.5;
  letter-spacing: 0.3px;
}

.contacts-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px 80px;
}

.contacts-info-heading {
  font-family: "BlenderProBold", sans-serif;
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  margin: 0 0 10px;
}

.contacts-info-value {
  font-family: "BlenderPro", sans-serif;
  font-size: 16px;
  color: #757c8b;
  margin: 0 0 4px;
  font-weight: 400;
  line-height: 1.4;
}

.contacts-social {
  margin-top: 50px;
}

.contacts-social-links {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  align-items: center;
}

.contacts-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 5px;
  transition: background 0.3s ease;
  text-decoration: none;
}

.contacts-social-link:hover {
  background: #2a2b35;
}

.contacts-social-link--tg {
  width: auto;
  padding: 0 14px;
  gap: 8px;
  background: #1b2026;
  border-radius: 10px;
}

.contacts-social-link--tg span {
  font-family: "BlenderPro", sans-serif;
  font-size: 14px;
  color: #757c8b;
  white-space: nowrap;
}

.contacts-social-link--tg:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* Form panel */
.contacts-form-panel {
  flex: 0 0 671px;
  background: #14161c;
  border-radius: 20px;
  padding: 61px 65px 30px;
}

.contacts-form-title {
  font-family: "BlenderProBold", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
}

.contacts-form-subtitle {
  font-family: "BlenderPro", sans-serif;
  font-size: 16px;
  color: #757c8b;
  margin: 0 0 40px;
  line-height: 1.5;
  letter-spacing: 0.3px;
}

.contacts-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contacts-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contacts-label {
  font-family: "BlenderPro", sans-serif;
  font-size: 16px;
  color: #fff;
  font-weight: 400;
}

.contacts-input,
.contacts-textarea {
  font-family: "BlenderPro", sans-serif;
  font-size: 16px;
  color: #fff;
  background: #17191f;
  border: 1px solid rgba(229, 229, 229, 0.09);
  border-radius: 9px;
  padding: 24px 20px;
  outline: none;
  transition: border-color 0.3s ease;
}

.contacts-input::placeholder,
.contacts-textarea::placeholder {
  color: #808080;
}

.contacts-input:focus,
.contacts-textarea:focus {
  border-color: rgba(245, 188, 41, 0.3);
}

.contacts-textarea {
  min-height: 190px;
  resize: vertical;
}

.contacts-submit {
  font-family: "BlenderProBold", sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(90deg, #f5bc29 0%, #ef9a12 100%);
  border: none;
  border-radius: 28px;
  padding: 16px 0;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 12px;
  transition: opacity 0.3s ease;
}

.contacts-submit:hover {
  opacity: 0.9;
}

/*=================CONTACTS PAGE RESPONSIVE (BASE + NAV)=================*/
@media (max-width: 1400px) {
  .contacts-hero {
    max-width: 100%;
    margin: 0 40px;
    height: 400px;
  }

  .contacts-hero-title {
    font-size: 64px;
  }

  .contacts-main {
    padding: 60px 40px 100px;
  }

  .contacts-form-panel {
    flex: 0 0 560px;
    padding: 50px 50px 30px;
  }

  .contacts-info-title {
    font-size: 36px;
  }

  .contacts-info-grid {
    gap: 40px 60px;
  }
}

@media (max-width: 1200px) {
  .contacts-hero {
    margin: 0 30px;
    height: 360px;
  }

  .contacts-hero-content {
    padding-left: 40px;
  }

  .contacts-hero-title {
    font-size: 54px;
  }

  .contacts-hero-notch {
    right: 60px;
    width: 250px;
    height: 60px;
  }

  .contacts-main {
    padding: 50px 30px 80px;
    gap: 40px;
  }

  .contacts-form-panel {
    flex: 0 0 480px;
    padding: 40px 40px 25px;
  }

  .contacts-form-title {
    font-size: 30px;
  }

  .contacts-info-title {
    font-size: 32px;
  }

  .contacts-info-grid {
    gap: 40px 30px;
  }
}

@media (max-width: 1000px) {
  .container--contacts .nav--auth {
    position: relative;
  }

  .container--contacts .nav--auth-center {
    display: none;
  }

  .container--contacts .burger-menu {
    display: flex;
  }

  .container--contacts .navigation--auth {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a1d24;
    padding: 20px;
    border-radius: 10px;
    margin-top: 10px;
    z-index: 1000;
  }

  .container--contacts .navigation--auth.active {
    display: block;
  }

  .contacts-main {
    flex-direction: column;
    padding: 40px 30px 60px;
  }

  .contacts-info {
    order: 2;
  }

  .contacts-info-title {
    font-size: 30px;
  }

  .contacts-form-panel {
    flex: none;
    width: 100%;
    order: 1;
  }

  .contacts-hero {
    margin: 0 20px;
    height: 320px;
  }

  .contacts-hero-title {
    font-size: 46px;
  }

  .contacts-hero-notch {
    right: 40px;
    width: 220px;
    height: 56px;
  }
}

@media (max-width: 768px) {
  .contacts-hero {
    margin: 0 16px;
    height: 280px;
    border-radius: 20px;
  }

  .contacts-hero-content {
    padding-left: 30px;
  }

  .contacts-hero-title {
    font-size: 38px;
  }

  .contacts-badge {
    font-size: 14px;
    padding: 5px 16px;
  }

  .contacts-hero-notch {
    right: 20px;
    width: 200px;
    height: 50px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }

  .contacts-main {
    padding: 30px 16px 50px;
  }

  .contacts-form-panel {
    padding: 36px 30px 24px;
  }

  .contacts-form-title {
    font-size: 26px;
  }

  .contacts-info-title {
    font-size: 28px;
  }

  .contacts-info-grid {
    gap: 30px 24px;
  }

  .contacts-info-heading {
    font-size: 16px;
  }

  .contacts-social {
    margin-top: 40px;
  }
}

@media (max-width: 540px) {
  .contacts-hero {
    margin: 0 12px;
    height: 240px;
    border-radius: 16px;
  }

  .contacts-hero-content {
    padding-left: 20px;
  }

  .contacts-hero-title {
    font-size: 32px;
  }

  .contacts-hero-notch {
    right: 12px;
    width: 180px;
    height: 46px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }

  .contacts-main {
    padding: 24px 12px 40px;
    gap: 30px;
  }

  .contacts-form-panel {
    padding: 30px 20px 20px;
    border-radius: 16px;
  }

  .contacts-form-title {
    font-size: 24px;
  }

  .contacts-info-title {
    font-size: 24px;
  }

  .contacts-info-texts {
    margin-bottom: 30px;
  }

  .contacts-info-text {
    font-size: 15px;
  }

  .contacts-input,
  .contacts-textarea {
    padding: 18px 16px;
    font-size: 15px;
  }

  .contacts-textarea {
    min-height: 150px;
  }

  .contacts-info-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contacts-social {
    margin-top: 30px;
  }

  .contacts-social-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 400px) {
  .contacts-hero {
    height: 200px;
  }

  .contacts-hero-title {
    font-size: 28px;
  }

  .contacts-badge {
    font-size: 12px;
    padding: 4px 14px;
    margin-bottom: 12px;
  }

  .contacts-hero-notch {
    right: 8px;
    width: 160px;
    height: 42px;
  }

  .contacts-cta-btn svg {
    width: 14px;
    height: 14px;
  }

  .contacts-form-panel {
    padding: 24px 16px 16px;
  }

  .contacts-form-title {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .contacts-input,
  .contacts-textarea {
    padding: 16px 14px;
    font-size: 14px;
    border-radius: 7px;
  }

  .contacts-submit {
    padding: 14px 0;
    font-size: 15px;
  }
}

/*=================BLOG PAGE=================*/
.container--blog {
  background-image: none;
  background-color: #0e1115;
}

/* Hero */
.blog-hero {
  text-align: center;
  padding: 60px 0 0;
}

.blog-badge {
  display: inline-block;
  background: linear-gradient(90deg, #f5bc29 0%, #ef9a12 100%);
  color: #fff;
  font-family: "BlenderPro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  padding: 7px 22px;
  border-radius: 46px;
  margin-bottom: 18px;
}

.blog-hero-title {
  font-family: "BlenderProBold", sans-serif;
  font-size: 90px;
  font-weight: 700;
  margin: 0 0 18px;
  color: #fff;
}

.blog-hero-text {
  font-family: "BlenderPro", sans-serif;
  font-size: 20px;
  color: #757c8b;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.5;
  letter-spacing: 0.3px;
}

/* Blog grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px 20px;
  max-width: 1610px;
  margin: 0 auto;
  padding: 90px 160px 0;
}

.blog-card {
  background: #14161c;
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-card-img {
  padding: 20px 20px 0;
}

.blog-card-img img {
  width: 100%;
  height: 337px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.blog-card-content {
  padding: 24px 20px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-title {
  font-family: "BlenderPro", sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card-text {
  flex: 1;
}

.blog-card-text p {
  font-family: "BlenderPro", sans-serif;
  font-size: 15px;
  color: #757c8b;
  line-height: 1.6;
  margin: 0 0 16px;
  letter-spacing: 0.3px;
}

.blog-card-text p:last-child {
  margin-bottom: 0;
}

.blog-card-date {
  font-family: "BlenderPro", sans-serif;
  font-size: 15px;
  color: #757c8b;
  margin-top: 24px;
}

/*=================FOOTER=================*/
.site-footer {
  position: relative;
  background-image: url(./media/faq-bg.svg);
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
  margin-top: 90px;
  padding: 0;
}

.footer-inner {
  padding: 80px 160px 40px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.footer-nav-link {
  font-family: "BlenderPro", sans-serif;
  font-size: 17px;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav-link:hover {
  color: #f5bc29;
}

.footer-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-actions .nav-auth {
  font-size: 15px;
}

.footer-middle {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 40px;
}

.footer-descr {
  font-family: "BlenderPro", sans-serif;
  font-size: 15px;
  color: #757c8b;
  max-width: 320px;
  line-height: 1.5;
  margin: 0;
}

.footer-right-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.footer-contact-item {
  font-family: "BlenderPro", sans-serif;
  font-size: 15px;
  color: #757c8b;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  transition: opacity 0.3s ease;
}

.footer-social-link:hover {
  opacity: 0.7;
}

.footer-line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 30px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-policy-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.footer-copyright {
  font-family: "BlenderPro", sans-serif;
  font-size: 14px;
  color: #757c8b;
  margin: 0;
}

.footer-policy-link {
  font-family: "BlenderPro", sans-serif;
  font-size: 14px;
  color: #757c8b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-policy-link:hover {
  color: #fff;
}

/*=================BLOG PAGE RESPONSIVE=================*/
@media (max-width: 1400px) {
  .blog-grid {
    padding: 70px 40px 0;
    gap: 30px 20px;
  }

  .blog-hero-title {
    font-size: 64px;
  }

  .blog-card {
    border-radius: 30px;
  }

  .blog-card-img img {
    height: 280px;
  }

  .footer-inner {
    padding: 70px 40px 30px;
  }

  .footer-nav {
    gap: 28px;
  }

  .site-footer {
    background-size: 115% auto;
  }
}

@media (max-width: 1200px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 60px 30px 0;
  }

  .blog-hero-title {
    font-size: 54px;
  }

  .blog-card-img img {
    height: 260px;
  }

  .footer-inner {
    padding: 60px 30px 30px;
  }

  .footer-nav {
    gap: 20px;
  }

  .footer-nav-link {
    font-size: 15px;
  }

  .footer-middle {
    flex-wrap: wrap;
  }

  .footer-actions .nav-auth {
    font-size: 14px;
  }
}

@media (max-width: 1000px) {
  .container--blog .nav--auth {
    position: relative;
  }

  .container--blog .nav--auth-center {
    display: none;
  }

  .container--blog .burger-menu {
    display: flex;
  }

  .container--blog .navigation--auth {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a1d24;
    padding: 20px;
    border-radius: 10px;
    margin-top: 10px;
    z-index: 1000;
  }

  .container--blog .navigation--auth.active {
    display: block;
  }

  .blog-hero {
    padding: 40px 20px 0;
  }

  .blog-hero-title {
    font-size: 46px;
  }

  .blog-hero-text {
    font-size: 17px;
  }

  .blog-grid {
    padding: 50px 20px 0;
  }

  .blog-card {
    border-radius: 24px;
  }

  .blog-card-img img {
    height: 220px;
    border-radius: 16px;
  }

  .footer-top {
    flex-wrap: wrap;
    gap: 24px;
  }

  .footer-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 28px;
  }

  .footer-inner {
    padding: 50px 20px 24px;
  }

  .footer-middle {
    flex-direction: column;
    gap: 20px;
  }

  .footer-right-col {
    align-items: flex-start;
  }

  .footer-contacts {
    align-items: flex-start;
  }

  .footer-bottom {
    flex-wrap: wrap;
    gap: 12px 30px;
  }

  .footer-policy-links {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    padding: 40px 16px 0;
    gap: 24px;
  }

  .blog-hero-title {
    font-size: 38px;
  }

  .blog-badge {
    font-size: 14px;
    padding: 5px 16px;
  }

  .blog-card-img {
    padding: 16px 16px 0;
  }

  .blog-card-img img {
    height: 200px;
    border-radius: 14px;
  }

  .blog-card-content {
    padding: 20px 16px 24px;
  }

  .blog-card {
    border-radius: 20px;
  }

  .container--blog {
    padding: 15px 16px 0 !important;
  }

  .site-footer {
    margin-top: 50px;
  }

  .footer-inner {
    padding: 40px 16px 20px;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-nav {
    order: 0;
    justify-content: flex-start;
  }

  .footer-descr {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-policy-links {
    gap: 16px;
  }
}

@media (max-width: 540px) {
  .container--blog {
    padding: 10px 16px 0 !important;
  }

  .blog-hero {
    padding: 30px 0 0;
  }

  .blog-hero-title {
    font-size: 32px;
  }

  .blog-hero-text {
    font-size: 15px;
    padding: 0 10px;
  }

  .blog-grid {
    padding: 30px 0 0;
  }

  .blog-card-img img {
    height: 180px;
  }

  .blog-card-title {
    font-size: 17px;
  }

  .blog-card-text p {
    font-size: 14px;
  }

  .blog-card-date {
    font-size: 14px;
  }

  .footer-nav {
    gap: 12px 20px;
  }

  .footer-nav-link {
    font-size: 14px;
  }

  .footer-contact-item {
    font-size: 14px;
  }

  .footer-copyright {
    font-size: 13px;
  }

  .footer-policy-link {
    font-size: 13px;
  }

  .footer-policy-links {
    flex-wrap: wrap;
    gap: 10px 16px;
  }
}

@media (max-width: 400px) {
  .container--blog {
    padding: 8px 12px 0 !important;
  }

  .blog-hero-title {
    font-size: 28px;
  }

  .blog-badge {
    font-size: 12px;
    padding: 4px 14px;
    margin-bottom: 12px;
  }

  .blog-grid {
    padding: 24px 0 0;
    gap: 20px;
  }

  .blog-card-img img {
    height: 160px;
  }

  .blog-card-img {
    padding: 12px 12px 0;
  }

  .blog-card-content {
    padding: 16px 12px 20px;
  }

  .blog-card-text p {
    font-size: 13px;
  }

  .footer-inner {
    padding: 30px 12px 16px;
  }

  .footer-top {
    gap: 16px;
  }

  .footer-middle {
    gap: 16px;
    margin-bottom: 24px;
  }

  .footer-actions .nav-auth {
    font-size: 13px;
  }

  .footer-social {
    gap: 10px;
  }

  .footer-nav {
    gap: 10px 16px;
  }

  .footer-nav-link {
    font-size: 13px;
  }
}

/*=================ANALYTICS PAGE=================*/
.container--analytics {
  background-image: none;
  background-color: #0e1115;
}

/* Hero */
.analytics-hero {
  text-align: center;
  padding: 60px 0 50px;
}

.analytics-hero-title {
  font-family: "BlenderProBold", sans-serif;
  font-size: 80px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: 2px;
}

.analytics-hero-text {
  font-family: "BlenderPro", sans-serif;
  font-size: 18px;
  color: #757c8b;
  margin: 0 0 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.analytics-hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.analytics-cta-btn {
  display: inline-block;
  font-family: "BlenderProBold", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(90deg, #f5bc29 0%, #ef9a12 100%);
  border-radius: 46px;
  padding: 14px 32px;
  text-decoration: none;
  transition: opacity 0.3s ease;
  text-transform: uppercase;
}

.analytics-cta-btn:hover {
  opacity: 0.9;
}

.analytics-arrow-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(90deg, #f5bc29 0%, #ef9a12 100%);
  color: #0e1115;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.analytics-arrow-btn:hover {
  opacity: 0.9;
}

.analytics-arrow-btn svg {
  width: 24px;
  height: 24px;
}

/* User Statistics */
.user-stats {
  padding: 0 160px 50px;
}

.user-stats-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.user-stats-title-group {
  font-family: "BlenderPro", sans-serif;

  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 0;
}

.user-stats-title {
  font-family: "BlenderProBold", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.user-stats-subtitle {
  font-family: "BlenderProBold", sans-serif;
  font-size: 40px;
  font-weight: 500;
  background: linear-gradient(90deg, #f5bc29 0%, #ef9a12 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.user-stats-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-stats-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.user-stats-arrow:hover {
  background: linear-gradient(180deg, #f5bc29 0%, #ef9a12 100%);
  color: #000;
}

.user-stats-arrow svg {
  width: 20px;
  height: 20px;
}

.user-stats-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: #222832 #14161c;
}

.user-stats-scroll::-webkit-scrollbar {
  height: 6px;
}

.user-stats-scroll::-webkit-scrollbar-track {
  background: #14161c;
  border-radius: 3px;
}

.user-stats-scroll::-webkit-scrollbar-thumb {
  background: #222832;
  border-radius: 3px;
}

.user-stats-card {
  flex: 0 0 auto;
  min-width: 180px;
  background: #14161c;
  border-radius: 16px;
  padding: 20px 24px;
}

.user-stats-card-label {
  font-family: "BlenderPro", sans-serif;
  font-size: 16px;
  display: flex;
  gap: 5px;
  border-radius: 20px;
  margin-bottom: 8px;
  color: #757c8b;
}

.user-stats-card-label--orange {
  color: #f97316;
}

.orange {
  background: linear-gradient(
    135deg,
    rgba(249, 115, 22, 0.1) 0%,
    rgba(249, 115, 22, 0.05) 50%,
    rgba(249, 115, 22, 0) 100%
  );

  border: 1px solid #f9731633;
}

.user-stats-card-label--purple {
  color: #a855f7;
}

.purple {
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.1) 0%,
    rgba(168, 85, 247, 0.05) 50%,
    rgba(168, 85, 247, 0) 100%
  );
  border: 1px solid #a855f733;
}

.user-stats-card-label--yellow {
  color: #eab308;
}

.yellow {
  background: linear-gradient(
    135deg,
    rgba(234, 179, 8, 0.1) 0%,
    rgba(234, 179, 8, 0.05) 50%,
    rgba(234, 179, 8, 0) 100%
  );
  border: 1px solid #eab30833;
}

.user-stats-card-label--blue {
  color: #3b82f6;
}

.blue {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.1) 0%,
    rgba(59, 130, 246, 0.05) 50%,
    rgba(59, 130, 246, 0) 100%
  );
  border: 1px solid #3b82f633;
}

.user-stats-card-label--cyan {
  color: #06b6d4;
}

.cyan {
  background: linear-gradient(
    135deg,
    rgba(6, 182, 212, 0.1) 0%,
    rgba(6, 182, 212, 0.05) 50%,
    rgba(6, 182, 212, 0) 100%
  );
  border: 1px solid #06b6d433;
}

.user-stats-card-label--pink {
  color: #ec4899;
}

.pink {
  background: linear-gradient(
    135deg,
    rgba(236, 72, 153, 0.1) 0%,
    rgba(236, 72, 153, 0.05) 50%,
    rgba(236, 72, 153, 0) 100%
  );
  border: 1px solid #ec489933;
}

.user-stats-card-label--green {
  color: #1a7b40;
}

.green {
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.1) 0%,
    rgba(34, 197, 94, 0.05) 50%,
    rgba(34, 197, 94, 0) 100%
  );
  border: 1px solid #22c55e33;
}

.user-stats-card-value {
  font-family: "BlenderProBold", sans-serif;
  font-size: 24px;
  font-weight: 700;
}

/* Analytics Charts */
.analytics-charts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 0 160px 50px;
}

.chart-card {
  background: #14161c;
  border-radius: 20px;
  padding: 24px;
}

.chart-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.chart-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
}

.chart-card-icon svg {
  width: 24px;
  height: 24px;
}

.chart-card-title-group {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chart-card-title {
  font-family: "BlenderPro", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin: 0;
}

.chart-card-value {
  font-family: "BlenderProBold", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #22c55e;
  margin: 0;
}

.chart-card-value--purple {
  color: #8b5cf6;
}

.chart-card-value--orange {
  color: #f97316;
}

.chart-card-value--yellow {
  color: #f5bc29;
}

.chart-card-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.chart-filter {
  font-family: "BlenderProBold", sans-serif;
  font-size: 13px;
  color: #f2f2f2;
  background: #0e1115;
  border: 1px solid #21242c;
  padding: 6px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.chart-filter--active {
  background: linear-gradient(90deg, #f5bc29 0%, #ef9a12 100%);
  color: #0e1115;
}

.chart-filter:hover:not(.chart-filter--active) {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.chart-card-chart {
  height: 180px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.chart-card-chart svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Program Cards */
.program-card {
  background: #14161c;
  border-radius: 20px;
  padding: 32px;
  margin: 0 160px 30px;
}

.program-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  position: relative;
}

.program-card-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 188, 41, 0.1);
  border-radius: 16px;
}

.stars {
  background: linear-gradient(
    135deg,
    rgba(248, 198, 48, 0.2) 0%,
    rgba(0, 170, 255, 0.2) 100%
  );
}

.program-card--bonus {
  background: linear-gradient(
    90deg,
    rgba(248, 198, 48, 0.05) 0%,
    rgba(0, 170, 255, 0.05) 50%,
    rgba(236, 72, 153, 0.05) 100%
  );

  border: 1px solid #f8c63033;
}

.program-card-icon svg {
  width: 32px;
  height: 32px;
}

.program-card-title-group {
  flex: 1;
}

.program-card-title {
  font-family: "BlenderPro", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}

.program-card-subtitle {
  font-family: "BlenderPro", sans-serif;
  font-size: 15px;
  color: #757c8b;
  margin: 0;
}

.program-card-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: "BlenderPro", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #0e1115;
  background: linear-gradient(90deg, #f5bc29 0%, #ef9a12 100%);
  border-radius: 46px;
  padding: 10px 24px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.program-card-btn:hover {
  opacity: 0.9;
}

.program-card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.program-stat {
  text-align: center;

  background: #15181e80;
  border: 1px solid #272c35;
  padding: 10px;
  border-radius: 15px;
}

.program-stat-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin: 0 auto 0;
}

.program-stat-icon svg {
  width: 32px;
  height: 32px;
}

.program-stat-value {
  font-family: "BlenderProBold", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.program-stat-value--pink {
  color: #ec4899;
}

.program-stat-value--green {
  color: #10b981;
}

.program-stat-label {
  font-family: "BlenderPro", sans-serif;
  font-size: 18px;
  color: #757c8b;
}

.program-card--referral {
  background: linear-gradient(
    90deg,
    rgba(99, 102, 241, 0.05) 0%,
    rgba(20, 184, 166, 0.05) 50%,
    rgba(16, 185, 129, 0.05) 100%
  );
  border: 1px solid #6366f133;
}

.ref {
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.2) 0%,
    rgba(20, 184, 166, 0.2) 100%
  );
}

/* General Analytics */
.general-analytics {
  padding: 0 160px 80px;
}

.general-analytics-header {
  margin-bottom: 32px;
}

.general-analytics-title {
  font-family: "BlenderProbold", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}

.general-analytics-title span {
  background: linear-gradient(90deg, #f5bc29 0%, #ef9a12 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.general-analytics-subtitle {
  font-family: "BlenderPro", sans-serif;
  font-size: 28px;
  color: #757c8b;
  margin: 0;
}

.general-charts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.general-chart-card {
  background: #14161c;
  border-radius: 20px;
  padding: 24px;
}

.general-chart-card--full {
  grid-column: 1 / -1;
}

.general-chart-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.general-chart-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.general-chart-icon svg {
  width: 24px;
  height: 24px;
}

.general-chart-title-group {
  flex: 1;
}

.general-chart-title {
  font-family: "BlenderProBold", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 4px;
}

.general-chart-subtitle {
  font-family: "BlenderPro", sans-serif;
  font-size: 18px;
  color: #757c8b;
  margin: 0;
}

.general-chart-value {
  font-family: "BlenderPro", sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
  display: contents;
}

.general-chart-change {
  font-family: "BlenderPro", sans-serif;
  font-size: 14px;
  color: #10b981;
  margin-bottom: 20px;
}

.general-chart-change--red {
  color: #ef4444;
}

.general-chart-area {
  height: 250px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.general-chart-area svg,
.general-chart-bars svg {
  width: 100%;
  height: 100%;
  display: block;
}

.general-chart-bars {
  height: 250px;
  position: relative;
  overflow: hidden;
}

/*=================ANALYTICS PAGE RESPONSIVE=================*/
@media (max-width: 1400px) {
  .user-stats,
  .analytics-charts,
  .general-analytics {
    padding-left: 40px;
    padding-right: 40px;
  }

  .program-card {
    margin-left: 40px;
    margin-right: 40px;
  }

  .analytics-hero-title {
    font-size: 64px;
  }
}

@media (max-width: 1200px) {
  .user-stats,
  .analytics-charts,
  .general-analytics {
    padding-left: 30px;
    padding-right: 30px;
  }

  .program-card {
    margin-left: 30px;
    margin-right: 30px;
  }

  .analytics-hero-title {
    font-size: 54px;
  }

  .general-analytics-title {
    font-size: 28px;
  }
}

@media (max-width: 1000px) {
  .container--analytics .nav--auth {
    position: relative;
  }

  .container--analytics .nav--auth-center {
    display: none;
  }

  .container--analytics .burger-menu {
    display: flex;
  }

  .container--analytics .navigation--auth {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a1d24;
    padding: 20px;
    border-radius: 10px;
    margin-top: 10px;
    z-index: 1000;
  }

  .container--analytics .navigation--auth.active {
    display: block;
  }

  .analytics-charts,
  .general-charts {
    grid-template-columns: 1fr;
  }

  .user-stats,
  .analytics-charts,
  .general-analytics {
    padding-left: 20px;
    padding-right: 20px;
  }

  .program-card {
    margin-left: 20px;
    margin-right: 20px;
  }

  .analytics-hero-title {
    font-size: 46px;
  }

  .program-card-stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .container--analytics {
    padding: 15px 16px 0 !important;
  }

  .analytics-hero {
    padding: 40px 16px 40px;
  }

  .analytics-hero-title {
    font-size: 38px;
  }

  .analytics-hero-text {
    font-size: 15px;
  }

  .analytics-hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .analytics-cta-btn {
    width: 100%;
  }

  .user-stats,
  .analytics-charts,
  .general-analytics {
    padding-left: 16px;
    padding-right: 16px;
  }

  .program-card {
    margin-left: 16px;
    margin-right: 16px;
    padding: 24px;
  }

  .user-stats-title {
    font-size: 22px;
  }

  .user-stats-subtitle {
    font-size: 16px;
  }

  .chart-card-title {
    font-size: 16px;
  }

  .chart-card-value {
    font-size: 24px;
  }

  .general-chart-value {
    font-size: 28px;
  }

  .program-card-title {
    font-size: 20px;
  }

  .program-card-btn {
    position: static;
    transform: none;
    margin-top: 16px;
    display: inline-block;
  }

  .program-card-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 540px) {
  .container--analytics {
    padding: 10px 16px 0 !important;
  }

  .analytics-hero {
    padding: 30px 0 30px;
  }

  .analytics-hero-title {
    font-size: 32px;
  }

  .analytics-hero-text {
    font-size: 14px;
    padding: 0 10px;
  }

  .analytics-cta-btn {
    font-size: 14px;
    padding: 12px 24px;
  }

  .analytics-arrow-btn {
    width: 48px;
    height: 48px;
  }

  .user-stats-card {
    min-width: 150px;
  }

  .user-stats-card-value {
    font-size: 20px;
  }

  .chart-card {
    padding: 20px;
  }

  .general-chart-card {
    padding: 20px;
  }

  .program-stat-value {
    font-size: 28px;
  }

  .general-analytics-title {
    font-size: 24px;
  }
}

@media (max-width: 400px) {
  .container--analytics {
    padding: 8px 12px 0 !important;
  }

  .analytics-hero-title {
    font-size: 28px;
  }

  .analytics-cta-btn {
    font-size: 13px;
    padding: 10px 20px;
  }

  .user-stats,
  .analytics-charts,
  .general-analytics {
    padding-left: 12px;
    padding-right: 12px;
  }

  .program-card {
    margin-left: 12px;
    margin-right: 12px;
    padding: 20px;
  }

  .chart-card {
    padding: 16px;
  }

  .general-chart-card {
    padding: 16px;
  }

  .chart-card-chart {
    height: 140px;
  }

  .general-chart-area {
    height: 160px;
  }

  .general-chart-bars {
    height: 180px;
  }
}

/*=================PRODUCTS PAGE=================*/
.products-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* gap: 60px; */
  padding: 30px 0 0;

  background-image: url(./media/product-hero.svg);
}

.gray-text {
  font-size: 20px;
  color: #757c8b;
  font-family: "BlenderPro", sans-serif;
}

.products-hero-left {
  flex: 1;
  max-width: 900px;
}

.products-hero-title {
  font-family: "BlenderProBold", sans-serif;
  font-size: 70px;
  line-height: 1.1;
  margin: 0 0 35px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  font-weight: 700;
}

.products-hero-users {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.products-hero-avatars {
  display: flex;
}

.products-hero-avatars img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 3px solid #0e1115;
  margin-left: -20px;
}

.products-hero-avatars img:first-child {
  margin-left: 0;
}

.products-hero-count {
  font-family: "FugazOne", sans-serif;
  font-size: 28px;
  letter-spacing: 0.5px;
  line-height: 1;
}

.products-hero-info {
  display: flex;
  gap: 20px;
  align-items: center;
  max-width: 520px;
}

.hero-info-icon {
  flex-shrink: 0;
  display: flex;
}

.hero-info-icon img:first-child {
  margin-left: 0;
}

.hero-info-icon img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 3px solid #0e1115;
  margin-left: -35px;
}

.products-hero-info p {
  margin: 0;
  font-family: "BlenderPro", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: #757c8b;
}

.products-hero-right {
  flex-shrink: 0;
  max-width: 700px;
  margin-left: -250px;
}

.products-phone-img {
  width: 100%;
  height: auto;
  display: block;
}

.how-works {
  padding: 60px 0 70px;
}

.how-works-title {
  font-family: "BlenderProBold", sans-serif;
  font-size: 42px;
  text-align: left;
  margin: 0 0 50px;
  color: #fff;
  letter-spacing: 0.5px;
}

.how-works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.how-works-card {
  background: #14161c;
  padding: 14px 19px;
  border-radius: 20px;
  overflow: hidden;
}

.how-icon {
  display: block;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  width: 50px;
}

.how-step-bg {
  position: absolute;
  transform: translateY(-50%);
  font-family: "BlenderProBold", sans-serif;
  font-size: 80px;
  color: rgba(117, 124, 139, 0.04);
  letter-spacing: 2px;
  line-height: 1;
  white-space: nowrap;
  z-index: -1;
  user-select: none;
  pointer-events: none;
}

.step-top {
  top: -6%;
}

.step-bottom {
  top: 106%;
}

.step-1 {
  left: 65px;
}

.step-2 {
  left: 30%;
}

.step-3 {
  right: 30%;
}

.step-4 {
  right: 65px;
}

.how-card-title {
  font-family: "BlenderProBold", sans-serif;
  font-size: 30px;
  margin: 0 0 5px;
  color: #fff;
  position: relative;
  z-index: 2;
}

.how-card-text {
  font-family: "BlenderPro", sans-serif;
  font-size: 20px;
  color: #ffffff;
  margin: 0 0 12px;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

.how-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 2;
}

.how-list li {
  font-family: "BlenderPro", sans-serif;
  font-size: 20px;
  color: #757c8b;
  padding-left: 28px;
  position: relative;
  margin-bottom: 7px;
  line-height: 1.45;
}

.how-list li::before {
  content: url("./media/check.svg");
  position: absolute;
  left: -4px;
  color: #f5bc29;
  font-size: 10px;
  line-height: 1;
}

.trading-income {
  display: flex;
  gap: 70px;
  padding: 80px 0;
  align-items: center;
}

.trading-income-left {
  flex-shrink: 0;
}

.trading-income-img {
  max-width: 660px;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.trading-income-right {
  flex: 1;
}

.trading-income-title {
  font-family: "BlenderProBold", sans-serif;
  font-size: 60px;
  line-height: 1;
  margin: 0 0 26px;
  color: #fff;
  letter-spacing: 0.5px;
}

.trading-income-text {
  font-family: "BlenderPro", sans-serif;
  font-size: 24px;
  line-height: 1.65;
  color: #9da3af;
  margin: 0 0 15px;
  font-weight: 700;
}

.trading-income-dots {
  display: flex;
  gap: 30px;
  margin-bottom: 36px;
}

.dot {
  width: 14px;
  height: 14px;
}

.trading-income-btn {
  font-family: "BlenderProBold", sans-serif;
  font-size: 17px;
  padding: 18px 45px;
  background: linear-gradient(90deg, #f5bc29 0%, #ef9a12 100%);
  border: none;
  border-radius: 46.31px;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  text-transform: capitalize;
  letter-spacing: 0.3px;
}

.trading-income-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(245, 188, 41, 0.4);
}

.btn-arrow {
  font-size: 22px;
  font-weight: bold;
}

.trading-income-note {
  font-family: "BlenderPro", sans-serif;
  font-size: 24px;
  color: #757c8b;
  margin: 14px 20px 0;
  font-weight: 700;
}

.exchange-section {
  padding: 70px 0;
}

.exchange-title {
  font-family: "BlenderProBold", sans-serif;
  font-size: 60px;
  text-align: left;
  margin: 0 0 20px;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.exchange-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.exchange-card {
  background: linear-gradient(
    135deg,
    rgba(26, 30, 36, 0.5) 0%,
    rgba(17, 19, 24, 0.7) 100%
  );
  padding: 34px 30px;
  border-radius: 18px;
  border: 1px solid rgba(117, 124, 139, 0.15);
  transition: border-color 0.3s;
}

.exchange-card:hover {
  border-color: rgba(245, 188, 41, 0.3);
}

.exchange-card-header {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  align-items: center;
}

.exchange-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.exchange-name {
  font-family: "BlenderProBold", sans-serif;
  font-size: 30px;
  color: #fff;
}

.exchange-descr {
  font-family: "BlenderPro", sans-serif;
  font-size: 20px;
  color: #757c8b;
  margin: 0;
  line-height: 1.6;
}

.exchange-profit-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}

.exchange-profit,
.exchange-price {
  font-family: "BlenderPro", sans-serif;
  color: #9da3af;
  margin-bottom: 12px;

  background: #1c2026;
  padding: 8px 0 0 13px;
  border-radius: 15px;

  max-width: 320px;
  width: 100%;
}

.profit-lable {
  font-family: "BlenderPro", sans-serif;

  margin: 0;
  font-size: 20px;
  color: #757c8b;
}

.profit-value {
  font-family: "BlenderProBold", sans-serif;
  font-size: 28px;
  color: #10b57e;
}

.price {
  color: #fff;
}

.exchange-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  margin-top: 10px;
}

.exchange-tags span {
  font-family: "BlenderProBold", sans-serif;
  font-size: 20px;
  padding: 7px 14px;
  border-radius: 100px;
  color: #757c8b;
  border: 1px solid rgba(117, 124, 139, 0.1);
}

.pricing-section {
  padding: 80px 0;
}

.pricing-title {
  font-family: "BlenderProBold", sans-serif;
  font-size: 60px;
  text-align: center;
  margin: 0 0 60px;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: center;
}

/* ── CARD ── */
.card {
  background-image: url(./media/Plan1.png);
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 28px 28px 32px;
  max-width: 320px;
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  margin: auto;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

/* featured card */
.card--featured {
  max-width: 446px;
  height: 702px;
  background-image: url(./media/Plan3.png);
  z-index: 2;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 40px;
}

.card--featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(245, 166, 35, 0.6),
    transparent
  );
}

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

/* ── BADGE ── */
.badge-popular {
  border: 2px solid #fff;
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.02em;
  backdrop-filter: blur(4px);

  font-family: "BlenderPro", "sans-serif";
}

/* ── ICON ── */
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.card-icon--blue {
  background: #3b82f6;
}
.card-icon--orange {
  background: #ef9a12;
}
.card-icon--purple {
  background: #8a5cfd;
}

.card-icon img,
.card-icon svg {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

/* ── HEADER TEXT ── */
.card-name {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  font-family: "BlenderProBold", "sans-serif";
}

.card-desc {
  font-family: "BlenderPro", "sans-serif";
  font-size: 18px;
  color: #757c8b;
  line-height: 1.5;
  margin-bottom: 22px;
}

/* ── PROFIT ── */
.card-profit {
  font-family: "BlenderPro", "sans-serif";
  font-size: 30px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin: 0;
}
.card-profit span {
  font-size: 18px;
  font-weight: 500;
  color: #757c8b;
  font-family: "BlenderPro", "sans-serif";
}

/* ── BUTTON ── */
.btn {
  display: block;
  width: 100%;
  padding: 13px 0;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  border: none;
  margin: 20px 0 28px;
  letter-spacing: 0.03em;
  transition:
    opacity 0.2s,
    transform 0.15s;
}
.btn:hover {
  opacity: 0.88;
  transform: scale(0.985);
}
.btn--default {
  background: #1e2028;
  color: #fff;
  font-family: "BlenderPro", "sans-serif";
  font-size: 18px;
}
.btn--gold {
  background: linear-gradient(135deg, #f5bc29, #ef9a12);
  color: #fff;
  font-size: 18px;
}

/* ── FEATURES LIST ── */
.features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.feature-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  color: #757c8b;
  font-family: "BlenderPro", "sans-serif";
}
.feature-label svg,
.feature-label img {
  width: 16px;
  height: 16px;
  opacity: 0.65;
  flex-shrink: 0;
}
.feature-value {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  font-family: "BlenderPro", "sans-serif";
}

/* ── DIVIDER "Other info" ── */
.divider-label {
  position: relative;
  text-align: center;
  margin: 12px 0 12px;
  font-size: 18px;
  color: #757c8b;
  font-family: "BlenderPro", "sans-serif";
}
.divider-label::before,
.divider-label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30%;
  height: 1px;
  background: #242730;
}
.divider-label::before {
  left: 0;
}
.divider-label::after {
  right: 0;
}

/* ── INCOME BLOCK ── */
.income-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.income-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.income-label {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #757c8b;
  text-transform: uppercase;
  font-family: "BlenderProBold", "sans-serif";
}
.income-value {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
  font-family: "BlenderPro", "sans-serif";
}

.prem {
  font-size: 48px;
}

.prem-descr {
  font-size: 24px;
}

.prem-profit {
  font-size: 38px;
}

.premium {
  font-size: 24px;
}

.why-section {
  padding: 80px 0;
}

.why-title {
  font-family: "BlenderProBold", sans-serif;
  font-size: 60px;
  text-align: left;
  margin: 0 0 60px;
  color: #fff;
  letter-spacing: 0.5px;
}

.why-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.why-left-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-main-img {
  width: 100%;
  border-radius: 18px;
}

.why-socials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.why-social-cards {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.why-social-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-social-link {
  width: 135px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 30, 36, 0.7);
  border-radius: 10px;
  transition: background 0.3s;
  border: 1px solid rgba(117, 124, 139, 0.15);
}

.why-social-link:hover {
  background: rgba(245, 188, 41, 0.15);
  border-color: rgba(245, 188, 41, 0.3);
}

.why-big-card {
  background: linear-gradient(135deg, #f5bc29 0%, #ef9a12 100%);
  padding: 16px;
  border-radius: 18px;
  color: #0e1115;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;
  align-items: left;
}

.why-big-card-2 {
  background: #242730;
}

.why-big-number {
  font-family: "BlenderProBold", sans-serif;
  font-size: 90px;
  color: #fff;
  line-height: 1;
  flex-shrink: 0;
}

.why-big-content h3 {
  font-family: "BlenderProBold", sans-serif;
  font-size: 22px;
  margin: 0 0 10px;
  color: #fff;
}

.why-big-content p {
  font-family: "BlenderPro", sans-serif;
  font-size: 15px;
  margin: 0;
  line-height: 1.5;
  color: #fff;
}

.why-stat-small {
  background: #14161c;
  padding: 28px 26px;
  border-radius: 18px;
  border: 1px solid rgba(117, 124, 139, 0.15);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-num {
  font-family: "BlenderProBold", sans-serif;
  font-size: 70px;
  color: #fff;
  line-height: 1;
  flex-shrink: 0;
}

.stat-label {
  font-family: "BlenderProBold", sans-serif;
  font-size: 16px;
  color: #fff;
  display: block;
  margin-bottom: -14px;
}

.why-stat-small p {
  font-family: "BlenderPro", sans-serif;
  font-size: 13px;
  color: #757c8b;
  margin: 0;
  line-height: 1.5;
}

.why-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-stat-card {
  background: linear-gradient(
    135deg,
    rgba(26, 30, 36, 0.6) 0%,
    rgba(17, 19, 24, 0.8) 100%
  );
  padding: 30px 26px;
  border-radius: 18px;
  border: 1px solid rgba(117, 124, 139, 0.15);
}

.stat-card-num {
  font-family: "FugazOne", sans-serif;
  font-size: 56px;
  background: linear-gradient(90deg, #f5bc29 0%, #ef9a12 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
  line-height: 1;
}

.why-stat-card h4 {
  font-family: "FugazOne", sans-serif;
  font-size: 18px;
  color: #fff;
  margin: 0 0 10px;
}

.why-stat-card p {
  font-family: "BlenderPro", sans-serif;
  font-size: 14px;
  color: #757c8b;
  margin: 0;
  line-height: 1.6;
}

.large-card {
  grid-column: 1 / -1;
}

.chart-visual {
  margin-top: 18px;
}

.faq-products {
  padding: 80px 0;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 70px;
}

.faq-products-title {
  font-family: "BlenderProBold", sans-serif;
  font-size: 90px;
  line-height: 1.15;
  margin: 0 0 40px;
  color: #fff;
  letter-spacing: 0.5px;
}

.faq-help-icon {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: linear-gradient(
    135deg,
    rgba(26, 30, 36, 0.5) 0%,
    rgba(17, 19, 24, 0.7) 100%
  );
  padding: 28px;
  border-radius: 18px;
  border: 1px solid rgba(117, 124, 139, 0.15);
}

.faq-help-icon p {
  font-family: "BlenderPro", sans-serif;
  font-size: 14px;
  color: #9da3af;
  margin: 0;
  line-height: 1.6;
  padding-top: 8px;
}

.faq-products-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.container--products {
  background: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.hero-btn {
  display: flex;
  justify-content: center;
  margin: 40px 0 140px;
}

.container--aboutus {
  background-image: url(./media/BG.png);
  background-size: contain;
  background-repeat: no-repeat;
  overflow: visible;

  margin-bottom: 0;
  padding-bottom: 0;
}

/* Company Info и Trading Income — выравнивание текста на одной линии */
.container--aboutus .company-info-right,
.container--aboutus .trading-income-right {
  width: 50%;
  margin-left: auto;
  flex: none;
}

/* Trading Income — телефон касается края экрана */
.container--aboutus .trading-income {
  position: relative;
  min-height: 580px;
}

.container--aboutus .trading-income-left {
  position: absolute;
  left: calc(-35px + min(0px, (1530px - 100vw) / 2));
  top: 50%;
  transform: translateY(-50%);
}

.container--aboutus .trading-income-img {
  width: 55vw;
  max-width: 900px;
  border-radius: 0;
}

@media (max-width: 1440px) {
  .container--aboutus .trading-income-left {
    left: -15px;
  }
  .container--aboutus .trading-income-img {
    width: 50vw;
    max-width: 700px;
  }
}

@media (max-width: 1200px) {
  .container--aboutus .trading-income-left {
    left: -20px;
  }
  .container--aboutus .trading-income-img {
    width: 45vw;
    max-width: 550px;
  }
}

@media (max-width: 1000px) {
  .container--aboutus .company-info-right,
  .container--aboutus .trading-income-right {
    width: 100%;
    margin-left: 0;
    flex: 1;
  }

  .container--aboutus .trading-income {
    min-height: auto;
  }

  .container--aboutus .trading-income-left {
    display: none;
  }

  .container--aboutus .exchange-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .container--aboutus .exchange-title {
    font-size: 44px;
  }
}

@media (max-width: 768px) {
  .container--aboutus .exchange-title {
    font-size: 36px;
  }

  .container--aboutus .exchange-section {
    padding: 50px 0;
  }

  .container--aboutus .exchange-card {
    padding: 24px 20px;
  }

  .container--aboutus .exchange-name {
    font-size: 24px;
  }

  .container--aboutus .exchange-descr {
    font-size: 16px;
  }

  .container--aboutus .profit-lable {
    font-size: 16px;
  }

  .container--aboutus .profit-value {
    font-size: 22px;
  }
}

@media (max-width: 540px) {
  .container--aboutus .exchange-title {
    font-size: 30px;
  }

  .container--aboutus .exchange-section {
    padding: 40px 0;
  }

  .container--aboutus .exchange-card {
    padding: 20px 16px;
  }

  .container--aboutus .exchange-name {
    font-size: 20px;
  }

  .container--aboutus .exchange-descr {
    font-size: 14px;
  }

  .container--aboutus .exchange-logo {
    width: 40px;
    height: 40px;
  }

  .container--aboutus .profit-value {
    font-size: 20px;
  }

  .container--aboutus .exchange-tags span {
    font-size: 12px;
    padding: 4px 10px;
  }
}

.about-hero {
}

/*=================PRODUCTS PAGE RESPONSIVE=================*/

@media (max-width: 1400px) {
  .products-hero {
    gap: 40px;
    padding: 20px 0 0;
  }

  .products-hero-title {
    font-size: 60px;
    margin: 0 0 30px;
  }

  .products-hero-right {
    max-width: 700px;
    margin-left: -200px;
  }

  .how-works-grid {
    gap: 20px;
  }

  .how-card-title {
    font-size: 28px;
  }

  .how-card-text {
    font-size: 18px;
  }

  .how-list li {
    font-size: 18px;
  }

  .trading-income {
    gap: 50px;
    padding: 60px 0;
  }

  .trading-income-title {
    font-size: 50px;
  }

  .trading-income-text {
    font-size: 22px;
  }

  .exchange-title,
  .pricing-title {
    font-size: 50px;
  }

  .exchange-card {
    padding: 28px 24px;
  }

  .exchange-name {
    font-size: 28px;
  }

  .exchange-descr {
    font-size: 18px;
  }
}

@media (max-width: 1200px) {
  .container--products .products-hero {
    flex-direction: column;
    gap: 30px;
  }

  .container--products .products-hero-left {
    max-width: 100%;
  }

  .container--products .products-hero-right {
    max-width: 600px;
    margin-left: 0;
  }

  .container--products .products-hero-title {
    font-size: 50px;
  }

  .container--products .how-works-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .container--products .how-step-bg {
    font-size: 60px;
  }

  .container--products .step-1,
  .container--products .step-2,
  .container--products .step-3,
  .container--products .step-4 {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .container--products .trading-income {
    flex-direction: column;
    gap: 40px;
  }

  .container--products .trading-income-img {
    max-width: 100%;
  }

  .container--products .exchange-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .container--products .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 400px;
    margin: 0 auto;
  }

  .container--products .card {
    max-width: 100%;
  }

  .container--products .faq-products {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 1000px) {
  .container--products .products-hero-title {
    font-size: 44px;
    margin: 0 0 24px;
  }

  .container--products .products-hero-count {
    font-size: 24px;
  }

  .container--products .products-hero-avatars img,
  .container--products .hero-info-icon img {
    width: 48px;
    height: 48px;
  }

  .container--products .products-hero-info p {
    font-size: 15px;
  }

  .container--products .how-works {
    padding: 40px 0 50px;
  }

  .container--products .how-works-title {
    font-size: 36px;
    margin: 0 0 40px;
  }

  .container--products .how-card-title {
    font-size: 24px;
  }

  .container--products .how-card-text {
    font-size: 16px;
  }

  .container--products .how-list li {
    font-size: 16px;
  }

  .container--products .trading-income {
    padding: 50px 0;
  }

  .container--products .trading-income-title {
    font-size: 42px;
  }

  .container--products .trading-income-text {
    font-size: 20px;
  }

  .container--products .trading-income-note {
    font-size: 20px;
  }

  .container--products .exchange-section {
    padding: 50px 0;
  }

  .container--products .exchange-title {
    font-size: 42px;
  }

  .container--products .exchange-name {
    font-size: 24px;
  }

  .container--products .exchange-descr {
    font-size: 17px;
  }

  .container--products .profit-lable {
    font-size: 18px;
  }

  .container--products .profit-value {
    font-size: 24px;
  }

  .container--products .exchange-tags span {
    font-size: 18px;
  }

  .container--products .pricing-section {
    padding: 60px 0;
  }

  .container--products .pricing-title {
    font-size: 42px;
    margin: 0 0 40px;
  }

  .container--products .faq-products-title {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .container--products .products-hero {
    padding: 15px 0 0;
  }

  .container--products .products-hero-title {
    font-size: 36px;
    margin: 0 0 20px;
  }

  .container--products .products-hero-users {
    gap: 15px;
    margin-bottom: 20px;
  }

  .container--products .products-hero-count {
    font-size: 20px;
  }

  .container--products .products-hero-avatars img,
  .container--products .hero-info-icon img {
    width: 42px;
    height: 42px;
  }

  .container--products .products-hero-info {
    gap: 15px;
  }

  .container--products .products-hero-info p {
    font-size: 14px;
  }

  .container--products .gray-text {
    font-size: 18px;
  }

  .container--products .products-hero-right {
    max-width: 500px;
  }

  .container--products .how-works {
    padding: 30px 0 40px;
  }

  .container--products .how-works-title {
    font-size: 32px;
    margin: 0 0 30px;
  }

  .container--products .how-works-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .container--products .how-works-card {
    padding: 18px 20px;
  }

  .container--products .how-icon {
    width: 44px;
    margin-bottom: 15px;
  }

  .container--products .how-card-title {
    font-size: 26px;
  }

  .container--products .how-card-text {
    font-size: 18px;
  }

  .container--products .how-list li {
    font-size: 17px;
  }

  .container--products .how-step-bg {
    display: none;
  }

  .container--products .trading-income {
    gap: 30px;
    padding: 40px 0;
  }

  .container--products .trading-income-title {
    font-size: 36px;
  }

  .container--products .trading-income-text {
    font-size: 18px;
    margin: 0 0 12px;
  }

  .container--products .trading-income-dots {
    gap: 20px;
    margin-bottom: 28px;
  }

  .container--products .dot {
    width: 12px;
    height: 12px;
  }

  .container--products .trading-income-btn {
    font-size: 15px;
    padding: 15px 35px;
  }

  .container--products .trading-income-note {
    font-size: 18px;
  }

  .container--products .exchange-section {
    padding: 40px 0;
  }

  .container--products .exchange-title {
    font-size: 36px;
    margin: 0 0 16px;
  }

  .container--products .exchange-card {
    padding: 24px 20px;
  }

  .container--products .exchange-logo {
    width: 44px;
    height: 44px;
  }

  .container--products .exchange-name {
    font-size: 22px;
  }

  .container--products .exchange-descr {
    font-size: 16px;
  }

  .container--products .exchange-profit-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .container--products .exchange-profit,
  .container--products .exchange-price {
    max-width: 100%;
  }

  .container--products .profit-lable {
    font-size: 16px;
  }

  .container--products .profit-value {
    font-size: 22px;
  }

  .container--products .exchange-tags span {
    font-size: 16px;
    padding: 6px 12px;
  }

  .container--products .pricing-section {
    padding: 50px 0;
  }

  .container--products .pricing-title {
    font-size: 36px;
    margin: 0 0 30px;
  }

  .container--products .card {
    padding: 24px 24px 28px;
  }

  .container--products .faq-products {
    padding: 40px 0;
  }

  .container--products .faq-products-title {
    font-size: 36px;
    margin-bottom: 30px;
  }

  .container--products .faq-item {
    margin-bottom: 12px;
  }

  .container--products .hero-btn {
    margin: 30px 0 100px;
  }
}

@media (max-width: 540px) {
  .container--products .products-hero-title {
    font-size: 30px;
    margin: 0 0 16px;
  }

  .container--products .products-hero-users {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
  }

  .container--products .products-hero-count {
    font-size: 18px;
  }

  .container--products .products-hero-avatars img {
    width: 38px;
    height: 38px;
    margin-left: -15px;
  }

  .container--products .products-hero-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .container--products .hero-info-icon img {
    width: 38px;
    height: 38px;
    margin-left: -25px;
  }

  .container--products .products-hero-info p {
    font-size: 13px;
  }

  .container--products .gray-text {
    font-size: 16px;
  }

  .container--products .products-hero-right {
    max-width: 100%;
  }

  .container--products .how-works {
    padding: 24px 0 30px;
  }

  .container--products .how-works-title {
    font-size: 28px;
    margin: 0 0 24px;
  }

  .container--products .how-works-card {
    padding: 16px 18px;
  }

  .container--products .how-icon {
    width: 40px;
    margin-bottom: 12px;
  }

  .container--products .how-card-title {
    font-size: 22px;
    margin: 0 0 4px;
  }

  .container--products .how-card-text {
    font-size: 16px;
    margin: 0 0 10px;
  }

  .container--products .how-list li {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .container--products .trading-income {
    gap: 24px;
    padding: 30px 0;
  }

  .container--products .trading-income-title {
    font-size: 30px;
    margin: 0 0 20px;
  }

  .container--products .trading-income-text {
    font-size: 16px;
    margin: 0 0 10px;
  }

  .container--products .trading-income-dots {
    gap: 16px;
    margin-bottom: 24px;
  }

  .container--products .dot {
    width: 10px;
    height: 10px;
  }

  .container--products .trading-income-btn {
    font-size: 14px;
    padding: 14px 30px;
  }

  .container--products .btn-arrow {
    font-size: 18px;
  }

  .container--products .trading-income-note {
    font-size: 16px;
    margin: 12px 15px 0;
  }

  .container--products .exchange-section {
    padding: 30px 0;
  }

  .container--products .exchange-title {
    font-size: 30px;
    margin: 0 0 14px;
  }

  .container--products .exchange-card {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .container--products .exchange-card-header {
    gap: 12px;
    margin-bottom: 14px;
  }

  .container--products .exchange-logo {
    width: 40px;
    height: 40px;
  }

  .container--products .exchange-name {
    font-size: 20px;
  }

  .container--products .exchange-descr {
    font-size: 15px;
  }

  .container--products .exchange-profit,
  .container--products .exchange-price {
    padding: 6px 0 0 10px;
    border-radius: 12px;
  }

  .container--products .profit-lable {
    font-size: 15px;
  }

  .container--products .profit-value {
    font-size: 20px;
  }

  .container--products .exchange-tags {
    gap: 8px;
    margin-top: 8px;
  }

  .container--products .exchange-tags span {
    font-size: 14px;
    padding: 5px 10px;
  }

  .container--products .pricing-section {
    padding: 40px 0;
  }

  .container--products .pricing-title {
    font-size: 30px;
    margin: 0 0 24px;
  }

  .container--products .card {
    padding: 20px 20px 24px;
    border-radius: 18px;
  }

  .container--products .faq-products {
    padding: 30px 0;
  }

  .container--products .faq-products-title {
    font-size: 30px;
    margin-bottom: 24px;
  }

  .container--products .faq-item {
    margin-bottom: 10px;
  }

  .container--products .hero-btn {
    margin: 24px 0 70px;
  }
}

@media (max-width: 400px) {
  .container--products .products-hero-title {
    font-size: 26px;
    margin: 0 0 14px;
  }

  .container--products .products-hero-count {
    font-size: 16px;
  }

  .container--products .products-hero-avatars img {
    width: 34px;
    height: 34px;
    margin-left: -12px;
  }

  .container--products .hero-info-icon img {
    width: 34px;
    height: 34px;
    margin-left: -20px;
  }

  .container--products .products-hero-info p {
    font-size: 12px;
  }

  .container--products .gray-text {
    font-size: 15px;
  }

  .container--products .how-works-title {
    font-size: 24px;
    margin: 0 0 20px;
  }

  .container--products .how-works-card {
    padding: 14px 16px;
  }

  .container--products .how-icon {
    width: 36px;
  }

  .container--products .how-card-title {
    font-size: 20px;
  }

  .container--products .how-card-text {
    font-size: 15px;
  }

  .container--products .how-list li {
    font-size: 14px;
    padding-left: 24px;
  }

  .container--products .trading-income-title {
    font-size: 26px;
    margin: 0 0 16px;
  }

  .container--products .trading-income-text {
    font-size: 15px;
  }

  .container--products .trading-income-btn {
    font-size: 13px;
    padding: 12px 24px;
  }

  .container--products .trading-income-note {
    font-size: 15px;
    margin: 10px 10px 0;
  }

  .container--products .exchange-title {
    font-size: 26px;
  }

  .container--products .exchange-card {
    padding: 18px 14px;
  }

  .container--products .exchange-logo {
    width: 36px;
    height: 36px;
  }

  .container--products .exchange-name {
    font-size: 18px;
  }

  .container--products .exchange-descr {
    font-size: 14px;
  }

  .container--products .profit-lable {
    font-size: 14px;
  }

  .container--products .profit-value {
    font-size: 18px;
  }

  .container--products .exchange-tags span {
    font-size: 13px;
    padding: 4px 8px;
  }

  .container--products .pricing-title {
    font-size: 26px;
    margin: 0 0 20px;
  }

  .container--products .card {
    padding: 18px 18px 22px;
  }

  .container--products .faq-products-title {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .container--products .hero-btn {
    margin: 20px 0 50px;
  }
}

/*=================IMPROVED RESPONSIVE FOR WHY SECTION AND HOW IT WORKS=================*/

/* Why Section Responsive */
@media (max-width: 1400px) {
  .container--products .why-wrapper {
    gap: 40px;
  }

  .container--products .why-title {
    font-size: 50px;
    margin: 0 0 50px;
  }

  .container--products .why-social-link {
    width: 120px;
    height: 86px;
  }

  .container--products .why-big-number {
    font-size: 80px;
  }

  .container--products .stat-num {
    font-size: 60px;
  }
}

@media (max-width: 1200px) {
  .container--products .why-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .container--products .why-title {
    font-size: 46px;
  }

  .container--products .why-social-cards {
    flex-direction: column;
  }
}

@media (max-width: 1000px) {
  .container--products .why-section {
    padding: 50px 0;
  }

  .container--products .why-title {
    font-size: 42px;
    margin: 0 0 40px;
  }

  .container--products .why-social-link {
    width: 100%;
    height: 80px;
  }

  .container--products .why-socials {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  .container--products .why-big-number {
    font-size: 70px;
  }

  .container--products .why-big-content h3 {
    font-size: 20px;
  }

  .container--products .why-big-content p {
    font-size: 14px;
  }

  .container--products .stat-num {
    font-size: 56px;
  }

  .container--products .stat-label {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .container--products .why-section {
    padding: 40px 0;
  }

  .container--products .why-title {
    font-size: 36px;
    margin: 0 0 30px;
  }

  .container--products .why-left-col {
    gap: 20px;
  }

  .container--products .why-social-cards {
    gap: 16px;
  }

  .container--products .why-socials {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .container--products .why-social-link {
    height: 70px;
  }

  .container--products .why-social-link img {
    width: 28px;
    height: 28px;
  }

  .container--products .why-big-card {
    padding: 20px;
    gap: 20px;
  }

  .container--products .why-big-number {
    font-size: 60px;
  }

  .container--products .why-big-content h3 {
    font-size: 18px;
    margin: 0 0 8px;
  }

  .container--products .why-big-content p {
    font-size: 13px;
  }

  .container--products .why-stat-small {
    padding: 22px 20px;
    gap: 16px;
    width: auto;
  }

  .container--products .stat-num {
    font-size: 48px;
  }

  .container--products .stat-label {
    font-size: 14px;
    margin-bottom: -12px;
  }

  .container--products .why-stat-small p {
    font-size: 12px;
  }
}

@media (max-width: 540px) {
  .container--products .why-title {
    font-size: 30px;
    margin: 0 0 24px;
  }

  .container--products .why-section {
    padding: 30px 0;
  }

  .container--products .why-left-col {
    gap: 16px;
  }

  .container--products .why-social-cards {
    gap: 14px;
  }

  .container--products .why-socials {
    gap: 8px;
  }

  .container--products .why-social-link {
    height: 64px;
  }

  .container--products .why-social-link img {
    width: 24px;
    height: 24px;
  }

  .container--products .why-big-card {
    padding: 18px;
    gap: 16px;
  }

  .container--products .why-big-number {
    font-size: 50px;
  }

  .container--products .why-big-content h3 {
    font-size: 16px;
    margin: 0 0 6px;
  }

  .container--products .why-big-content p {
    font-size: 12px;
  }

  .container--products .why-stat-small {
    padding: 20px 18px;
    gap: 14px;
  }

  .container--products .stat-num {
    font-size: 42px;
  }

  .container--products .stat-label {
    font-size: 13px;
  }

  .container--products .why-stat-small p {
    font-size: 11px;
  }
}

@media (max-width: 400px) {
  .container--products .why-title {
    font-size: 26px;
    margin: 0 0 20px;
  }

  .container--products .why-social-link {
    height: 58px;
  }

  .container--products .why-social-link img {
    width: 20px;
    height: 20px;
  }

  .container--products .why-big-card {
    padding: 16px;
    gap: 14px;
  }

  .container--products .why-big-number {
    font-size: 44px;
  }

  .container--products .why-big-content h3 {
    font-size: 15px;
    margin: 0 0 5px;
  }

  .container--products .why-big-content p {
    font-size: 11px;
  }

  .container--products .why-stat-small {
    padding: 18px 16px;
    gap: 12px;
  }

  .container--products .stat-num {
    font-size: 38px;
  }

  .container--products .stat-label {
    font-size: 12px;
  }

  .container--products .why-stat-small p {
    font-size: 10px;
  }
}

/* How It Works Improved Responsive */
@media (max-width: 1400px) {
  .container--products .how-works-grid {
    gap: 20px;
  }

  .container--products .how-works-card {
    padding: 18px 20px;
  }

  .container--products .how-step-bg {
    font-size: 70px;
  }

  .container--products .step-1 {
    left: 50px;
  }

  .container--products .step-4 {
    right: 50px;
  }
}

@media (max-width: 1200px) {
  .container--products .how-works-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .container--products .how-step-bg {
    font-size: 60px;
  }

  .container--products .step-1,
  .container--products .step-2 {
    left: 30px;
  }

  .container--products .step-3,
  .container--products .step-4 {
    right: 30px;
    left: auto;
  }

  .container--products .step-top {
    top: -4%;
  }

  .container--products .step-bottom {
    top: 104%;
  }
}

@media (max-width: 1000px) {
  .container--products .how-works-grid {
    gap: 18px;
  }

  .container--products .how-works-card {
    padding: 20px;
    position: relative;
  }

  .container--products .how-step-bg {
    font-size: 50px;
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    display: block;
    text-align: right;
    color: rgba(117, 124, 139, 0.1);
    margin-bottom: -10px;
  }
}

@media (max-width: 768px) {
  .container--products .how-works-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .container--products .how-works-card {
    padding: 20px;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto auto;
    gap: 12px 16px;
    position: relative;
  }

  .container--products .how-icon {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 54px;
    height: 54px;
    margin-bottom: 0;
  }

  .container--products .how-card-title {
    grid-column: 2;
    grid-row: 1;
    font-size: 24px;
    margin: 0;
    align-self: center;
  }

  .container--products .how-step-bg {
    grid-column: 2;
    grid-row: 2;
    font-size: 16px;
    text-align: left;
    margin: 0;
    color: rgba(117, 124, 139, 0.6);
    align-self: start;
  }

  .container--products .how-card-text {
    grid-column: 1 / -1;
    grid-row: 3;
    font-size: 16px;
    margin: 0 0 10px;
  }

  .container--products .how-list {
    grid-column: 1 / -1;
    grid-row: 4;
  }

  .container--products .how-list li {
    font-size: 15px;
    margin-bottom: 5px;
  }
}

@media (max-width: 540px) {
  .container--products .how-works-card {
    padding: 18px 16px;
    gap: 10px 14px;
  }

  .container--products .how-icon {
    width: 48px;
    height: 48px;
  }

  .container--products .how-card-title {
    font-size: 20px;
  }

  .container--products .how-step-bg {
    font-size: 14px;
  }

  .container--products .how-card-text {
    font-size: 15px;
    margin: 0 0 8px;
  }

  .container--products .how-list li {
    font-size: 14px;
    margin-bottom: 4px;
    padding-left: 24px;
  }

  .container--products .how-list li::before {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 400px) {
  .container--products .how-works-card {
    padding: 16px 14px;
    gap: 8px 12px;
  }

  .container--products .how-icon {
    width: 44px;
    height: 44px;
  }

  .container--products .how-card-title {
    font-size: 18px;
  }

  .container--products .how-step-bg {
    font-size: 13px;
  }

  .container--products .how-card-text {
    font-size: 14px;
    margin: 0 0 6px;
  }

  .container--products .how-list li {
    font-size: 13px;
    margin-bottom: 3px;
    padding-left: 22px;
  }
}

/* Additional improvements for Why Choose - обе колонки видимы */

@media (max-width: 1200px) {
  .container--products .why-left-col {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .container--products .why-wrapper {
    gap: 24px;
  }

  .container--products .why-left-col {
    order: 0;
  }

  /* Чередование порядка для визуального разнообразия */
  .container--products .why-left-col:nth-child(1) {
    order: 1;
  }

  .container--products .why-left-col:nth-child(2) {
    order: 2;
  }
}

@media (max-width: 540px) {
  .container--products .why-wrapper {
    gap: 20px;
  }
}

@media (max-width: 400px) {
  .container--products .why-wrapper {
    gap: 16px;
  }
}

/* Компактный адаптив - уменьшаем отступы и размеры */
@media (max-width: 1400px) {
  .container--products .products-hero {
    padding: 15px 0 0;
  }

  .container--products .how-works {
    padding: 50px 0 60px;
  }

  .container--products .how-works-card {
    padding: 16px 18px;
  }

  .container--products .trading-income {
    padding: 60px 0;
  }

  .container--products .exchange-section {
    padding: 60px 0;
  }

  .container--products .pricing-section {
    padding: 70px 0;
  }

  .container--products .why-section {
    padding: 70px 0;
  }
}

@media (max-width: 1200px) {
  .container--products .how-works {
    padding: 40px 0 50px;
  }

  .container--products .trading-income {
    padding: 50px 0;
  }

  .container--products .exchange-section {
    padding: 50px 0;
  }

  .container--products .pricing-section {
    padding: 60px 0;
  }

  .container--products .why-section {
    padding: 60px 0;
  }

  .why-social-card {
    display: flex;
    flex-direction: row;
    gap: 40px;
  }

  .why-stat-small {
    background: #14161c;
    padding: 28px 26px;
    border-radius: 18px;
    border: 1px solid rgba(117, 124, 139, 0.15);
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }
}

@media (max-width: 1000px) {
  .container--products .products-hero {
    padding: 10px 0 0;
  }

  .container--products .how-works {
    padding: 35px 0 40px;
  }

  .container--products .how-works-card {
    padding: 14px 16px;
  }

  .container--products .trading-income {
    padding: 40px 0;
  }

  .container--products .exchange-section {
    padding: 40px 0;
  }

  .container--products .exchange-card {
    padding: 22px 20px;
  }

  .container--products .pricing-section {
    padding: 50px 0;
  }

  .container--products .why-section {
    padding: 50px 0;
  }

  .container--products .why-stat-small {
    padding: 24px 22px;
  }

  .container--products .why-big-card {
    padding: 18px;
  }
}

@media (max-width: 768px) {
  .container--products .products-hero {
    padding: 10px 0 0;
  }

  .container--products .how-works {
    padding: 30px 0 35px;
  }

  .container--products .how-works-card {
    padding: 14px 16px;
  }

  .container--products .trading-income {
    padding: 35px 0;
  }

  .container--products .exchange-section {
    padding: 35px 0;
  }

  .container--products .exchange-card {
    padding: 20px 18px;
  }

  .container--products .pricing-section {
    padding: 40px 0;
  }

  .container--products .card {
    padding: 22px 20px 26px;
  }

  .container--products .why-section {
    padding: 40px 0;
  }

  .container--products .why-stat-small {
    padding: 20px 18px;
    gap: 14px;
  }

  .container--products .why-big-card {
    padding: 16px;
    gap: 18px;
  }

  .container--products .faq-products {
    padding: 35px 0;
  }
}

@media (max-width: 540px) {
  .container--products .products-hero {
    padding: 5px 0 0;
  }

  .container--products .how-works {
    padding: 25px 0 30px;
  }

  .container--products .how-works-card {
    padding: 12px 14px;
  }

  .container--products .trading-income {
    padding: 30px 0;
  }

  .container--products .exchange-section {
    padding: 30px 0;
  }

  .container--products .exchange-card {
    padding: 18px 16px;
  }

  .container--products .pricing-section {
    padding: 35px 0;
  }

  .container--products .card {
    padding: 18px 18px 22px;
  }

  .container--products .why-section {
    padding: 35px 0;
  }

  .container--products .why-stat-small {
    padding: 18px 16px;
    gap: 12px;
  }

  .container--products .why-big-card {
    padding: 14px;
    gap: 16px;
  }

  .container--products .faq-products {
    padding: 30px 0;
  }

  .container--products .hero-btn {
    margin: 20px 0 60px;
  }
}

@media (max-width: 400px) {
  .container--products .how-works {
    padding: 20px 0 25px;
  }

  .container--products .how-works-card {
    padding: 12px 14px;
  }

  .container--products .trading-income {
    padding: 25px 0;
  }

  .container--products .exchange-section {
    padding: 25px 0;
  }

  .container--products .exchange-card {
    padding: 16px 14px;
  }

  .container--products .pricing-section {
    padding: 30px 0;
  }

  .container--products .card {
    padding: 16px 16px 20px;
  }

  .container--products .why-section {
    padding: 30px 0;
  }

  .container--products .why-stat-small {
    padding: 16px 14px;
    gap: 10px;
  }

  .container--products .why-big-card {
    padding: 12px;
    gap: 14px;
  }

  .container--products .faq-products {
    padding: 25px 0;
  }

  .container--products .hero-btn {
    margin: 15px 0 50px;
  }
}

/* Социальные сети и статистика в два блока рядом */

@media (min-width: 1201px) and (max-width: 1400px) {
  .container--products .why-socials {
    width: 260px;
  }
}

/* На мобильных возвращаем вертикальное расположение */
@media (max-width: 768px) {
  .container--products .why-social-card {
    flex-direction: column !important;
  }
}

/*=================CONTACTS PAGE RESPONSIVE=================*/

.container--contacts .contacts-hero {
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

@media (max-width: 1400px) {
  .container--contacts .contacts-hero {
    height: 360px;
    margin: 0 30px;
  }

  .container--contacts .contacts-main {
    padding: 55px 30px 90px;
    gap: 50px;
  }

  .container--contacts .contacts-form-panel {
    padding: 50px 45px 28px;
  }

  .container--contacts .contacts-info-texts {
    margin-bottom: 40px;
  }

  .container--contacts .contacts-social {
    margin-top: 40px;
  }
}

@media (max-width: 1200px) {
  .container--contacts .contacts-hero {
    height: 320px;
  }

  .container--contacts .contacts-hero-title {
    font-size: 50px;
  }

  .container--contacts .contacts-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .container--contacts .contacts-cta-btn {
    display: inline-flex;
    visibility: visible;
    opacity: 1;
  }

  .container--contacts .contacts-hero-notch {
    display: flex;
    position: absolute;
    bottom: 0;
    right: 60px;
    width: 250px;
    height: 60px;
    background: #0e1115;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    padding-bottom: 0;
    margin-top: 0;
  }

  .container--contacts .contacts-main {
    padding: 45px 25px 75px;
    gap: 35px;
  }

  .container--contacts .contacts-form-panel {
    padding: 38px 36px 24px;
  }

  .container--contacts .contacts-info-texts {
    margin-bottom: 35px;
  }

  .container--contacts .contacts-info-grid {
    gap: 35px 40px;
  }
}

@media (max-width: 1000px) {
  .container--contacts {
    padding-left: 15px;
    padding-right: 15px;
  }

  .container--contacts .contacts-hero {
    height: 280px;
    background-size: cover;
  }

  .container--contacts .contacts-hero-title {
    font-size: 42px;
  }

  .container--contacts .contacts-main {
    padding: 35px 20px 50px;
  }

  .container--contacts .contacts-form-panel {
    padding: 35px 32px 22px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .container--contacts .contacts-form {
    width: 100%;
  }

  .container--contacts .contacts-input,
  .container--contacts .contacts-textarea {
    width: 100%;
    box-sizing: border-box;
  }

  .container--contacts .contacts-info-texts {
    margin-bottom: 30px;
  }

  .container--contacts .contacts-info-grid {
    gap: 30px 35px;
  }

  .container--contacts .contacts-social {
    margin-top: 35px;
  }
}

@media (max-width: 770px) {
  .container--contacts {
    padding-left: 10px;
    padding-right: 10px;
  }

  .container--contacts .contacts-hero {
    height: auto;
    min-height: 280px;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center center;
  }

  .container--contacts .contacts-hero-content {
    width: 100%;
    gap: 18px;
    padding: 0;
    height: auto;
  }

  .container--contacts .contacts-badge {
    font-size: 13px;
    padding: 6px 14px;
  }

  .container--contacts .contacts-hero-title {
    font-size: 38px;
    line-height: 1.2;
  }

  .container--contacts .contacts-cta-btn {
    font-size: 14px;
    padding: 12px 24px;
    align-self: flex-start;
  }

  .container--contacts .contacts-main {
    flex-direction: column;
    padding: 30px 16px 40px;
    gap: 30px;
  }

  .container--contacts .contacts-form-panel {
    order: 1;
    padding: 30px 20px 24px;
  }

  .container--contacts .contacts-info {
    order: 2;
  }

  .container--contacts .contacts-info-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .container--contacts .contacts-field {
    margin-bottom: 16px;
  }
}

@media (max-width: 540px) {
  .container--contacts {
    padding-left: 8px;
    padding-right: 8px;
  }

  .container--contacts .contacts-hero {
    min-height: 240px;
    padding: 24px 16px;
    margin: 0 12px;
    border-radius: 16px;
  }

  .container--contacts .contacts-hero-content {
    gap: 14px;
  }

  .container--contacts .contacts-badge {
    font-size: 12px;
    padding: 5px 12px;
  }

  .container--contacts .contacts-hero-title {
    font-size: 32px;
  }

  .container--contacts .contacts-cta-btn {
    font-size: 13px;
    padding: 10px 20px;
  }

  .container--contacts .contacts-cta-btn svg {
    width: 14px;
    height: 14px;
  }

  .container--contacts .contacts-main {
    padding: 24px 12px 35px;
    gap: 24px;
  }

  .container--contacts .contacts-form-panel {
    padding: 24px 16px 20px;
  }

  .container--contacts .contacts-info-grid {
    gap: 20px;
  }

  .container--contacts .contacts-field {
    margin-bottom: 14px;
  }

  .container--contacts .contacts-submit {
    padding: 16px 28px;
  }
}

@media (max-width: 400px) {
  .container--contacts .contacts-hero {
    min-height: 220px;
    padding: 20px 14px;
  }

  .container--contacts .contacts-hero-content {
    gap: 12px;
  }

  .container--contacts .contacts-badge {
    font-size: 11px;
    padding: 4px 10px;
  }

  .container--contacts .contacts-hero-title {
    font-size: 28px;
  }

  .container--contacts .contacts-cta-btn {
    font-size: 12px;
    padding: 9px 18px;
  }

  .container--contacts .contacts-cta-btn svg {
    width: 12px;
    height: 12px;
  }

  .container--contacts .contacts-main {
    padding: 20px 12px 30px;
    gap: 20px;
  }

  .container--contacts .contacts-form-panel {
    padding: 20px 14px 18px;
  }

  .container--contacts .contacts-form-title {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .container--contacts .contacts-info-title {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .container--contacts .contacts-info-texts {
    margin-bottom: 22px;
  }

  .container--contacts .contacts-info-text {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .container--contacts .contacts-info-grid {
    gap: 20px 16px;
  }

  .container--contacts .contacts-social {
    margin-top: 24px;
  }

  .container--contacts .contacts-field {
    margin-bottom: 12px;
  }

  .container--contacts .contacts-submit {
    padding: 14px 24px;
    font-size: 15px;
  }
}

/*=================COMPANY INFORMATION SECTION=================*/

.company-info {
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 80px 0;
}

.company-info-left {
  flex: 0 0 auto;
  max-width: 440px;
}

.company-certificate {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.company-info-right {
  flex: 1;
}

.company-info-title {
  font-family: "BlenderProBold", sans-serif;
  font-size: 48px;
  color: #fff;
  margin: 0 0 20px;
  letter-spacing: 0.5px;
}

.company-info-descr {
  font-family: "BlenderPro", sans-serif;
  font-size: 18px;
  color: #757c8b;
  margin: 0 0 40px;
  line-height: 1.6;
}

.company-info-rows {
  margin-bottom: 40px;
}

.company-info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
}

.company-info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(245, 188, 41, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-info-data {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.company-info-label {
  font-family: "BlenderPro", sans-serif;
  font-size: 14px;
  color: #757c8b;
}

.company-info-value {
  font-family: "BlenderProBold", sans-serif;
  font-size: 22px;
  color: #fff;
  letter-spacing: 0.3px;
}

.company-info-divider {
  height: 1px;
  background: rgba(117, 124, 139, 0.2);
}

.company-info-btn {
  font-family: "BlenderProBold", sans-serif;
  font-size: 17px;
  padding: 16px 40px;
  background: linear-gradient(90deg, #f5bc29 0%, #ef9a12 100%);
  border: none;
  border-radius: 46px;
  color: #fff;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  letter-spacing: 0.3px;
}

.company-info-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(245, 188, 41, 0.4);
}

/* Адаптив для Company Information */

@media (max-width: 1200px) {
  .company-info {
    gap: 50px;
  }

  .company-info-left {
    max-width: 380px;
  }

  .company-info-title {
    font-size: 42px;
  }
}

@media (max-width: 1000px) {
  .company-info {
    flex-direction: column;
    gap: 40px;
    padding: 60px 0;
  }

  .company-info-left {
    max-width: 400px;
    margin: 0 auto;
  }

  .company-info-title {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .company-info {
    padding: 50px 0;
    gap: 30px;
  }

  .company-info-left {
    max-width: 340px;
  }

  .company-info-title {
    font-size: 34px;
  }

  .company-info-descr {
    font-size: 16px;
    margin: 0 0 30px;
  }

  .company-info-value {
    font-size: 20px;
  }

  .company-info-rows {
    margin-bottom: 30px;
  }
}

@media (max-width: 540px) {
  .company-info {
    padding: 40px 0;
    gap: 24px;
  }

  .company-info-left {
    max-width: 280px;
  }

  .company-info-title {
    font-size: 30px;
  }

  .company-info-descr {
    font-size: 15px;
    margin: 0 0 24px;
  }

  .company-info-value {
    font-size: 18px;
  }

  .company-info-btn {
    font-size: 15px;
    padding: 14px 34px;
  }
}

@media (max-width: 400px) {
  .company-info-left {
    max-width: 240px;
  }

  .company-info-title {
    font-size: 26px;
  }

  .company-info-descr {
    font-size: 14px;
  }

  .company-info-value {
    font-size: 16px;
  }

  .company-info-label {
    font-size: 13px;
  }

  .company-info-btn {
    font-size: 14px;
    padding: 12px 28px;
  }
}
