@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&family=Manrope:wght@200..800&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");
/* =========================
   GRADIENTS
========================= */
.text-gradient-1,
.text-gradient-2, .text-gradient-3, .text-gradient-4 {
  display: inline-block;
  color: #fff;
}

@supports (-webkit-background-clip: text) {
  .text-gradient-1,
  .text-gradient-2, .text-gradient-3, .text-gradient-4 {
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
  .text-gradient-1 {
    background-image: linear-gradient(90deg, #EB31FF 12%, #42BAFF 53%);
  }
  .text-gradient-2 {
    background-image: linear-gradient(90deg, #EB31FF -50%, #42BAFF 91%);
  }
  .text-gradient-3 {
    background-image: linear-gradient(90deg, #EB31FF 90%, #42BAFF 110%);
  }
  .text-gradient-4 {
    background-image: linear-gradient(90deg, #EB31FF -40%, #42BAFF 0%);
  }
}
/* ==================================================
   UI KIT
================================================== */
h1 {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-size: 40px;
  leading-trim: NONE;
  line-height: 56px;
  letter-spacing: 0;
}
h1 * {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-size: 40px;
  leading-trim: NONE;
  line-height: 56px;
  letter-spacing: 0;
}

h2 {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 28px;
  letter-spacing: 0;
}

h3 {
  font-family: "Urbanist", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 30px;
  letter-spacing: 0;
}

h4 {
  font-family: "Urbanist", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 22px;
  letter-spacing: 0;
}

.badge {
  font-family: "Urbanist", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 12px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0;
  text-transform: uppercase;
}

a.btn, button {
  background: linear-gradient(155deg, #E91CFF 0%, #F386FF 80%);
  padding: 14px 24px;
  text-align: center;
  border-radius: 108px;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 20px;
  letter-spacing: 0;
  color: white;
  display: inline-flex;
  width: fit-content;
  white-space: nowrap;
  align-items: center;
  gap: 8px;
}
a.btn .arrow, button .arrow {
  width: 16px;
  height: 16px;
  background-color: #fff;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='6' height='10' viewBox='0 0 6 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.75 8.75L4.75 4.75L0.75 0.75' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/6px 10px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg width='6' height='10' viewBox='0 0 6 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.75 8.75L4.75 4.75L0.75 0.75' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/6px 10px no-repeat;
}

/* ==================================================
   GLOBAL RESET / BASE
================================================== */
/* Box model */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Remove default margins */
html,
body,
h1, h2, h3, h4, h5, h6,
p,
blockquote,
figure,
dl,
dd {
  margin: 0;
}

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

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ==================================================
   FORMS / BUTTONS RESET
================================================== */
button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* Buttons */
button {
  cursor: pointer;
}

/* Remove Firefox inner focus */
button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* Inputs */
input,
textarea {
  border-radius: 0;
}

/* Autofill fix */
input:-webkit-autofill {
  box-shadow: 0 0 0 1000px transparent inset;
  -webkit-text-fill-color: currentColor;
}

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Hidden */
[hidden] {
  display: none !important;
}

/* ==================================================
   CONTAINER (Bootstrap-like)
   max-width: 1280px
================================================== */
/* MOBILE (по умолчанию) */
.container {
  width: 100%;
  margin-inline: auto;
  padding-inline: 16px;
}

/* TABLET+ */
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
    padding-inline: 0;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1280px;
  }
}
/* ========= VARS ========= */
/* ========= YOUR OLD STYLES (DESKTOP BASE) ========= */
.header-container {
  position: fixed;
  top: 24px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}

header.site-header .logo {
  width: 110px;
  height: 28px;
  object-fit: contain;
}

header.site-header {
  width: 100%;
  padding: 16px 32px;
  border-radius: 104px;
  display: flex;
  justify-content: space-between;
  gap: 158.85px;
  align-items: center;
  color: white;
  z-index: 999;
  border: 1px solid rgba(132, 132, 132, 0.5019607843);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(24px);
}

/* desktop nav */
header.site-header nav.desktop-nav ul {
  display: flex;
  gap: 40px;
  align-items: center;
}
header.site-header nav.desktop-nav ul li a {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  color: white;
  text-decoration: none;
}

header.site-header .header-contact-side {
  display: flex;
  gap: 24px;
  align-items: center;
}
header.site-header .header-contact-side p {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  color: white;
}
header.site-header .header-contact-side a {
  text-wrap: nowrap;
}
header.site-header .header-contact-side a.phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Language Switcher */
.lang-switcher {
  position: relative;
}
.lang-switcher__toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: white;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  padding: 8px 0;
}
.lang-switcher__arrow {
  transition: transform 0.2s ease;
}
.lang-switcher.is-open .lang-switcher__arrow {
  transform: rotate(180deg);
}
.lang-switcher__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(14, 18, 36, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 60px;
  list-style: none;
  margin: 4px 0 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  backdrop-filter: blur(12px);
  z-index: 100;
}
.lang-switcher.is-open .lang-switcher__dropdown {
  opacity: 1;
  visibility: visible;
}
.lang-switcher__dropdown li {
  margin: 0;
}
.lang-switcher__dropdown a {
  display: block;
  padding: 8px 16px;
  color: white;
  text-decoration: none;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  transition: background 0.2s ease;
}
.lang-switcher__dropdown a:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* your 1400 fix */
@media (max-width: 1400px) {
  header.site-header {
    gap: inherit;
  }
}
/* ========= NEW MOBILE ADDON (SAFE) ========= */
/* overlay for mobile menu */
.header-overlay {
  position: fixed;
  inset: 0;
  z-index: 998; /* ниже header-container (999) */
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(24px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

body.menu-open .header-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* hide mobile features on desktop by default */
.header-burger,
.header-mobile-menu {
  display: none;
}

/* ====== MOBILE MODE ====== */
@media (max-width: 992px) {
  /* container becomes full width pill placement */
  .header-container {
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    margin: 0 auto;
  }
  header.site-header {
    width: 100%;
    padding: 14px 16px;
    border-radius: 28px;
    background-size: cover; /* важное отличие от desktop */
    backdrop-filter: blur(24px);
    flex-wrap: wrap; /* чтобы меню было внутри */
    overflow: hidden; /* для плавного раскрытия */
  }
  /* IMPORTANT: hide desktop nav on mobile */
  header.site-header nav.desktop-nav {
    display: none;
  }
  /* contact side becomes right actions row */
  header.site-header .header-contact-side {
    margin-left: auto;
    gap: 12px;
  }
  /* hide desktop CTA in header row (it will be in mobile menu) */
  header.site-header .desktop-cta {
    display: none;
  }
  /* phone icon like round glass button */
  header.site-header .phone-icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    text-decoration: none;
  }
  /* burger show */
  .header-burger {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    cursor: pointer;
    position: relative;
  }
  /* burger morph icon -> X */
  .header-burger__icon {
    width: 18px;
    height: 14px;
    position: relative;
    display: block;
  }
  .header-burger__icon::before,
  .header-burger__icon::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 99px;
    background: #fff;
    opacity: 0.9;
    transition: transform 0.25s ease, top 0.25s ease, bottom 0.25s ease;
  }
  .header-burger__icon::before {
    top: 3px;
  }
  .header-burger__icon::after {
    bottom: 3px;
  }
  header.site-header.is-open .header-burger__icon::before {
    top: 6px;
    transform: rotate(45deg);
  }
  header.site-header.is-open .header-burger__icon::after {
    bottom: 6px;
    transform: rotate(-45deg);
  }
  /* mobile menu animated */
  .header-mobile-menu {
    display: block; /* чтобы анимация работала */
    width: 100%;
    max-height: 0;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.25s ease;
    padding: 0;
  }
  header.site-header.is-open .header-mobile-menu {
    max-height: 520px;
    opacity: 1;
    text-align: center;
    transform: translateY(0);
    pointer-events: auto;
    padding: 18px 0 10px;
  }
  header.site-header.is-open .header-mobile-menu a.btn {
    margin-top: 44px;
  }
  .header-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 22px;
    text-align: center;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .header-mobile-nav li {
    list-style: none;
  }
  .header-mobile-nav a {
    color: #fff;
    text-decoration: none;
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    opacity: 0.92;
  }
  .mobile-cta {
    margin: 6px auto 10px;
    width: min(260px, 100%);
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 14px 24px;
    border-radius: 999px;
    background: linear-gradient(155deg, #E91CFF 0%, #F386FF 80%);
    color: #fff;
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    text-decoration: none;
  }
}
footer {
  padding: 64px 0;
  background-image: url(../img/footer-new.webp);
  background-repeat: no-repeat;
  background-position: center bottom;
  -webkit-background-size: cover;
  background-size: cover;
  color: white;
}
footer .top-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  justify-content: space-between;
  padding-bottom: 23px;
}
footer .top-footer h6 {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #F8FAFC;
}
footer .top-footer .left-side .logo {
  width: 110px;
  height: 28px;
  object-fit: contain;
}

footer .top-footer .left-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
footer .top-footer .left-side p {
  font-family: "Urbanist", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-size: 14px;
  line-height: 22px;
  color: #FFFFFF;
  max-width: 448px;
}
footer .top-footer .left-side .created-by {
  display: flex;
  align-items: center;
  gap: 4px;
}
footer .top-footer .left-side .created-by img {
  width: 70px;
}
footer .top-footer .middle-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
footer .top-footer .middle-side .contact-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer .top-footer .middle-side .contact-side a {
  display: flex;
  gap: 8px;
  font-family: "Urbanist", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
}
footer .top-footer .middle-side .contact-side a svg {
  width: 16px;
  height: 16px;
}
footer .top-footer .middle-side.footer-links-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
footer .top-footer .middle-side.footer-links-column .footer-links-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer .top-footer .middle-side.footer-links-column .footer-links-nav a {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: "Urbanist", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.3s ease;
}
footer .top-footer .middle-side.footer-links-column .footer-links-nav a:hover {
  color: #42BAFF;
}
footer .top-footer .middle-side.footer-links-column .footer-links-nav a .menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
footer .top-footer .middle-side.footer-links-column .footer-links-nav a .menu-icon svg {
  width: 16px;
  height: 16px;
}
footer .top-footer .middle-side.footer-links-column .footer-links-nav a .menu-icon svg path,
footer .top-footer .middle-side.footer-links-column .footer-links-nav a .menu-icon svg circle,
footer .top-footer .middle-side.footer-links-column .footer-links-nav a .menu-icon svg line {
  transition: stroke 0.3s ease, fill 0.3s ease;
}
footer .top-footer .middle-side.footer-links-column .footer-links-nav a .menu-icon svg path:not([stroke]),
footer .top-footer .middle-side.footer-links-column .footer-links-nav a .menu-icon svg circle:not([stroke]),
footer .top-footer .middle-side.footer-links-column .footer-links-nav a .menu-icon svg line:not([stroke]) {
  fill: #94A3B8;
}
footer .top-footer .middle-side.footer-links-column .footer-links-nav a .menu-icon svg path[stroke],
footer .top-footer .middle-side.footer-links-column .footer-links-nav a .menu-icon svg circle[stroke],
footer .top-footer .middle-side.footer-links-column .footer-links-nav a .menu-icon svg line[stroke] {
  fill: none;
  stroke: #94A3B8;
}
footer .top-footer .middle-side.footer-links-column .footer-links-nav a:hover .menu-icon svg path:not([stroke]),
footer .top-footer .middle-side.footer-links-column .footer-links-nav a:hover .menu-icon svg circle:not([stroke]),
footer .top-footer .middle-side.footer-links-column .footer-links-nav a:hover .menu-icon svg line:not([stroke]) {
  fill: #42BAFF;
}
footer .top-footer .middle-side.footer-links-column .footer-links-nav a:hover .menu-icon svg path[stroke],
footer .top-footer .middle-side.footer-links-column .footer-links-nav a:hover .menu-icon svg circle[stroke],
footer .top-footer .middle-side.footer-links-column .footer-links-nav a:hover .menu-icon svg line[stroke] {
  stroke: #42BAFF;
}
footer .top-footer .offices-column .offices-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
footer .top-footer .offices-column .office-item {
  font-family: "Urbanist", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-size: 14px;
  line-height: 18px;
  color: #FFFFFF;
}
footer .top-footer .right-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 264px;
}
footer .top-footer .right-side .social-links {
  display: flex;
  gap: 8px;
  align-items: center;
}
footer .top-footer .right-side .social-links .icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(132, 132, 132, 0.5);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2509803922);
  background: rgba(255, 255, 255, 0.031372549);
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .top-footer .right-side .social-links .icon svg {
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.6)) drop-shadow(0 0 16px rgba(255, 255, 255, 0.4)) drop-shadow(0 0 32px rgba(255, 255, 255, 0.2));
}
footer .top-footer .right-side .mobile-store-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}
footer .top-footer .right-side .mobile-store-buttons a {
  display: block;
}
footer .top-footer .right-side .mobile-store-buttons a img {
  display: block;
  height: 40px;
  width: auto;
  object-fit: contain;
}
footer .bottom-footer {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1019607843);
}
footer .bottom-footer p {
  font-family: "Urbanist", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
}
footer .bottom-footer .footer-legal-nav {
  display: flex;
  align-items: center;
}
footer .bottom-footer .footer-legal-nav .legal-menu {
  display: flex;
  list-style: none;
  gap: 24px;
  margin: 0;
  padding: 0;
}
footer .bottom-footer .footer-legal-nav .legal-menu li {
  margin: 0;
  padding: 0;
}
footer .bottom-footer .footer-legal-nav .legal-menu a {
  font-family: "Urbanist", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.3s ease;
}
footer .bottom-footer .footer-legal-nav .legal-menu a:hover {
  color: #42BAFF;
}

