a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
a img,
fieldset,
img {
  border: none;
}
input[type="email"],
input[type="tel"],
input[type="text"],
textarea {
  -webkit-appearance: none;
}
button,
input[type="submit"] {
  cursor: pointer;
}
button::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner {
  padding: 0;
  border: 0;
}
textarea {
  overflow: auto;
}
button,
input,
p {
  margin: 0;
  padding: 0;
  border: 0;
}
a,
a:focus,
button,
div,
h1,
h2,
h3,
h4,
h5,
h6,
input,
select,
span,
textarea {
  outline: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
ol,
ul {
  list-style-type: none;
  margin: 0 !important;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
  width: 100%;
}
html {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  background: none;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0;
  -webkit-padding-before: 0;
  -webkit-padding-start: 0;
  -webkit-padding-end: 0;
  -webkit-padding-after: 0;
}
*,
:after,
:before {
  box-sizing: inherit;
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}
img {
  display: block;
  height: auto;
  max-width: 100%;
}
a,
a:active,
a:focus,
a:hover {
  text-decoration: none !important;
  cursor: pointer;
}
section {
  position: relative;
  display: block;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  overflow-x: hidden !important;
  min-width: 320px;
  background: #f5f5f5;
  color: #1a1a1a;
}
body.overflow {
  overflow: hidden;
}
.overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 101;
  display: none;
}
.overlay.is-active {
  display: block;
}
[none] {
  display: none !important;
  visibility: hidden;
}
.hide-on-desctop{
    display:none;
}
.hide-on-mobile{
    display:block;
}
.container {
  max-width: 1440px;
  padding: 0 40px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .container {
    padding: 0 30px;
  }
}

.back {
  position: fixed;
  bottom: 0;
  right: 0;
  padding: 7px 20px;
  color: #fff;
  transition: background 0.3s linear;
  z-index: 8888;
}
.back,
.back:hover {
  background: #000;
}
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.section-before {
  position: relative;
  overflow: hidden;
}
.section-before:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 440px;
  background: linear-gradient(
    180deg,
    rgba(234, 233, 239, 0.65),
    rgba(234, 233, 239, 0)
  );
}
.text-white {
  color: #fff;
}
.text-center {
  text-align: center;
}
.padding {
  position: relative;
  width: 100%;
  display: block;
  box-sizing: border-box;
}
/* hr {
  height: 1px;
  width: 100%;
  background: #c9c9c9;
  margin-bottom: 100px; */
}
@media only screen and (max-width: 1024px) {
  hr {
    margin-bottom: 60px;
  }
}
.header {
  padding: 20px 0;
  background: #fff;
  position: relative;
  z-index: 100;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .header .logo img {
    height: 32px;
  }
}
.header__menu {
  display: flex;
  align-items: center;
  grid-gap: 40px;
}
@media only screen and (max-width: 1240px) {
  .header__menu {
    display: none;
  }
}
.header__menu a {
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #1a1a1a;
  transition: color 0.2s ease;
}
.header__menu a:hover {
  color: #ff520a;
}
.header__actions {
  display: flex;
  align-items: center;
  grid-gap: 10px;
}
@media only screen and (max-width: 1240px) {
  .header__actions {
    display: none;
  }
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
@media only screen and (max-width: 1240px) {
  .burger {
    display: flex;
  }
}
.burger span {
  width: 24px;
  height: 2px;
  background: #ff520a;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.burger span:nth-child(2) {
  margin: 5px 0;
}
.burger.active span:first-child {
  transform: translateY(7px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}
.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  z-index: 1000;
  visibility: hidden;
}
@media only screen and (max-width: 1240px) {
  .mobile-menu {
    display: block;
  }
}
.mobile-menu.active {
  visibility: visible;
}
.mobile-menu.active .mobile-menu__overlay {
  opacity: 1;
}
.mobile-menu.active .mobile-menu__content {
  transform: translateX(0);
}
.mobile-menu__overlay {
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.mobile-menu__content,
.mobile-menu__overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.mobile-menu__content {
  right: 0;
  max-width: 375px;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
@media only screen and (max-width: 480px) {
  .mobile-menu__content {
    max-width: 100%;
  }
}
.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.mobile-menu__header .logo img {
  width: 180px;
  height: 45px;
  object-fit: contain;
}
.mobile-menu__close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #ff520a;
  transition: color 0.3s ease;
}
.mobile-menu__close:hover {
  color: #ff520a;
}
.mobile-menu__nav {
  flex: 1;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-menu__nav a {
  padding: 16px 0;
  font-size: 18px;
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: #1a1a1a;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: color 0.3s ease;
}
.mobile-menu__nav a:hover {
  color: #ff520a;
}
.mobile-menu__nav {
  position: relative;
  overflow: hidden;
}
.mobile-menu__nav .mobile-submenu {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  padding: 0;
  z-index: 10;
  overflow-y: auto;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu__nav .mobile-submenu.active {
  display: flex;
  transform: translateX(0);
}
.mobile-submenu__header {
  display: flex;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  gap: 12px;
}
.mobile-submenu__back {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #ff520a;
  padding: 0;
  flex-shrink: 0;
}
.mobile-submenu__back svg {
  width: 24px;
  height: 24px;
}
.mobile-submenu__title {
  font-family: Inter Tight, sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0;
}
.mobile-menu__nav .mobile-submenu__content {
  flex: 1;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-menu__nav .mobile-submenu a {
  padding: 16px 20px;
  font-size: 18px;
  font-weight: 500;
  font-family: Inter Tight, sans-serif;
  color: #1a1a1a;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: color 0.3s ease;
  text-decoration: none;
}
.mobile-menu__nav .mobile-submenu a:hover {
  color: #ff520a;
}
.mobile-menu-toggle {
  position: relative;
  cursor: pointer;
}
.mobile-menu__actions {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.mobile-menu__actions .btn {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 14px 20px;
}
body.menu-open {
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  body.menu-open {
    position: fixed;
    width: 100%;
  }
}
.footer {
  padding-bottom: 40px;
  padding-right: 40px;
}
.footer__line {
  border-top: 1px solid #c9c9c9;
  padding-top: 45px;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  grid-gap: 40px;
}
@media only screen and (max-width: 991px) {
  .footer__inner {
    flex-direction: column;
  }
}
.footer__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 991px) {
  .footer__info {
    grid-gap: 40px;
  }
}
.footer__text {
  font-size: 14px;
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  display: flex;
  flex-direction: column;
  grid-gap: 10px;
}
@media only screen and (max-width: 991px) {
  .footer__text--desktop {
    display: none;
  }
}
.footer__text--mobile {
  display: none;
}
@media only screen and (max-width: 991px) {
  .footer__text--mobile {
    display: flex;
  }
}
@media only screen and (max-width: 767px) {
  .footer {
    padding-right: 20px;
  }
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__info {
    align-items: flex-start;
  }
  .footer__links {
    flex-direction: column;
    align-items: flex-start;
    grid-gap: 40px;
  }
  .footer__group {
    text-align: left;
  }
  .footer__group ul {
    align-items: flex-start;
  }
  .hide-on-mobile{
      display:none !important;
  }
  .hide-on-desctop{
      display:block !important;
  }
}
@media only screen and (max-width: 480px) {
  .footer {
    padding-right: 15px;
  }
}
.footer__text a {
  text-decoration: underline !important;
  color: #1a1a1a;
  transition: all 0.2s ease;
}
.footer__text a:hover {
  text-decoration: none !important;
}
.footer__links {
  display: flex;
  align-items: flex-start;
  grid-gap: 70px;
}
.footer__links h3 {
  font-size: 20px;
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.footer__links ul {
  margin-top: 20px !important;
  display: flex;
  flex-direction: column;
  grid-gap: 20px;
}
.footer__links li {
  display: flex;
  align-items: center;
  grid-gap: 8px;
}
.footer__links img {
  max-width: 24px;
}
.footer__links a {
  color: #1a1a1a;
  font-size: 16px;
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  transition: all 0.2s ease;
}
.footer__links a:hover {
  color: #ff520a;
}
.section__title.text-white h2 {
  color: #fff;
}
.section__title h2 {
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 48px;
  line-height: 120%;
}
@media only screen and (max-width: 1024px) {
  .section__title h2 {
    font-size: 32px;
    text-align: center;
  }
}
.section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .section__header h2 {
    text-align: left;
  }
}
.btn {
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  cursor: pointer;
  text-transform: uppercase;
  border: 1px solid transparent;
  padding: 10px 16px;
  border-radius: 160px;
}
.btn,
.btn-primary {
  position: relative;
  transition: all 0.2s ease;
}
.btn-primary {
  background: linear-gradient(135deg, #ff520a, #ff840a 50%, #ff520a);
  background-size: 200% 200%;
  background-position: 0 50%;
  color: #fff;
  padding: 10px 24px;
  overflow: visible;
  z-index: 1;
}
@media only screen and (max-width: 1024px) {
  .btn-primary {
    font-size: 16px;
    text-align: center;
    width: 100%;
    padding: 15px 16px;
  }
}
.btn-primary:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 160px;
  background: transparent;
  border: 3px solid rgba(255, 82, 10, 0);
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  box-shadow: 0 0 0 rgba(255, 82, 10, 0);
}
.btn-primary:hover {
  background-position: 100% 50%;
  box-shadow: 0 4px 15px rgba(255, 82, 10, 0.3);
}
.btn-primary:hover:after {
  animation: a 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes a {
  0% {
    width: 100%;
    height: 100%;
    opacity: 1;
    border-width: 3px;
    border-color: rgba(255, 82, 10, 0.8);
    box-shadow: 0 0 10px rgba(255, 82, 10, 0.4);
  }
  50% {
    opacity: 0.6;
    border-width: 2px;
    border-color: rgba(255, 82, 10, 0.5);
  }
  to {
    width: 150%;
    height: 220%;
    opacity: 0;
    border-width: 0;
    border-color: rgba(255, 82, 10, 0);
    box-shadow: 0 0 20px rgba(255, 82, 10, 0);
  }
}
.btn-border {
  border: 1px solid #ff520a;
  color: #ff520a;
  background: transparent;
}
.btn-border:hover {
  background: #ff520a;
  color: #fff;
}
.link {
  text-decoration: underline !important;
  text-transform: uppercase;
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  color: #1a1a1a;
}
.app-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.app-popup.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.app-popup.active .app-popup__content {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.app-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  will-change: opacity;
}
.app-popup__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: #fff;
  border-radius: 24px;
  padding: 48px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.3s ease;
  text-align: center;
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 768px) {
  .app-popup__content {
    padding: 32px 24px;
    border-radius: 16px;
  }
}
.app-popup__content h3 {
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 32px;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .app-popup__content h3 {
    font-size: 24px;
  }
}
.app-popup__content > p {
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.5;
  color: #1a1a1a;
  opacity: 0.7;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .app-popup__content > p {
    font-size: 14px;
    margin-bottom: 24px;
  }
}
.app-popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: #1a1a1a;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 50%;
  will-change: transform;
}
.app-popup__close:hover {
  background: rgba(0, 0, 0, 0.05);
  transform: rotate(90deg);
}
.app-popup__close svg {
  width: 24px;
  height: 24px;
}
.app-popup__buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.app-popup__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 24px;
  background: #1a1a1a;
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  will-change: transform;
  backface-visibility: hidden;
}
@media (max-width: 768px) {
  .app-popup__btn {
    gap: 12px;
    padding: 14px 20px;
  }
}
.app-popup__btn:hover {
  background: #ff520a;
  transform: translateY(-2px) translateZ(0);
  box-shadow: 0 8px 24px rgba(255, 82, 10, 0.3);
}
.app-popup__btn svg {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}
@media (max-width: 768px) {
  .app-popup__btn svg {
    width: 28px;
    height: 28px;
  }
}
.app-popup__btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.app-popup__btn-text span {
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  line-height: 1;
  opacity: 0.8;
}
@media (max-width: 768px) {
  .app-popup__btn-text span {
    font-size: 11px;
  }
}
.app-popup__btn-text strong {
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  line-height: 1.2;
  margin-top: 2px;
}
@media (max-width: 768px) {
  .app-popup__btn-text strong {
    font-size: 16px;
  }
}
.form-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.form-popup.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.form-popup.active .form-popup__content {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.form-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  will-change: opacity;
}
.form-popup__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: #fff;
  border-radius: 24px;
  padding: 48px;
  max-width: 540px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  overscroll-behavior: contain;
  scroll-behavior: smooth;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.3s ease;
  text-align: center;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}
/* скроллбар - скрыт, но прокрутка работает */
/* Показываем скроллбар на десктопе для возможности прокрутки */
@media (min-width: 769px) {
  .form-popup__content::-webkit-scrollbar {
    width: 6px;
    display: block;
  }
  .form-popup__content::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    display: block;
  }
  .form-popup__content::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
  }
  .form-popup__content::-webkit-scrollbar-track {
    background: transparent;
    display: block;
  }
  .form-popup__content {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
    -ms-overflow-style: auto;
  }
}