.fourth-screen {
  position: relative;
  overflow: hidden;
}
.fourth-screen .container {
  overflow: visible;
}

.fourth-screen-slider {
  margin-top: 46px;
  margin-left: calc((100vw - 100%) / -2);
  margin-right: calc((100vw - 100%) / -2);
  padding-left: calc((100vw - 100%) / 2);
  padding-right: calc((100vw - 100%) / 2);
}
@media (max-width: 768px) {
  .fourth-screen-slider {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}
.fourth-screen-slider .swiper {
  overflow: visible;
}
.fourth-screen-slider .swiper-wrapper {
  align-items: stretch;
}
.fourth-screen-slider .swiper-slide {
  height: auto;
}
.fourth-screen-slider .slide-card {
  border-radius: 18px;
  border: 1px solid rgba(132, 132, 132, 0.5);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr 372px;
  gap: 36px;
}
.fourth-screen-slider .slide-card .left-side {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px 20px;
}
.fourth-screen-slider .slide-card .left-side .slider-title {
  display: flex;
  gap: 16px;
  align-items: center;
}
.fourth-screen-slider .slide-card .left-side .slider-title p {
  color: #F8FAFC;
  font-size: 20px;
  line-height: 28px;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
}
.fourth-screen-slider .slide-card .left-side .slider-title .icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1019607843);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2509803922);
  background: rgba(255, 255, 255, 0.031372549);
  display: flex;
  justify-content: center;
  align-items: center;
}
.fourth-screen-slider .slide-card .left-side .slider-body {
  width: 382px;
}
.fourth-screen-slider .slide-card .left-side .slider-body img {
  display: none;
}
.fourth-screen-slider .slide-card .left-side .slider-body p {
  color: #94A3B8;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  font-family: "Urbanist", sans-serif;
  font-optical-sizing: auto;
}
.fourth-screen-slider .slide-card .left-side .slider-body {
  padding-bottom: 33px;
}
.fourth-screen-slider .slide-card .left-side .slider-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 345px;
}
.fourth-screen-slider .slide-card .left-side .slider-footer .check .icon {
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='7' viewBox='0 0 10 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.11163e-05 3.59937L0.755693 2.8238L3.38069 5.40902L8.80967 -6.71148e-05L9.58524 0.775501L3.38069 6.96016L1.11163e-05 3.59937Z' fill='%230DA2E7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 100%;
  background-size: contain;
  min-width: 13px;
  height: 20px;
}
.fourth-screen-slider .slide-card .left-side .slider-footer .check p {
  color: #F8FAFC;
}
.fourth-screen-slider .slide-card .left-side .slider-footer .cross .icon {
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.74121 8.95508L8.95508 9.74121L4.86719 5.65332L0.779297 9.74121L0 8.95508L4.08789 4.86719L0 0.779297L0.779297 0L4.86719 4.08789L8.95508 0L9.74121 0.779297L5.65332 4.86719L9.74121 8.95508Z' fill='%23EF4343'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 100%;
  background-size: contain;
}
.fourth-screen-slider .slide-card .left-side .slider-footer .cross p {
  color: #94A3B8;
}
.fourth-screen-slider .slide-card .left-side .slider-footer .cross, .fourth-screen-slider .slide-card .left-side .slider-footer .check {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.fourth-screen-slider .slide-card .left-side .slider-footer .cross .icon, .fourth-screen-slider .slide-card .left-side .slider-footer .check .icon {
  display: block;
  width: 13px;
  height: 20px;
}
.fourth-screen-slider .slide-card .left-side .slider-footer .cross p, .fourth-screen-slider .slide-card .left-side .slider-footer .check p {
  font-size: 14px;
  line-height: 20px;
  font-family: "Urbanist", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
}
.fourth-screen-slider .slide-card .right-side img {
  width: 372px;
  height: 372px;
  border-radius: 12px;
}
.fourth-screen-slider .swiper-pagination {
  position: relative;
  margin-top: 14px;
}

/* pagination dots */
.fourth-screen-slider .swiper-pagination, .fifth-screen .swiper-pagination, .eight-screen .swiper-pagination {
  position: relative;
  margin-top: 52px;
  display: flex;
  justify-content: center;
  gap: 14px;
}
.fourth-screen-slider, .fifth-screen, .eight-screen {
  /* базовая точка */
}
.fourth-screen-slider .swiper-pagination-bullet, .fifth-screen .swiper-pagination-bullet, .eight-screen .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 !important;
  border-radius: 999px;
  background: #191E28;
  border: 1px solid #3C3F46;
  opacity: 1;
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.fourth-screen-slider, .fifth-screen, .eight-screen {
  /* активная точка */
}
.fourth-screen-slider .swiper-pagination-bullet-active, .fifth-screen .swiper-pagination-bullet-active, .eight-screen .swiper-pagination-bullet-active {
  background: #FFFFFF;
  border-color: transparent;
  box-shadow: 0px 0px 20px 0px rgba(255, 255, 255, 0.6), 0px 0px 8px 0px rgba(255, 255, 255, 0.3411764706);
}

@media (max-width: 768px) {
  .fourth-screen-slider .slide-card .left-side .slider-body img {
    display: block;
    width: 100%;
  }
  .fourth-screen-slider .slide-card .right-side img {
    display: none;
  }
}
.mode {
  display: none;
}

.mode.is-active {
  display: block;
}

.tile {
  position: relative;
  cursor: pointer;
  user-select: none;
  padding: 31px;
  border: 1px solid rgba(132, 132, 132, 0.5019607843);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02); /* чтобы overlay было на что накладываться */
  z-index: 0; /* создать контекст */
  display: flex;
  flex-direction: column;
  gap: 22px;
  color: #94A3B8;
}
.tile .tile-title {
  display: flex;
  align-items: center;
  gap: 16px;
}
.tile .tile-title h2 {
  color: #F8FAFC;
}
.tile .tile-title .icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1019607843);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2509803922);
  background: rgba(255, 255, 255, 0.031372549);
  display: flex;
  justify-content: center;
  align-items: center;
}
.tile .tile-title .icon svg {
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.6)) drop-shadow(0 0 16px rgba(255, 255, 255, 0.4)) drop-shadow(0 0 32px rgba(255, 255, 255, 0.2));
}
.tile.is-active {
  color: #FFFFFF;
}

/* overlay слой на плитках */
.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/overlay-tabs.png") center/cover no-repeat;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: 0;
}

/* hover = 30% */
.tile:hover::before {
  opacity: 0.3;
}

/* active = 100% */
.tile.is-active::before {
  opacity: 1;
}

.tile > * {
  position: relative;
  z-index: 1;
}

/* текст поверх overlay */
.tile > span {
  position: relative;
  z-index: 1;
}

/* ====== Phone (CSS-only) ====== */
.iphone {
  width: 328px;
  height: 665px;
  aspect-ratio: 9/19.5;
  position: relative;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.35));
}

.iphone-frame {
  position: relative;
  height: 100%;
  padding: 10px;
  background: linear-gradient(180deg, #1b1b1b, #0b0b0b);
  border-radius: 48px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.06);
}

.iphone-screen {
  height: 100%;
  background: #000;
  border-radius: 38px;
  overflow: hidden;
  position: relative;
}

.iphone-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.iphone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 46%;
  height: 26px;
  transform: translateX(-50%);
  background: #000;
  border-radius: 0 0 18px 18px;
  z-index: 5;
}

.laptop {
  width: 827px;
  max-width: 100%;
  margin-inline: auto;
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center; /* 🔥 ключевая строка */
}

/* КРЫШКА */
.laptop-lid {
  position: relative;
  background: linear-gradient(180deg, #1b1b1b, #0b0b0b);
  border-radius: 20px 20px 12px 12px;
  padding: 27px 18px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.05);
}

/* ЭКРАН */
.laptop-screen {
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/10;
}

/* КАРТИНКА НА ЭКРАНЕ */
.laptop-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ОСНОВАНИЕ */
.laptop-base {
  position: relative;
  height: 14px;
  width: 110%;
  background: linear-gradient(180deg, #2a2a2a 0%, #0f0f0f 100%);
  border-radius: 0 0 24px 24px;
  margin-top: -2px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 12px 20px rgba(0, 0, 0, 0.6);
}

/* Небольшая выемка по центру */
.laptop-notch {
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 4px;
}

.mobile-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 76px;
  align-items: center;
  margin-bottom: 40px;
}

.tiles-left, .tiles-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tiles-bottom {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}
.tiles-bottom .tile {
  width: 400px;
}