/* Скрываем скроллбар на мобильных */
@media (max-width: 768px) {
  .form-popup__content::-webkit-scrollbar {
    width: 0;
    display: none;
  }
  .form-popup__content::-webkit-scrollbar-thumb {
    display: none;
  }
  .form-popup__content::-webkit-scrollbar-track {
    display: none;
  }
  .form-popup__content {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
}

@media (max-width: 768px) {
  .form-popup__content {
    padding: 32px 24px;
    border-radius: 16px;
    max-height: 85vh;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    touch-action: pan-y !important;
  }
}
.form-popup__content h3 {
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 32px;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .form-popup__content h3 {
    font-size: 24px;
  }
}
.form-popup__content > p {
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.5;
  color: #1a1a1a;
  opacity: 0.7;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .form-popup__content > p {
    font-size: 14px;
    margin-bottom: 24px;
  }
}
.form-popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: #1a1a1a;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 50%;
  will-change: transform;
}
.form-popup__close:hover {
  background: rgba(0, 0, 0, 0.05);
  transform: rotate(90deg);
}
.form-popup__close svg {
  width: 24px;
  height: 24px;
}
.form-popup__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-popup__group {
  position: relative;
}
.form-popup__group input,
.form-popup__group select {
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  width: 100%;
  padding: 16px 20px;
  font-size: 16px;
  color: #1a1a1a;
  background: #f5f5f5;
  border: 2px solid transparent;
  border-radius: 12px;
  outline: none;
  transition: all 0.2s ease;
  -moz-appearance: none;
  appearance: none;
}
@media (max-width: 768px) {
  .form-popup__group input,
  .form-popup__group select {
    padding: 14px 18px;
    font-size: 15px;
  }
}
.form-popup__group input:focus,
.form-popup__group select:focus {
  border-color: #ff520a;
  background: #fff;
}
.form-popup__group input::placeholder,
.form-popup__group select::placeholder {
  color: #1a1a1a;
  opacity: 0.5;
}
.form-popup__group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231a1a1a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 50px;
}
.form-popup__group select option {
  color: #1a1a1a;
  background: #fff;
}
.form-popup__group.form-popup__checkbox {
  text-align: left;
  margin-top: 8px;
}
.form-popup__group.form-popup__checkbox .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.form-popup__group.form-popup__checkbox .checkbox-label input[type="checkbox"] {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  -moz-appearance: none;
  appearance: none;
  border: 2px solid #ccc;
  border-radius: 4px;
  background: #fff;
  transition: all 0.2s ease;
  padding: 0;
}
.form-popup__group.form-popup__checkbox
  .checkbox-label
  input[type="checkbox"]:hover {
  border-color: #ff520a;
}
.form-popup__group.form-popup__checkbox
  .checkbox-label
  input[type="checkbox"]:checked {
  background: #ff520a;
  border-color: #ff520a;
}
.form-popup__group.form-popup__checkbox
  .checkbox-label
  input[type="checkbox"]:checked:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form-popup__group.form-popup__checkbox
  .checkbox-label
  input[type="checkbox"]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 82, 10, 0.2);
}
.form-popup__group.form-popup__checkbox .checkbox-label .checkbox-text {
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 1.5;
  color: #1a1a1a;
}
@media (max-width: 768px) {
  .form-popup__group.form-popup__checkbox .checkbox-label .checkbox-text {
    font-size: 13px;
  }
}
.form-popup__group.form-popup__checkbox .checkbox-label .checkbox-text a {
  color: #ff520a;
  text-decoration: underline;
  transition: opacity 0.2s ease;
}
.form-popup__group.form-popup__checkbox .checkbox-label .checkbox-text a:hover {
  opacity: 0.8;
}
.form-popup__submit {
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  width: 100%;
  padding: 18px 24px;
  font-size: 16px;
  color: #fff;
  background: #ff520a;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 8px;
  will-change: transform;
  backface-visibility: hidden;
}
@media (max-width: 768px) {
  .form-popup__submit {
    padding: 16px 20px;
    font-size: 15px;
  }
}
.form-popup__submit:hover {
  background: #f04600;
  transform: translateY(-2px) translateZ(0);
  box-shadow: 0 8px 24px rgba(255, 82, 10, 0.4);
}
.form-popup__submit:active {
  transform: translateY(0) translateZ(0);
}
.form-popup__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.form-popup__success {
  display: none;
  text-align: center;
  padding: 24px 0;
}
.form-popup__success.active {
  display: block;
}
.form-popup__success svg {
  width: 80px;
  height: 80px;
  color: #ff520a;
  margin-bottom: 24px;
}
.form-popup__success h4 {
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  color: #1a1a1a;
  margin-bottom: 12px;
}
.form-popup__success p {
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #1a1a1a;
  opacity: 0.7;
}
.comparison-widget {
  display: none;
}
.comparison-header {
  display: flex;
  gap: 12px;
  margin: 40px 0;
}
.header-box {
  flex: 1;
  padding: 16px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 18px;
  justify-content: center;
  height: 65px;
  background: #fff;
}
.header-box,
.octane-logo {
  display: flex;
  align-items: center;
}
.octane-logo {
  gap: 8px;
}
.octane-logo-icon {
  width: 32px;
  height: 32px;
  background-color: var(--octane-orange);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.octane-logo-icon:before {
  content: "";
  width: 16px;
  height: 16px;
  background-color: #fff;
  border-radius: 50%;
}
.octane-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
}
.header-box.octane-header {
  border: 1px solid #ff520a;
}
.header-box.other-header {
  background-color: #fff;
  color: #333;
}
.feature-block {
  margin-top: 24px;
}
h3.feature-title {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 10px !important;
}
.feature-comparison {
  display: flex;
  gap: 12px;
}
.feature-option {
  flex: 1;
  padding: 14px;
  border-radius: 8px;
  font-weight: 300;
  display: flex;
  align-items: center;
}
.feature-option .icon {
  font-weight: 700;
  font-size: 1.2rem;
  margin-right: 10px;
  line-height: 1;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #fff;
  flex-shrink: 0;
}
.feature-option.octane-option {
  background: #fff;
  border: 1px solid #ff520a;
  color: #1a1a1a;
}
.feature-option.octane-option .icon {
  color: var(--octane-orange);
  background: url(../img/table-orange.svg) no-repeat 50%;
}
.feature-option.other-option {
  background-color: #fff;
  color: #1a1a1a;
}
.feature-option.other-option .icon {
  color: var(--text-grey);
  background: url(../img/table-gray.svg) no-repeat 50%;
}
.row-value.others .icon.icon-close {
  color: var(--text-grey);
  background: url(../img/table-gray.svg) no-repeat 50%;
  width: 20px;
  height: 20px;
}
.comparison-widget .table__actions {
  margin: 40px 0;
}
.tabs-widget-wrapper {
  max-width: 100%; /* Можно подогнать под нужный размер */
  margin: 0 auto; /* Центрируем виджет внутри .container */
  background-color: #F7F7F7;
  padding: 40px 0px 20px 0px;
  border-radius: 12px;
}
    /* Общие настройки для компонента */