.web-layout {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.tiles-web {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tiles-swiper {
  display: none !important;
}

.tiles-swiper .swiper-wrapper {
  align-items: stretch;
}

.tiles-swiper .swiper-slide {
  height: auto;
}

.tiles-swiper .tile {
  width: 100%;
} /* 1 слайд = 1 tile на всю ширину */
.tiles-swiper .swiper-pagination {
  margin-top: 10px;
  position: static;
}

@media (max-width: 996px) {
  .tiles-swiper {
    display: block !important;
    margin-top: 16px;
  }
  .tiles-left, .tiles-right, .tiles-bottom, .tiles-web {
    display: none !important;
  }
  .mobile-layout, .web-layout {
    grid-template-columns: 1fr !important;
    justify-items: center;
  }
  .tiles-swiper {
    width: min(520px, 100%);
  }
}
.tabs-wrapper {
  display: flex;
  justify-content: center;
  padding: 32px 0 64px;
}

.tabs-pill {
  display: inline-flex;
  padding: 6px;
  border-radius: 108px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  gap: 6px;
  margin-inline: auto;
}

.tab-pill {
  padding: 14px 24px;
  border-radius: 108px;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.tab-pill.is-active {
  background: linear-gradient(90deg, #EB31FF 0%, #FF5CFB 100%);
  color: #fff;
  box-shadow: 0 10px 30px rgba(235, 49, 255, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.tab-pill:not(.is-active):hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

/* =========================================
   SWIPER ARROWS (добавить в твой код)
   ========================================= */
.fifth-screen .tiles-swiper {
  position: relative;
}
.fifth-screen {
  /* Базовые стили стрелок Swiper */
}
.fifth-screen .swiper-button-prev,
.fifth-screen .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
  width: 28px !important;
  height: 28px !important;
  border-radius: 999px;
  background: linear-gradient(90deg, #EB31FF 0%, #FF5CFB 100%);
  display: none;
  place-items: center;
  cursor: pointer;
  z-index: 30;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.fifth-screen .swiper-button-prev:after,
.fifth-screen .swiper-button-next:after {
  display: none;
}
.fifth-screen {
  /* Иконка стрелки через mask (чисто CSS) */
}
.fifth-screen .swiper-button-prev::before,
.fifth-screen .swiper-button-next::before {
  content: "";
  width: 12px !important;
  height: 12px !important;
  background: #fff;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18'%3E%3Cpath d='M11.25 3.75 6.75 9l4.5 5.25' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18'%3E%3Cpath d='M11.25 3.75 6.75 9l4.5 5.25' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.fifth-screen {
  /* Правая — разворот */
}
.fifth-screen .swiper-button-next::before {
  transform: rotate(180deg);
}
.fifth-screen {
  /* Active */
}
.fifth-screen .swiper-button-prev:active,
.fifth-screen .swiper-button-next:active {
  transform: translateY(-50%) scale(0.95);
}
.fifth-screen .swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}
@media (max-width: 768px) {
  .fifth-screen .swiper-button-prev,
  .fifth-screen .swiper-button-next {
    display: grid;
  }
  .fifth-screen .swiper-button-prev {
    left: -14px;
  }
  .fifth-screen .swiper-button-next {
    right: -14px;
  }
  .fifth-screen .laptop .swiper-button-prev,
  .fifth-screen .laptop .swiper-button-next {
    top: 60%;
  }
  .fifth-screen .laptop .swiper-button-prev {
    left: 4px;
  }
  .fifth-screen .laptop .swiper-button-next {
    right: 4px;
  }
}

/* Делаем swiper контейнером для абсолютных стрелок */
.partner-slider .slider {
  margin-top: 40px;
}
.partner-slider .partner-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.partner-slider .partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-radius: 16px;
}
.partner-slider .partner-item img {
  max-width: 175px;
  max-height: 110px;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}
.partner-slider .partner-item:hover img {
  opacity: 1;
}

/* ====== MODAL BASE ====== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.modal.is-open {
  display: block;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3019607843);
  backdrop-filter: blur(24px);
}

.modal__dialog {
  position: relative;
  z-index: 1;
  width: 806px;
  margin: 56px auto;
  border-radius: 16px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.45);
}

/* close */
.modal__close {
  position: absolute;
  top: 27px;
  right: 27px;
  width: 32px;
  height: 32px;
  border-radius: 12px;
  color: #fff;
  cursor: pointer;
  font-size: 28px;
  line-height: 42px;
  text-align: center;
}

/* pill */
.modal__top-pill {
  width: fit-content;
  margin: 0 auto 18px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* title + subtitle */
.modal__title {
  margin: 0 auto 10px;
  max-width: 580px;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 36px;
}

.modal__title-gradient {
  background: linear-gradient(90deg, #EB31FF 0%, #42BAFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.modal__subtitle {
  margin: 0 auto 32px;
  max-width: 580px;
  text-align: center;
  font-family: "Urbanist", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  color: #FFFFFF;
}

/* ====== FIELDS ====== */
.modal__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
}

.field__label {
  display: block;
  margin-bottom: 6px;
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #FFFFFF;
}

.field__input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid rgba(132, 132, 132, 0.50);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.10) 100%), rgba(255, 255, 255, 0.05);
  background-blend-mode: overlay, normal, normal;
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.30);
  backdrop-filter: blur(45px);
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 14px;
}

.field__input::placeholder {
  color: rgba(148, 163, 184, 0.65);
}

/* ====== MODULES ====== */
.modal__modules {
  margin-top: 44px;
}

.modal__modules-title {
  margin: 0 0 16px;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.module-card {
  cursor: pointer;
}

.module-card {
  position: relative;
  display: block;
  cursor: pointer;
}

.module-card__check {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.module-card__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-direction: inherit;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.module-card__text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.module-card__tick {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.module-card__tick svg {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.module-card__check:checked + .module-card__box .module-card__tick {
  background: linear-gradient(155deg, #E91CFF 0%, #F386FF 80%);
  border: none;
}

.module-card__check:checked + .module-card__box .module-card__tick svg {
  opacity: 1;
  transform: scale(1);
}

.module-card__box:hover {
  border-color: rgba(255, 255, 255, 0.28);
}

.module-card__box {
  display: flex;
  gap: 6px;
  justify-content: space-between;
  min-height: 74px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.module-card__name {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
}

.module-card__price {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #fff;
}

/* ====== SUBMIT ====== */
.modal__submit {
  margin: 32px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  background: linear-gradient(155deg, #E91CFF 0%, #F386FF 80%);
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
}

.modal__submit-arrow {
  font-size: 20px;
  transform: translateY(-1px);
}

/* ====== CONTACT FORM 7 IN MODAL ====== */
.modal__form-wrapper {
  margin-top: 24px;
}

.modal__form-wrapper .wpcf7-form {
  display: block;
}

.modal__form-wrapper .wpcf7-form > p {
  margin: 0;
}

/* Two columns layout for fields */
.modal__form-wrapper .modal__fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.modal__form-wrapper .wpcf7-form-control-wrap {
  display: block;
}

/* Label styling */
.modal__form-wrapper .field-label {
  display: block;
  margin-bottom: 6px;
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #FFFFFF;
}

/* Input fields */
.modal__form-wrapper .wpcf7-form input[type="text"],
.modal__form-wrapper .wpcf7-form input[type="email"],
.modal__form-wrapper .wpcf7-form input[type="tel"],
.modal__form-wrapper .wpcf7-form textarea,
.modal__form-wrapper .wpcf7-form select {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid rgba(132, 132, 132, 0.50);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.10) 100%), rgba(255, 255, 255, 0.05);
  background-blend-mode: overlay, normal, normal;
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.30);
  backdrop-filter: blur(45px);
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 14px;
  box-sizing: border-box;
}

.modal__form-wrapper .wpcf7-form textarea {
  height: auto;
  min-height: 100px;
  padding: 12px 16px;
  resize: vertical;
}

.modal__form-wrapper .wpcf7-form input::placeholder,
.modal__form-wrapper .wpcf7-form textarea::placeholder {
  color: rgba(148, 163, 184, 0.65);
}

/* Submit button */
.modal__form-wrapper .wpcf7-form input[type="submit"],
.modal__form-wrapper .wpcf7-form button[type="submit"] {
  margin: 24px auto 0;
  display: block;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  background: linear-gradient(155deg, #E91CFF 0%, #F386FF 80%);
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  width: auto;
  height: auto;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.modal__form-wrapper .wpcf7-form input[type="submit"]:hover,
.modal__form-wrapper .wpcf7-form button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(233, 28, 255, 0.4);
}

/* Response messages */
.modal__form-wrapper .wpcf7-response-output {
  margin: 16px 0 0;
  padding: 12px 16px;
  border-radius: 8px;
  font-family: "Urbanist", sans-serif;
  font-size: 14px;
  text-align: center;
}

.modal__form-wrapper .wpcf7-response-output.wpcf7-validation-errors,
.modal__form-wrapper .wpcf7-response-output.wpcf7-spam-blocked {
  border-color: #ff6b6b;
  background: rgba(255, 107, 107, 0.1);
  color: #ff6b6b;
}

.modal__form-wrapper .wpcf7-response-output.wpcf7-mail-sent-ok {
  border-color: #51cf66;
  background: rgba(81, 207, 102, 0.1);
  color: #51cf66;
}

.modal__form-wrapper .wpcf7-not-valid-tip {
  color: #ff6b6b;
  font-size: 12px;
  margin-top: 4px;
}

.modal__form-wrapper .wpcf7-spinner {
  margin: 0 auto;
  display: block;
}

.modal__notice {
  text-align: center;
  padding: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* Mobile responsive */
@media (max-width: 560px) {
  .modal__form-wrapper .modal__fields-row {
    grid-template-columns: 1fr;
  }
}

/* ====== RESPONSIVE ====== */
@media (max-width: 860px) {
  .modules-grid {
    grid-template-columns: 1fr 1fr;
  }
  .modal__title {
    font-size: 28px;
    line-height: 36px;
  }
}
@media (max-width: 560px) {
  .modal__fields {
    grid-template-columns: 1fr;
  }
  .modules-grid {
    grid-template-columns: 1fr;
  }
  .modal__dialog {
    margin: 16px auto;
    padding: 22px 18px 22px;
  }
}

/* ====== APP STORE MODAL ====== */
.modal__dialog--compact {
  max-width: 480px;
  text-align: center;
}
.modal__dialog--compact .modal__title {
  font-size: 28px;
  line-height: 36px;
}
.modal__dialog--compact .modal__subtitle {
  margin-bottom: 32px;
}
.app-store-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.app-store-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: all 0.3s ease;
}
.app-store-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.app-store-btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  flex-shrink: 0;
}
.app-store-btn--ios .app-store-btn__icon {
  background: linear-gradient(135deg, #1a1a1a 0%, #434343 100%);
}
.app-store-btn--android .app-store-btn__icon {
  background: linear-gradient(135deg, #00c853 0%, #00e676 100%);
}
.app-store-btn--web .app-store-btn__icon {
  background: linear-gradient(135deg, #42BAFF 0%, #667eea 100%);
}
.app-store-btn__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  font-family: "Manrope", sans-serif;
}
.app-store-btn__label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}
.app-store-btn__store {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}
@media (max-width: 560px) {
  .modal__dialog--compact {
    max-width: 100%;
  }
  .app-store-btn {
    padding: 14px 18px;
  }
  .app-store-btn__store {
    font-size: 18px;
  }
}

/* ====== 404 PAGE ====== */
.error-404-section {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}
.error-404-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.error-404-code {
  font-size: 180px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 24px;
  font-family: "Manrope", sans-serif;
}
.error-404-code span {
  display: inline-block;
}
.error-404-title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  font-family: "Manrope", sans-serif;
}
.error-404-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  line-height: 1.6;
  font-family: "Manrope", sans-serif;
}
.error-404-section .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 768px) {
  .error-404-code {
    font-size: 120px;
  }
  .error-404-title {
    font-size: 24px;
  }
  .error-404-description {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .error-404-code {
    font-size: 80px;
  }
  .error-404-section {
    padding: 40px 0;
  }
}

body {
  background-color: #0E1224;
}

.main-screen {
  height: 900px;
  background-image: url(../img/first-screen-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  background-color: #0E1224;
  background-position: center center;
  position: relative;
  z-index: 1;
  border-radius: 0 0 48px 48px;
}

.powered-table {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  padding: 12px 18px;
  border-radius: 99px;
  border: 1px solid rgba(132, 132, 132, 0.5019607843);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.main-screen__content {
  display: grid;
  align-items: center;
  padding-top: 214px;
  color: white;
  grid-template-columns: 717px 1fr;
}
.main-screen__content .left-side {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.main-screen__content .left-side .text-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.main-screen__content .left-side .text-side h1 {
  font-size: 80px;
  line-height: 72px;
  padding-bottom: 2px;
}
.main-screen__content .left-side .text-side h2 {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-size: 34px;
  line-height: 42px;
}
.main-screen__content .left-side .text-side h3 {
  width: 565px;
}
.main-screen__content .right-side {
  position: relative;
  height: 100%;
  display: block;
  width: 100%;
}
.main-screen__content .right-side .mobile-img {
  display: none;
}
.main-screen__content .right-side .desktop-img {
  width: 765px;
  height: 524px;
  object-fit: contain;
}

.main-screen__content .right-side img {
  position: absolute;
  top: 33px;
  left: -76px;
}

.second-screen {
  padding: 135px 0 99px;
  background-image: url(../img/second-screen-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  height: 616px;
  margin-top: -38px;
  background-position: center center;
  position: relative;
}
.second-screen .second-screen__title-side {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.second-screen .second-screen__title-side .text-side {
  color: white;
}
.second-screen .second-screen__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 44px;
}
.second-screen .second-screen__content .second-screen__content-item {
  border-radius: 16px;
  padding: 32px 33px;
  color: white;
  border: 1px solid rgba(132, 132, 132, 0.5019607843);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  background-size: 5%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.second-screen .second-screen__content .second-screen__content-item h2 {
  padding-top: 4px;
  color: #F8FAFC;
}
.second-screen .second-screen__content .second-screen__content-item span {
  color: #94A3B8;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  line-height: 24px;
  font-size: 16px;
}
.second-screen .second-screen__content .second-screen__content-item .icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1019607843);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2509803922);
  background: rgba(255, 255, 255, 0.031372549);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.second-screen .second-screen__content .second-screen__content-item .icon svg {
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.6)) drop-shadow(0 0 16px rgba(255, 255, 255, 0.4)) drop-shadow(0 0 32px rgba(255, 255, 255, 0.2));
}

.third-screen {
  background-image: url(../img/third-screen-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #0E1224;
  color: #FFFFFF;
  padding: 135px 0 101px;
  border-radius: 0 0 48px 48px;
}
.third-screen .third-screen__title-side {
  width: 709px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.third-screen .third-screen__content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 71px;
}
.third-screen .third-screen__content .third-screen__content-item {
  border-radius: 16px;
  padding: 32px 33px;
  color: white;
  border: 1px solid rgba(132, 132, 132, 0.5019607843);
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.third-screen .third-screen__content .third-screen__content-item .counter-number {
  font-family: "Urbanist", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  padding-top: 8px;
}
.third-screen .third-screen__content .third-screen__content-item span {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.third-screen .third-screen__content .third-screen__content-item .icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1019607843);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2509803922);
  background: rgba(255, 255, 255, 0.031372549);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.third-screen .third-screen__content .third-screen__content-item .icon svg {
  filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.1)) drop-shadow(0 0 8px rgba(255, 255, 255, 0.1)) drop-shadow(0 0 16px rgba(255, 255, 255, 0.1));
}

.fourth-screen {
  background-color: #0E1224;
  padding: 122px 0 110px;
  background-image: url(../img/bg-4.webp);
  -webkit-background-size: 100% 100%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.fourth-screen .container {
  color: white;
}
.fourth-screen .container h1 {
  padding: 8px;
}

.fifth-screen {
  background-image: url(../img/bg-5.webp);
  background-color: #080B16;
  background-size: 100% 150%;
  background-repeat: no-repeat;
  background-position: 0 0;
  padding-bottom: 50px;
}
.fifth-screen .running-text {
  padding: 160px 0 164px;
  overflow: hidden;
  width: 100%;
  color: white;
  mask-image: linear-gradient(90deg, transparent, #fff 8%, #fff 92%, transparent);
  /* JS сюда положит расстояние */
  --marquee-distance: 0px;
  --marquee-duration: 18s;
}
.fifth-screen .running-text__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marquee var(--marquee-duration) linear infinite;
  transform: translate3d(0, 0, 0);
}
.fifth-screen .running-text__group {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  flex: 0 0 auto;
}
.fifth-screen .running-text__item {
  margin: 0;
  white-space: nowrap;
  font-weight: 800;
  font-size: 52px;
  line-height: 64px;
  text-transform: uppercase;
  font-family: "Manrope", sans-serif;
}
.fifth-screen .running-text__sep {
  margin-left: 60px;
  padding-right: 60px;
  opacity: 1;
  font-size: 52px;
  line-height: 1;
}
@keyframes marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-1 * var(--marquee-distance)), 0, 0);
  }
}
@media (max-width: 768px) {
  .fifth-screen .running-text {
    padding: 80px 0;
  }
  .fifth-screen .running-text__item {
    font-size: 28px;
    line-height: 36px;
  }
  .fifth-screen .running-text__sep {
    margin-left: 28px;
    padding-right: 28px;
    font-size: 28px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .fifth-screen .running-text__track {
    animation: none;
  }
}
.fifth-screen .title-side {
  width: 876px;
  margin: 0 auto;
  color: white;
  text-align: center;
}

.sixth-screen {
  background-image: url(../img/bg-6.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 142px 0 287px;
}
.sixth-screen .container {
  display: flex;
  gap: 42.5px;
  align-items: center;
  color: white;
}
.sixth-screen .container h1 {
  padding: 16px 0 8px;
}
.sixth-screen .container .right-side img {
  width: 614.5px;
}

.seventh-section {
  background-color: #080B16;
  border-radius: 48px 48px 0 0;
  background-image: url(../img/bg-7.webp);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 134px 0 50px;
  position: relative;
  margin-top: -100px;
}
.seventh-section .title-side {
  text-align: center;
  color: #FFFFFF;
  padding-bottom: 60px;
}
.seventh-section .title-side h1 {
  padding: 16px 0 8px;
}

.prices-table-swiper .table-item, .prices-table .table-item {
  padding: 32px;
  border: 1px solid #3E3D49;
  border-radius: 16px;
  display: flex;
  gap: 8px;
  height: 100%;
  flex-direction: column;
  position: relative;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  color: white;
}
.prices-table-swiper .table-item h5, .prices-table .table-item h5 {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
}
.prices-table-swiper .table-item h4, .prices-table .table-item h4 {
  font-family: "Urbanist", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
}
.prices-table-swiper .table-item a, .prices-table .table-item a {
  position: relative;
  z-index: 0;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2509803922);
  color: white;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  padding: 11px 24px;
  border-radius: 999px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.prices-table-swiper .table-item a::before, .prices-table .table-item a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, #E91CFF 0%, #F386FF 80%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
}
.prices-table-swiper .table-item a:hover::before, .prices-table .table-item a:hover::before {
  opacity: 1;
}
.prices-table-swiper .table-item .table-item__price, .prices-table .table-item .table-item__price {
  font-family: "Urbanist", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
}
.prices-table-swiper .table-item .table-item__price .price-number, .prices-table .table-item .table-item__price .price-number {
  font-family: "Urbanist", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
}
.prices-table-swiper .table-item > a, .prices-table .table-item > a {
  margin-top: auto;
}
.prices-table-swiper .table-item.recommend-item::before, .prices-table .table-item.recommend-item::before {
  content: "Популярний";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2509803922);
  backdrop-filter: blur(12px);
  padding: 6px 16px;
  border-radius: 999px;
  background: #242435;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  white-space: nowrap;
  z-index: 3;
}
.prices-table-swiper .table-item.recommend-item a::before, .prices-table .table-item.recommend-item a::before {
  opacity: 1;
}
.prices-table-swiper .table-item.recommend-item a, .prices-table .table-item.recommend-item a {
  border-color: transparent;
}
.prices-table-swiper .table-item__service-list, .prices-table .table-item__service-list {
  padding-top: 16px;
  padding-bottom: 24px;
}
.prices-table-swiper .table-item__service-list ul, .prices-table .table-item__service-list ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.prices-table-swiper .table-item__service-list li, .prices-table .table-item__service-list li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Urbanist", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
}
.prices-table-swiper .table-item__service-list li::before, .prices-table .table-item__service-list li::before {
  content: "";
  width: 13px;
  height: 9px;
  flex: 0 0 13px;
  background-repeat: no-repeat;
  background-size: 13px 9px;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2714%27%20height%3D%2710%27%20viewBox%3D%270%200%2014%2010%27%20fill%3D%27none%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M13.5%200.5L4.5%209.5L0.5%204.5%27%20stroke%3D%27white%27%20stroke-opacity%3D%270.3%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27/%3E%3C/svg%3E");
}

.prices-table {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.additional_services-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  padding: 36px 0 104px;
  color: white;
}
.additional_services-side p {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0;
}
.additional_services-side .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 768px;
}
.additional_services-side .services-grid .services-grid_item {
  padding: 16px;
  border-radius: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1019607843);
  color: white;
  align-items: center;
  display: flex;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.05);
}
.additional_services-side .services-grid .services-grid_item .right-side {
  display: flex;
  gap: 6px;
  align-items: center;
  font-family: "Urbanist", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
}
.additional_services-side .services-grid .services-grid_item .right-side .soon-sign {
  font-family: "Urbanist", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  background-color: rgba(13, 162, 231, 0.1019607843);
  padding: 2px 8px;
  border-radius: 999px;
}
.additional_services-side a {
  margin-top: 24px;
}

.eight-screen {
  background-color: #060A12;
  padding-bottom: 162px;
  padding-top: 30px;
}
.eight-screen .partner-slider {
  padding: 60px 32px 56px;
  border-radius: 48px;
  background-image: url(../img/partner-slider-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
.eight-screen .partner-slider .title {
  text-align: center;
  color: white;
}
.eight-screen .partner-slider .title h3 {
  padding: 8px 0 48px;
}

.ninth-screen {
  background-color: #060A12;
  padding-bottom: 162px;
  padding-top: 30px;
  background-image: url(../img/bg-9.webp);
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  text-align: center;
}
.ninth-screen h1 {
  padding: 16px 0 48px;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 768px;
  max-width: 100%;
  margin: 0 auto;
  text-align: left;
  box-sizing: border-box;
}

/* Весь таб */
.faq-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  overflow: hidden;
}

/* Заголовок */
.faq-title {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  text-align: left;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.faq-arrow {
  width: 16px;
  min-width: 16px;
  height: 16px;
  flex-shrink: 0;
  position: relative;
}

.faq-arrow::before {
  content: "";
  width: 6px;
  height: 10px;
  background: url("data:image/svg+xml,%3Csvg width='6' height='10' viewBox='0 0 6 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.75 8.75L4.75 4.75L0.75 0.75' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
  display: block;
  transition: transform 0.3s ease;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 24px;
}

.faq-content p {
  padding-bottom: 20px;
  font-family: "Urbanist", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  color: #94A3B8;
}

.faq-item.active .faq-content {
  max-height: 200px;
}

.faq-item.active .faq-arrow::before {
  transform: rotate(90deg);
}

/* по умолчанию: desktop показывает grid, swiper скрыт */
.prices-table-swiper {
  display: none !important;
}

/* tablet+mobile: скрываем grid, показываем swiper */
@media (max-width: 768px) {
  .prices-table {
    display: none !important;
  }
  .prices-table-swiper {
    display: block !important;
  }
  /* чтобы слайды не ломали высоту */
  .prices-table-swiper .swiper-slide {
    height: auto;
  }
  /* пагинация */
  .prices-table-swiper .swiper-pagination {
    position: relative;
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 12px;
  }
  .prices-table-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
    transition: 0.25s ease;
  }
  .prices-table-swiper .swiper-pagination-bullet-active {
    background: #fff;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.5019607843);
  }
}
@media (max-width: 1400px) {
  .fourth-screen-slider .slide-card {
    grid-template-columns: 1fr 2fr;
    gap: 12px;
  }
  .fourth-screen-slider .slide-card .left-side {
    padding: 10px;
  }
  .fourth-screen-slider .slide-card .right-side img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 1200px) {
  .mobile-layout {
    gap: 20px;
    margin-bottom: 12px;
  }
  .tiles-left, .tiles-right {
    gap: 12px;
  }
  .tile {
    gap: 12px;
    padding: 20px;
  }
  .sixth-screen .container {
    gap: 20px;
  }
  .sixth-screen .container .right-side img {
    width: 100%;
  }
  .laptop {
    width: 90%;
  }
  .faq {
    width: 100%;
  }
  .additional_services-side .services-grid {
    width: 100%;
  }
}
@media (max-width: 996px) {
  .main-screen {
    height: inherit;
  }
  .main-screen__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .main-screen__content .right-side img {
    position: inherit;
    top: 0;
    left: 0;
  }
  .second-screen {
    height: inherit;
  }
  .fourth-screen-slider .slide-card {
    grid-template-columns: 1fr;
  }
  .prices-table {
    grid-template-columns: 1fr 1fr;
  }
  .fifth-screen .title-side {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .main-screen__content {
    padding-top: 121px;
  }
  .main-screen__content .left-side .text-side h1 {
    font-size: 40px;
    line-height: 1.2;
  }
  .main-screen__content .left-side .text-side h2 {
    font-size: 20px;
    line-height: 28px;
  }
  .main-screen__content .left-side .text-side h3 {
    width: 100%;
    font-size: 14px;
    line-height: 26px;
  }
  .main-screen__content .right-side img {
    width: 100%;
    max-width: 471px;
  }
  .second-screen {
    padding: 77px 0 48px;
  }
  .second-screen .second-screen__content {
    grid-template-columns: 1fr;
  }
  h1 {
    font-size: 24px;
    line-height: 32px;
  }
  h1 * {
    font-size: 24px;
    line-height: 32px;
  }
  h3 {
    font-size: 12px;
    line-height: 20px;
  }
  a.btn, button {
    padding: 12px 20px;
    font-size: 14px;
    line-height: 20px;
  }
  .second-screen .second-screen__content {
    gap: 20px;
  }
  .second-screen .second-screen__content .second-screen__content-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(24px);
    padding: 24px;
    gap: 4px;
  }
  .second-screen .second-screen__content .second-screen__content-item span {
    max-width: 202px;
  }
  .second-screen .second-screen__content .second-screen__content-item span {
    font-size: 12px;
    line-height: 20px;
  }
  .second-screen .second-screen__content .second-screen__content-item .icon {
    width: 56px;
    height: 56px;
  }
  .second-screen .second-screen__content .second-screen__content-item h2 {
    font-size: 16px;
    line-height: 28px;
  }
  .third-screen {
    padding: 48px 0;
  }
  .third-screen .third-screen__content {
    padding-top: 32px;
    gap: 24px;
    grid-template-columns: 1fr 1fr;
  }
  .third-screen .third-screen__content .third-screen__content-item .counter-number {
    font-size: 32px;
    line-height: 48px;
  }
  .third-screen .third-screen__content .third-screen__content-item span {
    font-size: 12px;
    line-height: 24px;
  }
  .fourth-screen {
    padding: 78px 0 48px;
  }
  .fourth-screen-slider .slide-card {
    padding: 10px;
  }
  .fourth-screen-slider .slide-card .left-side .slider-body {
    width: 100%;
  }
  .fourth-screen-slider .slide-card .left-side .slider-footer {
    width: 100%;
  }
  .fifth-screen .running-text {
    padding: 64px 0;
  }
  .fifth-screen .running-text__item {
    font-size: 24px;
    line-height: 64px;
  }
  .swiper-wrapper {
    margin-bottom: 32px;
  }
  .sixth-screen {
    padding: 48px 0 68px;
  }
  .sixth-screen .container {
    flex-direction: column;
    text-align: center;
  }
  .seventh-section {
    padding: 48px 0;
    margin-top: -48px;
  }
  .prices-table-swiper .table-item.recommend-item::before, .prices-table .table-item.recommend-item::before {
    display: none;
  }
  .additional_services-side .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .additional_services-side {
    padding: 32px 0 0;
  }
  .partner-slider .partner-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }
  .partner-slider .slider {
    margin-top: 0;
  }
  .partner-slider .partner-item {
    padding: 8px;
  }
  .partner-slider .partner-item img {
    max-width: 80px;
    max-height: 50px;
  }
  .eight-screen .partner-slider .title h3 {
    padding: 8px 0 24px;
  }
  .eight-screen {
    padding-bottom: 48px;
  }
  .eight-screen .partner-slider {
    padding: 24px 16px;
    border-radius: 24px;
  }
  .faq-title {
    font-size: 12px;
    line-height: 20px;
  }
  footer .top-footer {
    grid-template-columns: 1fr;
  }
  .third-screen .third-screen__title-side {
    width: 100%;
  }
  .ninth-screen {
    padding-bottom: 48px;
  }
  footer .top-footer .left-side p {
    font-size: 12px;
    line-height: 20px;
  }
  footer .top-footer {
    gap: 32px;
  }
  .main-screen__content {
    display: inherit;
  }
  .main-screen__content .left-side {
    padding-bottom: 40px;
  }
  footer .bottom-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  footer .bottom-footer .footer-legal-nav .legal-menu {
    flex-wrap: wrap;
    gap: 12px 16px;
  }
  .tab-pill {
    padding: 14px 22px;
    font-size: 12px;
  }
  .laptop-base {
    width: 100%;
  }
  .laptop-lid {
    width: 90%;
    padding: 10px;
  }
  .iphone {
    width: 318px;
    height: 589px;
  }
  .modal__fields, .modules-grid {
    grid-template-columns: 1fr;
  }
  .modal__dialog {
    width: 90%;
    margin: 10px auto;
    padding: 12px;
    max-height: 90vh;
    overflow-y: auto;
  }
  .modal__subtitle {
    margin: 0 auto;
  }
  .modal__title {
    font-size: 20px;
    line-height: 28px;
  }
  .module-card__box {
    min-height: inherit;
    padding: 10px;
  }
  .modal__modules {
    margin-top: 10px;
  }
  .fourth-screen .powered-table {
    display: flex;
    width: fit-content;
    margin: 0 auto;
  }
  .main-screen__content .right-side .mobile-img {
    display: block;
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
  }
  .main-screen__content .right-side .desktop-img {
    display: none;
  }
}
@media (max-width: 600px) {
  .second-screen .second-screen__title-side {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  h4 {
    font-size: 12px;
  }
  .additional_services-side .services-grid .services-grid_item {
    position: relative;
    gap: 10px;
  }
  .additional_services-side .services-grid .services-grid_item .right-side .soon-sign {
    position: absolute;
    top: 0;
    right: 1.5px;
    background-color: #0F212F;
    transform: translateY(-50%);
  }
  .additional_services-side .services-grid {
    gap: 8px;
  }
  .third-screen .third-screen__content {
    gap: 16px;
  }
  .main-screen {
    background-image: url(../img/mbg-1.webp);
  }
  .second-screen {
    background-image: url(../img/mbg-2.png);
  }
  .fourth-screen {
    background-image: url(../img/mbg-4.webp);
  }
  .sixth-screen {
    background-image: url(../img/mbg-5.png);
  }
  .seventh-section {
    background-image: url(../img/mbg-7.png);
  }
  footer {
    background-image: url(../img/mfooter.png);
  }
  .fifth-screen h1 {
    padding: 8px 0;
  }
  .tile {
    padding: 32px;
    gap: 24px;
  }
}

@media (max-width: 400px) {
  .partner-slider .partner-grid {
    gap: 0;
  }
  .partner-slider .partner-item {
    padding: 4px;
  }
  .partner-slider .partner-item img {
    max-width: 70px;
    max-height: 45px;
  }
  .eight-screen .partner-slider {
    padding: 20px 8px;
  }
}

/* ==========================================================
   ANIMATIONS
========================================================== */

/* Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(80px) rotate(2deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  80% {
    transform: scale(1.02);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes wiggle {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-3deg);
  }
  75% {
    transform: rotate(3deg);
  }
}

/* Base animation states - hidden before animation */
.anim-fade-up,
.anim-fade-down,
.anim-fade-left,
.anim-fade-right,
.anim-fade-in,
.anim-scale-in,
.anim-slide-up,
.anim-bounce-in,
.anim-float-up,
.anim-pop-in {
  opacity: 0;
}

/* Stagger delay utilities */
.anim-delay-1 { --anim-delay: 0.1s; }
.anim-delay-2 { --anim-delay: 0.2s; }
.anim-delay-3 { --anim-delay: 0.3s; }
.anim-delay-4 { --anim-delay: 0.4s; }
.anim-delay-5 { --anim-delay: 0.5s; }
.anim-delay-6 { --anim-delay: 0.6s; }
.anim-delay-7 { --anim-delay: 0.7s; }

/* Animated state - triggered by JS */
.anim-fade-up.is-animated {
  animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--anim-delay, 0s);
}

.anim-fade-down.is-animated {
  animation: fadeInDown 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--anim-delay, 0s);
}