.comparison-widget {
  max-width: 100%;
  background-color: #F7F7F7; /* Светло-серый фон как на картинке */
  border-radius: 12px;
}

/* --- Стили Вкладок (Табов) --- */
.tabs-header {
  display: flex;
  margin-bottom: 20px;
}

.tab-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 8px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #333;
}

/* Активная вкладка */
.tab-btn.active {
  background-color: rgba(255, 82, 10, 0.1);
  border: 1px solid #F45B25; /* Оранжевый бордер */
  
}
.tabs-header .tab-btn:first-child{
    border-radius: 16px 0px 0px 16px;
}
.tabs-header .tab-btn:last-child{
    border-radius: 0px 16px 16px 0px;
}

/* Неактивная вкладка */
.tab-btn:not(.active) {
  background-color: #FFFFFF;
  border: 1px solid #FFFFFF;
  border-radius: 4px;
  color: #4A4A4A;
  box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.octane-logo {
  width: 20px;
  height: 20px;
}

/* --- Стили Контента (Плавное переключение) --- */
.tabs-content {
  display: grid; /* Используем Grid, чтобы панели накладывались друг на друга для плавного fade-эффекта */
}

.tab-panel {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.tab-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* --- Стили Списка --- */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #EAEAEA;
}

.feature-list li {
  padding: 16px;
  border-bottom: 1px solid #EAEAEA;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-title {
  font-size: 14px;
  font-weight: 600;
  color: #1A1A1A;
}

.feature-value {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #555555;
}

.icon-check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
/* --- Стили для иконок во второй вкладке --- */
.feature-list-other .feature-value {
  color: #777777; /* Серый цвет текста для второй вкладки */
}

/* Иконка крестика */
.icon-cross {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Иконка восклицательного знака */
.icon-warning {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
@media only screen and (max-width: 1032px) {
  .comp-table {
    display: none;
  }
  .comparison-widget {
    display: block;
  }
}
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}
.swiper,
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  overflow: hidden;
  overflow: clip;
  list-style: none;
  padding: 0;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(
    --swiper-wrapper-transition-timing-function,
    initial
  );
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translateZ(0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide {
  transform-style: preserve-3d;
}
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper:before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal
  > .swiper-wrapper
  > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper:before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical
  > .swiper-wrapper
  > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper:before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(270deg, rgba(0, 0, 0, 0.5), transparent);
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5), transparent);
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5), transparent);
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent);
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: b 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes b {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}
.swiper-virtual.swiper-css-mode .swiper-wrapper:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}
.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper:after {
  height: 1px;
  width: var(--swiper-virtual-size);
}
.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper:after {
  width: 1px;
  height: var(--swiper-virtual-size);
}
:root {
  --swiper-navigation-size: 44px;
}
.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}
.swiper-button-next svg,
.swiper-button-prev svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  transform-origin: center;
}
.swiper-rtl .swiper-button-next svg,
.swiper-rtl .swiper-button-prev svg {
  transform: rotate(180deg);
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}
.swiper-button-lock {
  display: none;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: normal;
  line-height: 1;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: opacity 0.3s;
  transform: translateZ(0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: var(
    --swiper-pagination-bullet-width,
    var(--swiper-pagination-bullet-size, 8px)
  );
  height: var(
    --swiper-pagination-bullet-height,
    var(--swiper-pagination-bullet-size, 8px)
  );
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -moz-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0, -50%, 0);
}
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet,
.swiper-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  display: inline-block;
  transition: transform 0.2s, top 0.2s;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  transition: transform 0.2s, left 0.2s;
}
.swiper-horizontal.swiper-rtl
  > .swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  transition: transform 0.2s, right 0.2s;
}
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}
.swiper-pagination-progressbar {
  background: var(
    --swiper-pagination-progressbar-bg-color,
    rgba(0, 0, 0, 0.25)
  );
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}
.swiper-horizontal
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-lock {
  display: none;
}
.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  -ms-touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}
.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}
.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 0.01));
}
.swiper-scrollbar.swiper-scrollbar-vertical,
.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 0.01));
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}
.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}
.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-cube {
  overflow: visible;
}
.swiper-cube .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}
.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}
.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}
.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}
.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}
.swiper-flip {
  overflow: visible;
}
.swiper-flip .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}
.swiper-creative .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}
.swiper-cards {
  overflow: visible;
}
.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  backface-visibility: hidden;
  overflow: hidden;
}
.hero {
  height: 600px;
  background: #fff;
}
@media only screen and (max-width: 1366px) {
  .hero {
    height: 500px;
  }
}
@media only screen and (max-width: 1024px) {
  .hero {
    height: auto;
    padding: 0 0 60px;
  }
}
.hero h1 {
  font-size: 56px;
  line-height: 120%;
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
@media only screen and (max-width: 1366px) {
  .hero h1 {
    font-size: 48px;
  }
}
@media only screen and (max-width: 1024px) {
  .hero h1 {
    font-size: 32px;
  }
}
.hero p {
  margin: 20px 0 40px;
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  line-height: 130%;
}
@media only screen and (max-width: 1366px) {
  .hero p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1024px) {
  .hero p {
    margin: 10px 0 30px;
  }
}
@media only screen and (max-width: 1024px) {
  .hero br {
    display: none;
  }
}
.hero__inner {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  position: relative;
  grid-gap: 20px;
}
@media only screen and (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
}
@media only screen and (max-width: 1024px) {
  .hero__info {
    order: 1;
  }
}
.hero__actions {
  display: flex;
  align-items: center;
  grid-gap: 20px;
}
@media only screen and (max-width: 1024px) {
  .hero__actions {
    flex-direction: column;
  }
}
@media only screen and (max-width: 1024px) {
  .hero__actions a {
    width: 100%;
    text-align: center;
  }
}
.hero__media {
  height: 600px;
  position: relative;
  width: 100%;
}
@media only screen and (max-width: 1366px) {
  .hero__media {
    height: 500px;
  }
}
@media only screen and (max-width: 1024px) {
  .hero__media {
    order: 0;
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
  }
}
@media only screen and (max-width: 767px) {
  .hero__media {
    height: 300px;
  }
}
@media only screen and (max-width: 560px) {
  .hero__media {
    height: 280px;
  }
}
.hero__media img,
.hero__media video {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: bottom;
  object-position: bottom;
}
.features {
  padding: 100px 0;
}
@media only screen and (max-width: 991px) {
  .features {
    padding: 60px 0;
  }
}
.features__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
@media only screen and (max-width: 1366px) {
  .features__list {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .features__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.features__item {
  border-radius: 8px;
  position: relative;
  border: 1px solid rgba(26, 26, 26, 0.2);
  padding: 30px 20px;
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  grid-gap: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
@media only screen and (max-width: 991px) {
  .features__item {
    grid-gap: 16px;
    padding: 20px;
  }
}
.features__item:hover {
  transform: scale(1.03);
}
.features__item:hover .features__img img {
  animation: c 0.6s ease;
}
.features__img img {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
  object-fit: contain;
  transition: transform 0.3s ease;
}
@media only screen and (max-width: 991px) {
  .features__img img {
    width: 70px;
    height: 70px;
  }
}
.features__info h4 {
  font-size: 20px;
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.features__info p {
  font-size: 18px;
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  margin-top: 10px;
}
@media only screen and (max-width: 991px) {
  .features__info p {
    font-size: 16px;
  }
}
.features__footer {
  margin-top: 50px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media only screen and (max-width: 991px) {
  .features__footer {
    margin-top: 40px;
  }
}
.features__footer p {
  font-size: 20px;
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  .features__footer p {
    text-align: center;
    max-width: 90%;
  }
}
@keyframes c {
  0%,
  to {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-6px);
  }
  50% {
    transform: translateY(-3px);
  }
  75% {
    transform: translateY(-5px);
  }
}
.facts {
  padding-bottom: 100px;
}
@media only screen and (max-width: 1024px) {
  .facts {
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 1024px) {
  .facts br {
    display: none;
  }
}
.facts__top {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 750px;
}
@media only screen and (max-width: 1200px) {
  .facts__top {
    height: 650px;
  }
}
@media only screen and (max-width: 767px) {
  .facts__top {
    height: 770px;
  }
}
.facts__top:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    hsla(0, 0%, 100%, 0) 0,
    rgba(0, 0, 0, 0.9) 75%,
    #000
  );
  display: none;
}
@media only screen and (max-width: 767px) {
  .facts__top:after {
    display: block;
  }
}
.facts__top--main {
  width: 100%;
  height: 100%;
  transition: opacity 0.6s ease-in-out;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}
@media only screen and (max-width: 767px) {
  .facts__top--main {
    display: none;
  }
}
.facts__top--main2 {
  display: none;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .facts__top--main2 {
    display: block;
  }
}
.facts__top--desktop {
  position: absolute;
  top: 60px;
  right: 60px;
}
@media only screen and (max-width: 1200px) {
  .facts__top--desktop {
    top: 40px;
    right: 40px;
    max-width: 40%;
  }
}
@media only screen and (max-width: 1024px) {
  .facts__top--desktop {
    max-width: 70%;
  }
}
@media only screen and (max-width: 767px) {
  .facts__top--desktop {
    display: none;
  }
}
.facts__top--mobile {
  display: none;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .facts__top--mobile {
    display: block;
  }
}
.facts__bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 60px;
  margin-top: 60px;
}
@media only screen and (max-width: 1024px) {
  .facts__bottom {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .facts__bottom {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}
.facts__item {
  border-top: 1px solid #1a1a1a;
  padding-top: 20px;
  opacity: 0;
  transform: translateY(30px);
}
@media only screen and (max-width: 1024px) {
  .facts__item {
    padding-top: 10px;
  }
}
.facts__item:last-child {
  border: none;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.facts__item h3 {
  font-size: 40px;
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variant-numeric: tabular-nums;
}
@media only screen and (max-width: 1024px) {
  .facts__item h3 {
    font-size: 32px;
  }
}
.facts__item h3 .counter {
  display: inline;
}
.facts__item p {
  font-size: 18px;
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  margin-top: 10px;
}
@media only screen and (max-width: 1024px) {
  .facts__item p {
    font-size: 16px;
  }
}
.how {
  padding: 100px 0;
}
@media only screen and (max-width: 1024px) {
  .how {
    padding: 60px 0;
  }
}
.how__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 100px;
}
@media only screen and (max-width: 1024px) {
  .how__inner {
    grid-template-columns: 1fr;
  }
}
.how__media {
  display: flex;
  justify-content: center;
}
.how__list {
  margin: 50px 0;
  display: flex;
  flex-direction: column;
  grid-gap: 30px;
}
.how__item {
  display: flex;
  align-items: center;
  grid-gap: 20px;
  opacity: 0;
  transform: translateY(30px);
}
.how__item span {
  border: 1px solid #ff520a;
  color: #ff520a;
  font-size: 16px;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.how__item h4,
.how__item span {
  font-family: Inter Tight, sans-serif;
}
.how__item h4 {
  font-size: 20px;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.how__item p {
  font-size: 18px;
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  margin-top: 10px;
}
.how__actions {
  display: flex;
  align-items: center;
  grid-gap: 20px;
  opacity: 0;
  transform: translateY(30px);
}
@media only screen and (max-width: 1024px) {
  .how__actions {
    flex-direction: column;
  }
}
.app {
  margin-bottom: 100px;
}
@media only screen and (max-width: 1024px) {
  .app {
    margin-bottom: 60px;
    
  }
  .app__header{
      padding-top:50px;
      border-top:1px solid #C9C9C9;
  }
}
.app__wrapper {
  background: linear-gradient(180deg, #f5f5f5 35%, #ff840a 80%, #ff520a);
}
@media only screen and (max-width: 1024px) {
  .app__wrapper {
    background: linear-gradient(180deg, #f5f5f5 0, #ff840a 80%, #ff520a);
  }
}
.app__header {
  text-align: center;
}
.app__header h2 {
  font-size: 48px;
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  line-height: 120%;
}
@media only screen and (max-width: 1024px) {
  .app__header h2 {
    font-size: 32px;
  }
}
.app__header p {
  font-size: 18px;
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  margin: 30px 0;
}
@media only screen and (max-width: 1024px) {
  .app__header p {
    font-size: 16px;
    max-width: 280px;
    margin: 20px auto 40px;
  }
}
.app__actions {
  display: flex;
  align-items: center;
  grid-gap: 20px;
  justify-content: center;
}
@media only screen and (max-width: 1024px) {
  .app__actions--desktop {
    display: none;
  }
}
.app__actions--mobile {
  display: none;
  flex-direction: column;
}
@media only screen and (max-width: 1024px) {
  .app__actions--mobile {
    display: flex;
    margin-top: 100px;
  }
}
.app__inner {
  display: grid;
  grid-template-columns: 1fr 22em 1fr;
  align-items: center;
  grid-gap: 100px;
  margin-top: 100px;
}
@media only screen and (max-width: 1024px) {
  .app__inner {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
}
.app__item {
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .app__left {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .app__right {
    margin-bottom: 60px;
  }
}
.app__left,
.app__right {
  background: hsla(0, 0%, 96%, 0.7);
  border: 1px solid hsla(0, 0%, 100%, 0.2);
  border-radius: 8px;
  padding: 20px;
}
.app__left h4,
.app__right h4 {
  font-size: 24px;
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  line-height: 110%;
}
.app__left p,
.app__right p {
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  margin-top: 10px;
}
@media only screen and (max-width: 1024px) {
  .app__left p,
  .app__right p {
    font-size: 16px;
  }
}
.app__middle {
  height: 45rem;
  overflow: visible;
  /* margin-bottom: -5em; */
  border-radius: 47px;
}
@media only screen and (max-width: 1024px) {
  .app__middle {
    order: 3;
    height: 560px;
    margin-top: 30px;
  }
}
.app__middle video {
  max-width: 100%;
  width: 21rem;
  height: 44rem;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  vertical-align: middle;
  border-radius: 47px;
}
/* .app .phone-mockup {
  position: absolute;
  height: 45.5rem;
  width: 100%;
  top: -10px;
  left: -8px;
  background-image: url(../img/octane-phone-screen.webp);
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  z-index: 2;
} */
/* PHONE MOCKUP – FINAL */
.app .phone-mockup {
  width: 281px;
  height: 579px;
  max-width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: none;
  z-index: 2;
}

.app .phone-mockup img {
  max-width: 100%;
  height: auto;
  /* display: block; */
}

@media only screen and (max-width: 1024px) {
  .app .phone-mockup {
    height: 560px;
    background-size: contain;
  }
}
.card {
  padding: 100px 0;
}
@media only screen and (max-width: 1024px) {
  .card {
    padding: 0px 0px 60px 0;
  }
}
.card__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  grid-gap: 40px;
}
@media only screen and (max-width: 1024px) {
  .card__inner {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
}
@media only screen and (max-width: 1024px) {
  .card__info {
    order: 1;
  }
}
@media only screen and (max-width: 1024px) {
  .card__media {
    display: flex;
    order: 0;
  }
}
.card__list {
  margin: 50px 0;
  display: flex;
  flex-direction: column;
  grid-gap: 30px;
}
.card__list h4 {
  font-size: 20px;
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  display: flex;
  grid-gap: 10px;
  align-items: center;
}
.card__list p {
  font-size: 18px;
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  margin-top: 10px;
}
@media only screen and (max-width: 1024px) {
  .card__list p {
    font-size: 16px;
  }
}
.table {
  padding-bottom: 100px;
}
@media only screen and (max-width: 1032px) {
  .table {
    display: none;
  }
}
.table .section__title {
  opacity: 0;
  transform: translateY(30px);
}
.table .comp-table {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 40px;
  border-radius: 8px;
  margin-top: 160px;
  padding-right: 40px;
  background: #fff;
  width: 100%;
  position: relative;
  margin-bottom: 110px;
}
.table .comp-content {
  background: #fafafa;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
  position: absolute;
  right: 0;
  top: -60px;
  width: 400px;
  border-radius: 8px;
  overflow: hidden;
}
.table .comp-octane {
  right: 480px;
}
.table .comp-other {
  right: 40px;
}
.table .header-item:first-child {
  background: transparent;
  border: none;
}
.table .header-item {
  opacity: 0;
  transform: translateY(20px);
}
.table .comp-row {
  opacity: 0;
  transform: translateX(-20px);
}
.table .header-item {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.table .header-item img {
  margin: 0 auto;
  height: 40px;
}
.table .header-item,
.table .row-value {
  background: #fafafa;
  padding: 20px;
  border-top: 1px solid #eae8e8;
  height: 60px;
}
.table .row-label {
  padding: 20px 32px;
  font-size: 18px;
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  height: 60px;
}
.table .row-value {
  font-size: 18px;
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  display: flex;
  align-items: center;
  grid-gap: 10px;
}
.table__actions {
  display: flex;
  align-items: center;
  justify-content: center;
}
.feedback {
  padding-bottom: 100px;
}
@media only screen and (max-width: 1024px) {
  .feedback {
    padding-bottom: 60px;
  }
}
.feedback .section__title {
  position: sticky;
  top: 10px;
  align-self: start;
  z-index: 1;
}
@media only screen and (max-width: 1200px) {
  .feedback .section__title {
    position: static;
    top: 0;
  }
}
.feedback__inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  grid-gap: 40px;
  align-items: start;
}
@media only screen and (max-width: 1200px) {
  .feedback__inner {
    grid-template-columns: 1fr;
  }
}
.feedback__list {
  display: flex;
  flex-direction: column;
  grid-gap: 30px;
}
@media only screen and (max-width: 1024px) {
  .feedback__list {
    grid-gap: 20px;
  }
}
.feedback__item {
  display: grid;
  grid-template-columns: 180px 2fr 200px;
  grid-gap: 20px;
  padding: 10px;
  border-radius: 8px;
  background: #fff;
  position: relative;
  overflow: hidden;
  height: auto;
}
@media only screen and (max-width: 1200px) {
  .feedback__item {
    grid-gap: 40px;
  }
}
@media only screen and (max-width: 1024px) {
  .feedback__item {
    grid-template-columns: 1fr;
    grid-gap: 20px;
    padding: 20px;
    margin-bottom:20px;
  }
}
.feedback__item:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 209, 30, 0) 0,
    rgba(255, 82, 10, 0.5)
  );
}
@media only screen and (max-width: 1024px) {
  .feedback__item:after {
    width: 100%;
    background: linear-gradient(
      180deg,
      rgba(255, 209, 30, 0) 0,
      rgba(255, 82, 10, 0.5)
    );
    height: 120px;
    bottom: 0;
    top: auto;
  }
}
.feedback__ava img {
  width: 180px;
  height: 180px;
  overflow: hidden;
  border-radius: 8px;
}
/* Video version of avatar */
.feedback__video {
  width: 180px;
  height: 180px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.feedback__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feedback__info {
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .feedback__info {
    flex-direction: column-reverse;
    grid-gap: 20px;
  }
}
.feedback__info p {
  font-size: 18px;
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  line-height: 120%;
}
.feedback__bottom h4 {
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
}
.feedback__bottom span {
  font-size: 14px;
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  display: block;
  margin-top: 4px;
}
.feedback__position {
  border-left: 1px solid #c9c9c9;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 20px;
  z-index: 2;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .feedback__position {
    border-left: none;
    border-top: 1px solid #c9c9c9;
    padding-bottom: 10px;
  }
}
.feedback__position h3 {
  font-size: 24px;
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.feedback__position span {
  color: #000;
  font-size: 18px;
  display: block;
  margin-top: 6px;
  text-align: right;
}
.offers {
  padding: 100px 0;
}
@media only screen and (max-width: 1024px) {
  .offers {
    padding: 60px 0;
  }
}
.offers__arrows {
  display: flex;
  align-items: flex-start;
  grid-gap: 10px;
  flex-shrink: 0;
  margin-left: 20px;
}
@media only screen and (max-width: 768px) {
  .offers__arrows {
    margin-left: 10px;
  }
}
.offers__arrows-btn {
  cursor: pointer;
  display: block;
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}
.offers__arrows-btn svg {
  display: block;
  width: 100%;
  height: 100%;
}
.offers__arrows-btn svg rect {
  transition: fill 0.3s ease, stroke 0.3s ease;
}
.offers__arrows-btn svg path {
  transition: fill 0.3s ease;
}
.offers__arrows-left {
  transform: rotate(180deg);
}
.offers__arrows-left:hover {
  transform: rotate(180deg) translateX(5px);
}
.offers__arrows-right:hover {
  transform: translateX(5px);
}
.offers__arrows-btn:hover svg rect {
  fill: #ff520a;
  stroke: #ff520a;
}
.offers__arrows-btn:hover svg path {
  fill: #fff;
}
.offers__slider {
  margin-top: 50px;
}
.offers__slider.swiper {
  overflow: visible !important;
}
@media only screen and (min-width: 1200px) {
  .offers__slider.swiper {
    overflow: hidden !important;
  }
}
.offers__slider .swiper-wrapper-reset {
  transform: translateZ(0) !important;
}
.offers__item {
  height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  border-radius: 8px;
  background: linear-gradient(
    180deg,
    rgba(255, 82, 10, 0.2),
    rgba(255, 209, 30, 0.2)
  );
  overflow: hidden;
}
.offers__item.right .offers__media {
  display: flex;
  justify-content: flex-end;
}
.offers__item.center .offers__media {
  display: flex;
  justify-content: center;
}
.offers__item.stretch .offers__media img {
  width: 100%;
}
.offers__text {
  padding: 30px;
}
@media only screen and (max-width: 1024px) {
  .offers__text {
    padding: 20px;
  }
}
.offers__text h3 {
  font-size: 24px;
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.offers__text ul {
  display: flex;
  flex-direction: column;
  grid-gap: 10px;
  margin: 10px 0 0 !important;
  list-style-type: disc;
  padding-left: 30px;
}
.offers__text li {
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
}
@media only screen and (max-width: 1024px) {
  .offers__text li {
    font-size: 16px;
  }
}
.offers__actions {
  display: flex;
  align-items: center;
  grid-gap: 25px;
  padding: 0 30px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
@media only screen and (max-width: 1024px) {
  .offers__actions {
    grid-gap: 15px;
    padding: 0 20px;
    flex-direction: row;
  }
}
.offers__actions .btn-primary,
.offers__actions .link {
  max-width: -moz-fit-content;
  max-width: fit-content;
}
@media only screen and (max-width: 1024px) {
  .offers__actions .btn-primary,
  .offers__actions .link {
    font-size: 14px;
  }
}
.offers__media {
  margin-top: 30px;
}
.offers__media img {
  width: -moz-fit-content;
  width: fit-content;
}
.specials {
  padding-bottom: 100px;
}
@media only screen and (max-width: 1024px) {
  .specials {
    padding-bottom: 60px;
  }
}
.specials__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  margin-top: 50px;
  align-items: flex-start;
}
@media only screen and (max-width: 1024px) {
  .specials__list {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
}
.specials__item {
  border-radius: 8px;
  background: #fff;
  padding: 30px;
  transition: background 0.6s ease-in-out;
}
.specials__item.expanded {
  background: linear-gradient(
    135deg,
    rgba(255, 208, 30, 0.15),
    rgba(255, 82, 10, 0.15)
  );
}
.specials__item.expanded .specials__title {
  height: auto;
}
.specials__item.expanded .specials__span {
  color: #ff520a;
  background: rgba(255, 82, 10, 0.1);
}
.specials__hidden {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  margin: 0;
  margin-bottom: 20px;
}
.specials__hidden,
.specials__item.expanded .specials__hidden {
  transition: max-height 0.6s ease-in-out, opacity 0.6s ease-in-out,
    transform 0.6s ease-in-out, margin 0.6s ease-in-out;
}
.specials__item.expanded .specials__hidden {
  max-height: 800px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 20px;
}
.specials__title {
  height: 90px;
}
@media only screen and (max-width: 1024px) {
  .specials__title {
    height: auto;
  }
}
.specials__title h3 {
  font-size: 24px;
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  margin: 30px 0 0 !important;
}
@media only screen and (max-width: 1200px) {
  .specials__title h3 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .specials__title h3 {
    font-size: 24px;
  }
}
.specials__text p {
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  line-height: 140%;
}
.specials__footer {
  margin: 20px 0;
}
.specials__footer h5 {
  font-size: 18px;
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 8px;
}
.specials__footer p {
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
}
.specials__footer a {
  color: #ff520a;
}
.specials__span {
  padding: 6px 12px;
  background: linear-gradient(90deg, #ffd01e, #ff520a);
  display: inline-block;
  color: #fff;
  border-radius: 40px;
  font-size: 20px;
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.specials__bottom {
  display: grid;
  align-items: center;
  grid-template-columns: 560px 1fr 520px;
  margin-top: 50px;
}
@media only screen and (max-width: 1200px) {
  .specials__bottom {
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 1024px) {
  .specials__bottom {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
}
.specials__bottom h3 {
  font-size: 32px;
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
@media only screen and (max-width: 1200px) {
  .specials__bottom h3 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 1024px) {
  .specials__bottom h3 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 1200px) {
  .specials__bottom--span,
  .specials__bottom h3 br {
    display: none;
  }
}
.specials__bottom .form {
  width: 100%;
}
.specials__bottom .form__group {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  grid-gap: 10px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .specials__bottom .form__group {
    flex-direction: column;
  }
}
.specials__bottom .form [type="email"] {
  border: 1px solid #ebebeb;
  background: #fff;
  border-radius: 40px;
  font-size: 18px;
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  color: #1a1a1a;
  padding: 14px 18px;
  max-width: 360px;
  width: 100%;
}
@media only screen and (max-width: 1366px) {
  .specials__bottom .form [type="email"] {
    max-width: 360px;
  }
}
@media only screen and (max-width: 1024px) {
  .specials__bottom .form [type="email"] {
    font-size: 16px;
    max-width: 70%;
  }
}
@media only screen and (max-width: 767px) {
  .specials__bottom .form [type="email"] {
    max-width: 100%;
  }
}
.specials__bottom .form [type="email"]:hover {
  border: 1px solid #c9c9c9;
}
.specials__bottom .form [type="email"]:active,
.specials__bottom .form [type="email"]:focus {
  border: 1px solid #ff520a;
}
.specials__bottom .form [type="email"]:placeholder {
  color: #1a1a1a;
  font-size: 18px;
}
@media only screen and (max-width: 1024px) {
  .specials__bottom .form [type="email"]:placeholder {
    font-size: 16px;
  }
}
.specials__bottom .form [type="submit"] {
  max-width: 150px;
  width: 100%;
  color: #fff;
  text-transform: uppercase;
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background: #ff520a;
  height: 100%;
  padding: 14px 18px;
  border-radius: 40px;
  font-size: 16px;
}
@media only screen and (max-width: 1024px) {
  .specials__bottom .form [type="submit"] {
    max-width: 30%;
  }
}
@media only screen and (max-width: 767px) {
  .specials__bottom .form [type="submit"] {
    max-width: 100%;
  }
}
.specials__bottom p {
  font-size: 12px;
  line-height: 140%;
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  margin-top: 20px;
  display: block;
}
.specials__bottom p a {
  color: #ff520a;
}
.specials .link {
  color: #ff520a;
  transition: color 0.3s ease;
  cursor: pointer;
  display: inline-block;
}
.specials .link:hover {
  opacity: 0.7;
}
.faq {
  padding-bottom: 100px;
}
@media only screen and (max-width: 1024px) {
  .faq {
    padding-bottom: 60px;
  }
}
.faq__list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px 30px;
  align-items: start;
}
@media only screen and (max-width: 1024px) {
  .faq__list {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
}
.faq__item {
  border-bottom: 1px solid #c9c9c9;
}
.faq__header {
  padding-bottom: 30px;
  display: grid;
  grid-template-columns: 1fr 35px;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
@media only screen and (max-width: 1024px) {
  .faq__header {
    grid-template-columns: 1fr 30px;
    grid-gap: 20px;
  }
}
.faq__header h4 {
  font-size: 20px;
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.faq__header button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.faq__text {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;
}
.faq__text p {
  font-size: 18px;
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  line-height: 140%;
}
@media only screen and (max-width: 1024px) {
  .faq__text p {
    font-size: 16px;
  }
}
.faq__item.active .faq__text {
  max-height: 500px;
  padding-bottom: 30px;
}
.faq__item.active .faq__header button {
  transform: rotate(45deg);
}
.delete-user-data {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    rgba(255, 208, 30, 0.05),
    rgba(255, 82, 10, 0.05)
  );
  min-height: calc(100vh - 200px);
}
@media only screen and (max-width: 1024px) {
  .delete-user-data {
    padding: 60px 0;
  }
}
.delete-user-data h1 {
  font-size: 36px;
  line-height: 120%;
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  margin: 30px 0 !important;
}
@media only screen and (max-width: 1024px) {
  .delete-user-data h1 {
    font-size: 26px;
    margin: 20px 0 !important;
  }
}
.delete-user-data h2 {
  font-size: 28px;
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  margin: 30px 0 !important;
  line-height: 140%;
}
@media only screen and (max-width: 1024px) {
  .delete-user-data h2 {
    font-size: 20px;
    margin: 20px 0 !important;
  }
}
.delete-user-data p {
  font-size: 18px;
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  line-height: 160%;
  margin-bottom: 20px;
  color: #1a1a1a;
}
@media only screen and (max-width: 1024px) {
  .delete-user-data p {
    font-size: 16px;
    margin-bottom: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .delete-user-data p {
    font-size: 14px;
  }
}
.delete-user-data__content {
  background: #fff;
  padding: 60px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  color: #1a1a1a;
}
@media only screen and (max-width: 1024px) {
  .delete-user-data__content {
    padding: 40px 30px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .delete-user-data__content {
    padding: 30px 20px;
    font-size: 14px;
  }
}
.delete-user-data__content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ffd01e, #ff520a);
}
.delete-user-data__info {
  margin-bottom: 40px;
}
@media only screen and (max-width: 1024px) {
  .delete-user-data__info {
    margin-bottom: 30px;
  }
}
.delete-user-data__notice {
  background: linear-gradient(
    135deg,
    rgba(255, 208, 30, 0.1),
    rgba(255, 82, 10, 0.1)
  );
  border-left: 4px solid #ff520a;
  padding: 20px 30px;
  margin: 30px 0;
}
@media only screen and (max-width: 1024px) {
  .delete-user-data__notice {
    padding: 16px 20px;
    margin: 20px 0;
  }
}
.delete-user-data__notice p {
  margin-bottom: 0;
  font-size: 16px;
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: #1a1a1a;
}
.delete-user-data__list {
  margin: 30px 0;
  padding-left: 30px;
}
@media only screen and (max-width: 1024px) {
  .delete-user-data__list {
    padding-left: 20px;
  }
}
.delete-user-data__list li {
  font-size: 18px;
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  line-height: 160%;
  margin-bottom: 16px;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .delete-user-data__list li {
    font-size: 16px;
    margin-bottom: 12px;
  }
}
.delete-user-data__list li::marker {
  color: #ff520a;
}
.delete-user-data__form {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #c9c9c9;
}
@media only screen and (max-width: 1024px) {
  .delete-user-data__form {
    margin-top: 30px;
    padding-top: 30px;
  }
}
.delete-user-data__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(255, 208, 30, 0.2),
    rgba(255, 82, 10, 0.2)
  );
  border-radius: 50%;
}
@media only screen and (max-width: 1024px) {
  .delete-user-data__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
}
.delete-user-data__icon svg {
  width: 40px;
  height: 40px;
  color: #ff520a;
}
@media only screen and (max-width: 1024px) {
  .delete-user-data__icon svg {
    width: 32px;
    height: 32px;
  }
}
.delete-user-data .wpcf7 {
  margin-top: 20px;
}
.delete-user-data .wpcf7 .wpcf7-form {
  display: flex;
  flex-direction: column;
  grid-gap: 20px;
}
.delete-user-data .wpcf7 .wpcf7-form-control-wrap {
  width: 100%;
}
.delete-user-data .wpcf7 input[type="email"],
.delete-user-data .wpcf7 input[type="tel"],
.delete-user-data .wpcf7 input[type="text"],
.delete-user-data .wpcf7 textarea {
  width: 100%;
  border: 1px solid #ebebeb;
  background: #f5f5f5;
  border-radius: 8px;
  font-size: 16px;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  color: #1a1a1a;
  padding: 16px 20px;
  transition: all 0.3s ease;
  font-family: Inter Tight, sans-serif;
}
.delete-user-data .wpcf7 input[type="email"]:hover,
.delete-user-data .wpcf7 input[type="tel"]:hover,
.delete-user-data .wpcf7 input[type="text"]:hover,
.delete-user-data .wpcf7 textarea:hover {
  border: 1px solid #c9c9c9;
  background: #fff;
}
.delete-user-data .wpcf7 input[type="email"]:active,
.delete-user-data .wpcf7 input[type="email"]:focus,
.delete-user-data .wpcf7 input[type="tel"]:active,
.delete-user-data .wpcf7 input[type="tel"]:focus,
.delete-user-data .wpcf7 input[type="text"]:active,
.delete-user-data .wpcf7 input[type="text"]:focus,
.delete-user-data .wpcf7 textarea:active,
.delete-user-data .wpcf7 textarea:focus {
  border: 1px solid #ff520a;
  background: #fff;
  outline: none;
}
.delete-user-data .wpcf7 input[type="email"]::placeholder,
.delete-user-data .wpcf7 input[type="tel"]::placeholder,
.delete-user-data .wpcf7 input[type="text"]::placeholder,
.delete-user-data .wpcf7 textarea::placeholder {
  color: #999;
}
.delete-user-data .wpcf7 textarea {
  min-height: 120px;
  resize: vertical;
}
.delete-user-data .wpcf7 .wpcf7-submit {
  background: #ff520a;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 16px 40px;
  font-size: 18px;
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  cursor: pointer;
  transition: all 0.3s ease;
  max-width: 250px;
  margin-top: 10px;
}
@media only screen and (max-width: 1024px) {
  .delete-user-data .wpcf7 .wpcf7-submit {
    max-width: 100%;
    font-size: 16px;
  }
}
.delete-user-data .wpcf7 .wpcf7-submit:hover {
  background: #e64809;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 82, 10, 0.3);
}
.delete-user-data .wpcf7 .wpcf7-submit:active {
  transform: translateY(0);
}
.delete-user-data .wpcf7 .wpcf7-spinner {
  margin-left: 10px;
}
.delete-user-data .wpcf7 .wpcf7-not-valid-tip {
  color: #d63031;
  font-size: 14px;
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  margin-top: 8px;
}
.delete-user-data .wpcf7 .wpcf7-response-output {
  border: 2px solid;
  padding: 16px 20px;
  border-radius: 8px;
  margin-top: 20px;
  font-size: 16px;
  font-family: Inter Tight, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.delete-user-data .wpcf7 .wpcf7-response-output.wpcf7-validation-errors {
  border-color: #d63031;
  background: rgba(214, 48, 49, 0.1);
  color: #d63031;
}
.delete-user-data .wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ok {
  border-color: #00b894;
  background: rgba(0, 184, 148, 0.1);
  color: #00b894;
}
/* Базовые стили для контейнера карты */
.card__media {
    position: relative;
    width: 100%;
    min-height: 500px; /* Высота для ПК */
    display: flex;
    flex-direction: column;
}

/* Стили для мобильных (экраны меньше 768px) */
@media (max-width: 768px) {
    .card__media {
        min-height: 280px !important; /* Уменьшенная высота для телефона */
    }
}


/* Стиль для подсказки Rotate 360 */
.rotate-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10; /* Поверх канваса */
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.85); /* Полупрозрачный белый */
    backdrop-filter: blur(4px); /* Эффект размытия фона */
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    
    font-family: 'Inter Tight', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    
    pointer-events: none; /* ВАЖНО: пропускает клики сквозь себя на карту */
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Анимация иконки стрелочек */
.rotate-hint svg {
    animation: spin-slow 4s linear infinite;
}

@keyframes spin-slow {
    100% { transform: rotate(360deg); }
}

/* Скрываем на мобильных, если там мало места (опционально) */
@media (max-width: 480px) {
    .rotate-hint {
        bottom: 15px;
        padding: 8px 16px;
        font-size: 12px;
    }
}
@media only screen and (max-width: 1024px) {
  .how__inner {
    grid-template-columns: 1fr;
    grid-gap: 40px;
    align-items: center;
  }
  .how__media {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .how__media video {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
  .how__info {
    text-align: center;
  }
  .how__list {
    align-items: center;
  }
  .how__item {
    justify-content: center;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .how__inner {
    grid-gap: 30px;
  }
  .how__media video {
    max-width: 90%;
  }
  .how__item {
    flex-direction: row;
    text-align: left;
  }
    .how__info {
        text-align: left;
    }
}
@media only screen and (max-width: 560px) {
  .how__inner {
    grid-gap: 20px;
  }
  .how__media video {
    max-width: 100%;
  }
}
.offers__media {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 20px;
  flex-shrink: 0;
}
.offers__media video {
  width: 100%;
  max-width: 100%;
  height: 350px;
  min-height: 350px;
  max-height: 350px;
  object-fit: contain;
  object-position: center top;
  display: block;
}
.offers__item.stretch .offers__media {
  align-items: flex-end;
  margin-top: 0;
  overflow: hidden;
  width: 100%;
  padding: 0;
}
.offers__item.stretch .offers__media video {
  height: auto;
  width: 100%;
  min-height: auto;
  max-height: none;
  object-fit: cover;
}
@media only screen and (min-width: 1025px) {
  .offers__item.stretch .offers__media {
    margin-top: -180px;
    align-items: flex-end;
    overflow: hidden;
    width: 100%;
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 0;
  }
.offers__item.stretch .offers__media video {
    width: 100%;
    max-width: 100%;
    height: 300px;
    min-height: 300px;
    max-height: 300px;
    object-fit: contain;
    object-position: center bottom;
    display: block;
}
    .offers__item.center .offers__media:has(video) {
    margin-top: 0px;
    align-items: flex-start;
    overflow: hidden;
    width: 100%;
  }
  .offers__item.center .offers__media video {
    width: 100%;
    max-width: 100%;
    height: 300px;
    min-height: 300px;
    max-height: 300px;
    object-fit: contain;
    object-position: center top;
    display: block;
  }
  .offers__item.center .offers__actions {
    position: relative;
    z-index: 2;
    margin-top: 0;
  }
  .offers__item.right .offers__media:has(video) {
    margin-top: -30px;
    align-items: flex-start;
    overflow: hidden;
    width: 100%;
  }
  .offers__item.right .offers__media video {
    width: 100%;
    max-width: 100%;
    height: 300px;
    min-height: 300px;
    max-height: 300px;
    object-fit: contain;
    object-position: center top;
    display: block;
  }
  .offers__item.right .offers__actions {
    position: relative;
    z-index: 2;
    margin-top: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .offers__media {
    margin-top: auto
  }
  .offers__media video {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
  }
  .offers__item.stretch .offers__media {
    margin-top: auto;
  }
}
@media only screen and (max-width: 767px) {
  .offers__media {
    margin-top: auto;
  }
  .offers__media video {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center top;
  }
  .offers__item.stretch .offers__media {
    margin-top: auto;
  }
}
@media only screen and (max-width: 560px) {
  .offers__media {
    margin-top: auto;
  }
  .offers__media video {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .offers__item.stretch .offers__media {
    margin-top: auto
  }
}
.offers__item.stretch .offers__actions {
  display: flex;
  position: relative;
  z-index: 2;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.header__menu li {
  position: relative;
}
.header__menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 200px;
  padding: 10px 0;
  margin-top: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
}
.header__menu .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header__menu .sub-menu li {
  margin: 0;
}
.header__menu .sub-menu a {
  display: block;
  padding: 10px 20px;
  color: #1a1a1a;
  font-size: 14px;
  transition: all 0.2s ease;
}
.header__menu .sub-menu a:hover {
  background: #f5f5f5;
  color: #ff520a;
}
.mobile-menu__nav .mobile-submenu {
  display: none;
  padding-left: 20px;
  margin-top: 0;
}
.mobile-menu__nav .mobile-submenu.active {
  display: block;
}
.mobile-menu-toggle {
  position: relative;
  cursor: pointer;
}
.news {
  background: #F5F5F5;
  padding: 60px 0;
}
.section__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}
.section__title h2 {
  font-family: "Inter Tight", sans-serif;
  font-size: 48px;
  font-weight: 500;
}
.news .section__title span {
  font-family: "Inter Tight", sans-serif !important;
  font-weight: 300 !important;
  font-style: normal !important;
  font-size: 16px !important;
  line-height: 100% !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #1A1A1A !important;
}
.news__arrows {
  display: flex;
  gap: 12px;
}
@media (min-width: 1200px) {
  .news__arrows {
    display: none;
  }
}
.news__arrows-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: #FF520A;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  border-radius: 8px;
  opacity: 1;
}
.news__arrows-btn svg {
  transform: none;
}
.news__arrows-btn svg rect {
  display: none;
}
.news__arrows-btn svg path {
  fill: #ffffff;
}
.news__arrows-btn:hover {
  opacity: 1;
  background: #FF520A;
}
.news__slider {
  overflow: hidden;
}
.news__item {
  background: #F5F5F5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: none;
  transition: none;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 500px;
  border: none;
}
.news__item:hover {
  transform: none;
  box-shadow: none;
}
.news__media {
  width: 100%;
  height: 250px;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 8px;
}
.news__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}
.news__content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news__date {
  font-size: 14px;
  color: #999;
  margin-bottom: 12px;
  font-family: "Inter Tight", sans-serif;
}
.news__content h3 {
  font-family: "Inter Tight", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #1A1A1A;
  margin: 0 0 15px 0;
  line-height: 1.4;
}
.news__content p {
  font-family: "Inter Tight", sans-serif;
  font-size: 16px;
  color: #1A1A1A;
  line-height: 1.6;
  margin: 0 0 20px 0;
  flex: 1;
}
.news__link {
  font-family: "Inter Tight", sans-serif;
  font-size: 16px;
  color: #FF520A;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.news__link:hover {
  color: #e0480a;
}
.desctop-hidden{
    display:none;
}
@media only screen and (max-width: 767px) {
    .feedback__arrows {
        display: flex;
        align-items: flex-start;
        grid-gap: 10px;
        flex-shrink: 0;
        margin-left: 20px;
    }
    .feedback__arrows {
        margin-left: 10px;
    }
    .feedback__arrows-left {
        transform: rotate(180deg);
    }
    .feedback__arrows-btn {
        cursor: pointer;
        display: block;
        width: 40px;
        height: 40px;
        transition: transform 0.3s ease;
    }
    .feedback__arrows-btn svg {
        display: block;
        width: 100%;
        height: 100%;
    }
    .desctop-hidden .feedback__inner{
        display:block;
        min-width: 0;
    }
    .desctop-hidden .feedback__item{
        display:block;
        padding:20px;
        box-sizing: border-box;
    }
    .feedback__info{
        padding: 20px 0 30px 0px;
    }
    .feedback__position{
        padding: 30px 10px 10px 10px;
    }
    .feedbackSlider {
      width: 100%;
      min-width: 0;
      overflow: hidden; /* Крайне важно, чтобы контент не распирал сетку */
    }
    .feedback__mobile-top{
        display:flex;
        flex-direction:row;
        gap:20px;
        align-items:center;
    }
    .mobile-hidden{
        display:none;
    }
    .desctop-hidden{
        display:block !important;
        padding-top: 40px;
    }
  .section__header {
    flex-direction: row;
    gap: 20px;
    align-items:center;
    
  }
  .section__title h2 {
    font-size: 32px;
  }
  .section__title span[style*="color: #999"],
  .section__title span {
    font-size: 16px !important;
  }
  .news__item {
    margin-bottom: 20px;
  }
}