.anim-fade-left.is-animated {
  animation: fadeInLeft 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--anim-delay, 0s);
}

.anim-fade-right.is-animated {
  animation: fadeInRight 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--anim-delay, 0s);
}

.anim-fade-in.is-animated {
  animation: fadeIn 0.6s ease-out forwards;
  animation-delay: var(--anim-delay, 0s);
}

.anim-scale-in.is-animated {
  animation: scaleIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--anim-delay, 0s);
}

.anim-slide-up.is-animated {
  animation: slideInUp 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--anim-delay, 0s);
}

.anim-bounce-in.is-animated {
  animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  animation-delay: var(--anim-delay, 0s);
}

.anim-float-up.is-animated {
  animation: floatUp 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--anim-delay, 0s);
}

.anim-pop-in.is-animated {
  animation: popIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--anim-delay, 0s);
}

/* Section-specific animations */

/* Hero Section */
.main-screen .powered-table {
  opacity: 0;
}
.main-screen.is-animated .powered-table {
  animation: fadeInDown 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.main-screen .text-side h1 {
  opacity: 0;
}
.main-screen.is-animated .text-side h1 {
  animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

.main-screen .text-side h2 {
  opacity: 0;
}
.main-screen.is-animated .text-side h2 {
  animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}

.main-screen .text-side h3 {
  opacity: 0;
}
.main-screen.is-animated .text-side h3 {
  animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

.main-screen .left-side > .btn {
  opacity: 0;
}
.main-screen.is-animated .left-side > .btn {
  animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.65s forwards;
}

.main-screen .right-side img {
  opacity: 0;
}
.main-screen.is-animated .right-side img {
  animation: floatUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}

/* Second Screen (For Who) */
.second-screen .second-screen__title-side {
  opacity: 0;
}
.second-screen.is-animated .second-screen__title-side {
  animation: fadeInLeft 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.second-screen .second-screen__content-item {
  opacity: 0;
}
.second-screen.is-animated .second-screen__content-item:nth-child(1) {
  animation: fadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}
.second-screen.is-animated .second-screen__content-item:nth-child(2) {
  animation: fadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}
.second-screen.is-animated .second-screen__content-item:nth-child(3) {
  animation: fadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

/* Third Screen (Stats) */
.third-screen .third-screen__title-side {
  opacity: 0;
}
.third-screen.is-animated .third-screen__title-side {
  animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.third-screen .third-screen__content-item {
  opacity: 0;
}
.third-screen.is-animated .third-screen__content-item:nth-child(1) {
  animation: scaleIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}
.third-screen.is-animated .third-screen__content-item:nth-child(2) {
  animation: scaleIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}
.third-screen.is-animated .third-screen__content-item:nth-child(3) {
  animation: scaleIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}
.third-screen.is-animated .third-screen__content-item:nth-child(4) {
  animation: scaleIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

/* Fourth Screen (Problems) */
.fourth-screen > .container > .powered-table,
.fourth-screen > .container > h1,
.fourth-screen > .container > h3 {
  opacity: 0;
}
.fourth-screen.is-animated > .container > .powered-table {
  animation: fadeInDown 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}
.fourth-screen.is-animated > .container > h1 {
  animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}
.fourth-screen.is-animated > .container > h3 {
  animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}

.fourth-screen .fourth-screen-slider {
  opacity: 0;
}
.fourth-screen.is-animated .fourth-screen-slider {
  animation: slideInUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}

/* Fifth Screen (Features) */
.fifth-screen .title-side {
  opacity: 0;
}
.fifth-screen.is-animated .title-side {
  animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.fifth-screen .tabs-wrapper {
  opacity: 0;
}
.fifth-screen.is-animated .tabs-wrapper {
  animation: fadeIn 0.6s ease-out 0.3s forwards;
}

.fifth-screen .iphone {
  opacity: 0;
}
.fifth-screen.is-animated .iphone {
  animation: floatUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}

.fifth-screen .laptop {
  opacity: 0;
}
.fifth-screen.is-animated .laptop {
  animation: floatUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}

.fifth-screen .tiles-left .tile,
.fifth-screen .tiles-right .tile {
  opacity: 0;
}
.fifth-screen.is-animated .tiles-left .tile:nth-child(1) {
  animation: fadeInLeft 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}
.fifth-screen.is-animated .tiles-left .tile:nth-child(2) {
  animation: fadeInLeft 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}
.fifth-screen.is-animated .tiles-left .tile:nth-child(3) {
  animation: fadeInLeft 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}
.fifth-screen.is-animated .tiles-right .tile:nth-child(1) {
  animation: fadeInRight 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}
.fifth-screen.is-animated .tiles-right .tile:nth-child(2) {
  animation: fadeInRight 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}
.fifth-screen.is-animated .tiles-right .tile:nth-child(3) {
  animation: fadeInRight 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

.fifth-screen .tiles-bottom .tile {
  opacity: 0;
}
.fifth-screen.is-animated .tiles-bottom .tile {
  animation: fadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}

.fifth-screen .tiles-web .tile {
  opacity: 0;
}
.fifth-screen.is-animated .tiles-web .tile:nth-child(1) {
  animation: fadeInUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}
.fifth-screen.is-animated .tiles-web .tile:nth-child(2) {
  animation: fadeInUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}
.fifth-screen.is-animated .tiles-web .tile:nth-child(3) {
  animation: fadeInUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}
.fifth-screen.is-animated .tiles-web .tile:nth-child(4) {
  animation: fadeInUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}
.fifth-screen.is-animated .tiles-web .tile:nth-child(5) {
  animation: fadeInUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards;
}
.fifth-screen.is-animated .tiles-web .tile:nth-child(6) {
  animation: fadeInUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.8s forwards;
}
.fifth-screen.is-animated .tiles-web .tile:nth-child(7) {
  animation: fadeInUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.9s forwards;
}

/* Sixth Screen (Integration) */
.sixth-screen .left-side {
  opacity: 0;
}
.sixth-screen.is-animated .left-side {
  animation: fadeInLeft 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.sixth-screen .right-side {
  opacity: 0;
}
.sixth-screen.is-animated .right-side {
  animation: fadeInRight 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

/* Seventh Section (Pricing) */
.seventh-section .title-side {
  opacity: 0;
}
.seventh-section.is-animated .title-side {
  animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.seventh-section .prices-table .table-item {
  opacity: 0;
}
.seventh-section.is-animated .prices-table .table-item:nth-child(1) {
  animation: fadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}
.seventh-section.is-animated .prices-table .table-item:nth-child(2) {
  animation: fadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}
.seventh-section.is-animated .prices-table .table-item:nth-child(3) {
  animation: fadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}
.seventh-section.is-animated .prices-table .table-item:nth-child(4) {
  animation: fadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

/* Popular item special animation */
.seventh-section.is-animated .prices-table .table-item.recommend-item {
  animation: popIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

/* Eighth Screen (Partners) */
.eight-screen .title {
  opacity: 0;
}
.eight-screen.is-animated .title {
  animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.eight-screen .slider {
  opacity: 0;
}
.eight-screen.is-animated .slider {
  animation: fadeIn 0.8s ease-out 0.3s forwards;
}

.eight-screen .partner-item {
  opacity: 0;
}
.eight-screen.is-animated .partner-item {
  animation: scaleIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.eight-screen.is-animated .partner-item:nth-child(1) { animation-delay: 0.1s; }
.eight-screen.is-animated .partner-item:nth-child(2) { animation-delay: 0.15s; }
.eight-screen.is-animated .partner-item:nth-child(3) { animation-delay: 0.2s; }
.eight-screen.is-animated .partner-item:nth-child(4) { animation-delay: 0.25s; }
.eight-screen.is-animated .partner-item:nth-child(5) { animation-delay: 0.3s; }
.eight-screen.is-animated .partner-item:nth-child(6) { animation-delay: 0.35s; }
.eight-screen.is-animated .partner-item:nth-child(7) { animation-delay: 0.4s; }
.eight-screen.is-animated .partner-item:nth-child(8) { animation-delay: 0.45s; }
.eight-screen.is-animated .partner-item:nth-child(9) { animation-delay: 0.5s; }
.eight-screen.is-animated .partner-item:nth-child(10) { animation-delay: 0.55s; }
.eight-screen.is-animated .partner-item:nth-child(11) { animation-delay: 0.6s; }
.eight-screen.is-animated .partner-item:nth-child(12) { animation-delay: 0.65s; }

/* Ninth Screen (FAQ) */
.ninth-screen > .container > .powered-table,
.ninth-screen > .container > h1 {
  opacity: 0;
}
.ninth-screen.is-animated > .container > .powered-table {
  animation: fadeInDown 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}
.ninth-screen.is-animated > .container > h1 {
  animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

.ninth-screen .faq-item {
  opacity: 0;
}
.ninth-screen.is-animated .faq-item:nth-child(1) {
  animation: fadeInUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.25s forwards;
}
.ninth-screen.is-animated .faq-item:nth-child(2) {
  animation: fadeInUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}
.ninth-screen.is-animated .faq-item:nth-child(3) {
  animation: fadeInUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}
.ninth-screen.is-animated .faq-item:nth-child(4) {
  animation: fadeInUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}
.ninth-screen.is-animated .faq-item:nth-child(5) {
  animation: fadeInUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.45s forwards;
}
.ninth-screen.is-animated .faq-item:nth-child(6) {
  animation: fadeInUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}
.ninth-screen.is-animated .faq-item:nth-child(7) {
  animation: fadeInUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
}

/* Footer */
footer .top-footer {
  opacity: 0;
}
footer.is-animated .top-footer {
  animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

footer .bottom-footer {
  opacity: 0;
}
footer.is-animated .bottom-footer {
  animation: fadeIn 0.6s ease-out 0.4s forwards;
}

/* Header animations */
.site-header {
  opacity: 0;
  animation: fadeInDown 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

/* Button hover animations */
.btn {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(235, 49, 255, 0.3);
}
.btn:active {
  transform: translateY(0);
}

/* Card hover animations */
.second-screen__content-item,
.third-screen__content-item,
.table-item,
.faq-item {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.second-screen__content-item:hover,
.third-screen__content-item:hover {
  transform: translateY(-5px);
}

.table-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Tile hover effects */
.tile {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.3s ease,
              box-shadow 0.3s ease;
}
.tile:hover {
  transform: translateY(-3px);
}

/* Partner logo hover */
.partner-item {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.partner-item:hover {
  transform: scale(1.05);
}

/* FAQ item hover */
.faq-item:hover {
  transform: translateX(5px);
}

/* Icon animations */
.second-screen__content-item .icon,
.third-screen__content-item .icon {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.second-screen__content-item:hover .icon,
.third-screen__content-item:hover .icon {
  transform: scale(1.1) rotate(5deg);
}

/* Running text shimmer effect */
.running-text__item {
  position: relative;
}

/* 404 Page animation */
.error-404-section .error-404-code span {
  display: inline-block;
  opacity: 0;
}
.error-404-section.is-animated .error-404-code span:nth-child(1) {
  animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.1s forwards;
}
.error-404-section.is-animated .error-404-code span:nth-child(2) {
  animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.25s forwards;
}
.error-404-section.is-animated .error-404-code span:nth-child(3) {
  animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.4s forwards;
}

.error-404-section .error-404-title {
  opacity: 0;
}
.error-404-section.is-animated .error-404-title {
  animation: fadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

.error-404-section .error-404-description {
  opacity: 0;
}
.error-404-section.is-animated .error-404-description {
  animation: fadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}

.error-404-section .btn {
  opacity: 0;
}
.error-404-section.is-animated .btn {
  animation: fadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .anim-fade-up,
  .anim-fade-down,
  .anim-fade-left,
  .anim-fade-right,
  .anim-fade-in,
  .anim-scale-in,
  .anim-slide-up,
  .anim-bounce-in,
  .anim-float-up,
  .anim-pop-in {
    opacity: 1;
  }
}
