
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 14px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, sans-serif;
  background: #000;
  color: #FBFBFB;
  font-size: 1rem;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
}

a {
  text-decoration: none;
}

.top-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 4rem;
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.5);
  background: #000;
  z-index: 1000;
  transition: transform 0.3s ease-in-out;
}

.top-menu.hidden {
  transform: translateY(-100%);
}

.top-menu-left,
.top-menu-right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.top-menu a {
  color: #FFF;
  text-decoration: none;
  font-size: 1rem;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.top-menu a:hover {
  border-bottom-color: #FFF;
}

.language-selector {
  position: relative;
  display: inline-block;
}

.lang-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #FFF;
  font-size: 1rem;
  padding: 0.5rem 0.75rem;
  border-radius: 1.5rem;
  transition: background 0.2s ease;
}

.lang-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.lang-toggle img {
  height: 2rem;
  width: auto;
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin: 0.5rem 0 0 0;
  padding: 0.75rem 0;
  background: #111;
  border-radius: 0.75rem;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.3);
  min-width: 120px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.language-selector:hover .lang-dropdown,
.lang-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown li a {
  display: block;
  padding: 0.5rem 1.25rem;
  color: #FFF;
  text-decoration: none;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.lang-dropdown li a:hover,
.lang-dropdown li a.active {
  background: #333;
}

.logo-menu {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 4rem;
  background: #000;
  z-index: 999;
  transition: all 0.3s ease-in-out;
}

.logo-menu-left {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.logo img {
  height: auto;
  max-height: 3.25rem;
  width: auto;
}

.menu {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.menu a {
  color: #FBFBFB;
  text-decoration: none;
  font-size: 1.25rem;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.menu a:hover {
  border-bottom-color: #FFF;
}

.buttons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pdf {
  color: #FFF;
  font-size: 1.125rem;
}

.pdf-and-btn {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.buttons button {
  padding: 1.1rem 1.8rem;
  border-radius: 2rem;
  background: #FBFBFB;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 500;
  color: #2A2A2A;
  transition: all 0.3s ease-in-out;
}

.buttons button:hover {
  background: #2A2A2A;
  border-color: #fff;
  color: #fff;
}

.logo-menu.sticky {
  top: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 1.5rem 3rem;
}

/* .hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 9rem 5rem 7rem 5rem;
  min-height: 85vh;
  background: linear-gradient(0deg,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5)),
    url('./image/nasa.jpg') center / cover no-repeat;
  color: #FBFBFB;
  margin-top: 90px;
} */


/* .hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 9rem 5rem 7rem 5rem;
  min-height: 85vh;
  color: #FBFBFB;
  margin-top: 90px;
  overflow: hidden;
} */

/* Видео как фон */
/* .background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.5; 
} */
/* Секция hero с меньшей высотой */
/* .hero {
  background-color: #000;
  color: #fff;
  min-height: 60vh;       
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
} */

/* Контент внутри hero */
/* .hero-content {
  max-width: 60rem;
  z-index: 1;
} */

.hero-content h1 {
  font-size: 3rem;
  font-weight: 600;
  margin: 0 0 2rem 0;
  line-height: 1.3;
}

.hero-content p {
  font-size: 1.3rem;
  line-height: 1.75rem;
  margin: 0 0 3rem 0;
}

.hero {
  background-color: #000;
  color: #fff;
  min-height: 40vh; /* ⬇️ Уменьшили высоту, но оставили минимальную */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15rem 60px 0; /* ⬇️ Уменьшили верхний паддинг, убрали нижний */
  text-align: center;
  position: relative;
  overflow: visible;
  z-index: 1;
}

.hero-content {
  max-width: 60rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}


/* ===== HERO VIDEO CONTAINER ===== */
.hero-video-container {
  position: relative;
  width: 100%;
  height: 55rem; /* = 600px */
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: -2rem;
  margin-bottom: -15rem;
  background: #000;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hero-video-container:hover .hero-video {
  transform: scale(1.02);
}

/* ===== FULLSCREEN MODAL VIDEO ===== */
.modal-fullscreen-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67);
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.modal-fullscreen-video.active {
  opacity: 1;
  visibility: visible;
}

.fullscreen-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  border: none;
  outline: none;
  max-width: 100%;
  max-height: 100%;
}

.modal-close-fullscreen {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  font-size: 2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
}

.modal-close-fullscreen:hover {
  background: rgba(255,255,255,0.3);
}







.btn-primary {
  padding: 1rem 3rem;
  border-radius: 3.5rem;
  background: #FBFBFB;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 500;
  color: #2A2A2A;
  transition: all 0.3s ease-in-out;
}

.btn-primary:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
  background: #2A2A2A;
  border-color: #fff;
  color: #fff;
}

.btn-outline {
  padding: 1rem 3rem;
  border: 0.1rem solid #FBFBFB;
  background: transparent;
  color: #FBFBFB;
  font-size: 1.4rem;
  font-weight: 600;
  border-radius: 3.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #FBFBFB;
  color: #2A2A2A;
}

@media (max-width: 1700px) {

  .top-menu,
  .logo-menu {
    padding: 1.2rem 3rem;
  }

  .hero {
    padding: 15rem 4rem 6rem 4rem;
  }

  .hero-content h1 {
    font-size: 2.75rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }

  .menu a {
    font-size: 1.15rem;
  }

  .buttons button,
  .btn-primary,
  .btn-outline {
    font-size: 1.3rem;
    padding: 0.9rem 2.7rem;
  }

  .hero-video-container{
    height: 45rem;
  }

  

}

@media (max-width: 1024px) and (min-width: 769px) {
  .hero {
    padding: 15rem 3rem;
    min-height: 70vh;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }

  .top-menu-left a,
  .top-menu-right a {
    font-size: 0.95rem;
  }

  .menu a {
    font-size: 1.1rem;
    gap: 2rem;
  }

  .logo-menu-left {
    gap: 2rem;
  }

  .buttons button,
  .btn-primary {
    font-size: 1.2rem;
    padding: 0.8rem 2.5rem;
  }

  .lang-toggle img {
    height: 1.6rem;
  }

  .mobile-header,
  .mobile-menu-overlay {
    display: none !important;
  }

  .hero-video-container {
    height: 35rem;
    margin-bottom: -28rem;
  }

  .ux-solutions-section{
    padding: 250px;
  }
}

@media (max-width: 768px) {
  .top-menu,
  .logo-menu {
    display: none !important;
  }

  .mobile-header {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.5rem;
    background: #000;
    z-index: 1001;
    justify-content: center;
    align-items: center;
    height: 4.5rem;
  }

  .mobile-header .hamburger {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1002;
  }

  .mobile-header .mobile-lang {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
  }
  .mobile-header .lang-toggle {
  background: none;
  border: none;
  padding: 0; /* важно! */
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

  .mobile-header .lang-toggle img {
    height: 3rem;
    display: block;
  }

  .mobile-header .lang-toggle span {
    display: none;
  }

  .hero {
    padding: 5rem 2rem;
    min-height: 60vh;
    margin-top: 4.5rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu {
    width: 90%;
    max-width: 320px;
    background: #111;
    border-radius: 1.5rem;
    padding: 2rem;
    transform: translateY(50px);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
    margin: 0 auto;
    text-align: center;
  }

  .mobile-menu-overlay.active .mobile-menu {
    transform: translateY(0);
    opacity: 1;
  }

  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
  }

  .mobile-menu-header .logo img {
    max-height: 2.5rem;
  }

  .close-menu {
    background: none;
    border: none;
    font-size: 2rem;
    color: #FFF;
    cursor: pointer;
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
  }

  .mobile-nav a {
    color: #FFF;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.2s ease;
  }

  .mobile-nav a:hover {
    color: #ccc;
  }

  .mobile-menu-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .mobile-menu-footer .pdf {
    text-align: center;
    font-size: 1.1rem;
    padding: 0.5rem 0;
  }

  .mobile-menu-footer .btn-primary {
    padding: 1rem;
    font-size: 1.2rem;
    text-align: center;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
  }

  .hamburger span {
    display: block;
    height: 0.2rem;
    width: 100%;
    background: #FFF;
    border-radius: 0.2rem;
    transition: all 0.3s ease;
  }

  .mobile-menu-overlay.active+.mobile-header .hamburger span:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
  }

  .mobile-menu-overlay.active+.mobile-header .hamburger span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-overlay.active+.mobile-header .hamburger span:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
  }

  .mobile-header .lang-dropdown {
    top: 3rem;
    right: 0;
    left: auto;
  }

  html {
    font-size: 14px;
  }
}

@media (min-width: 769px) {

  .mobile-header,
  .mobile-menu-overlay {
    display: none !important;
  }
}

.footer {
  display: flex;
  padding: 5rem 5%;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #000;
  flex-wrap: wrap;
  gap: 4rem;
}

.footer-left {
  width: auto;
  max-width: 20rem;
}

.footer-logo {
  height: auto;
  max-height: 4rem;
}

.footer-description {
  color: #FBFBFB;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6rem;
  margin: 1.5rem 0 0 0;
}

.footer-right {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  flex-wrap: wrap;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  min-width: 12rem;
}

.footer-column-title {
  color: #FBFBFB;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.5rem;
}

.footer-column-items {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-column-items span {
  color: #FBFBFB;
  font-size: 1.1rem;
  margin: 0;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.footer-column-items span:hover {
  opacity: 0.8;
}

@media (max-width: 1024px) {
  .footer {
    padding: 4rem 3rem;
    gap: 3rem;
  }

  .footer-right {
    gap: 3rem;
  }

  .footer-left {
    max-width: 18rem;
  }

  .footer-description {
    font-size: 1.15rem;
    line-height: 1.5rem;
  }

  .footer-column-title {
    font-size: 1.2rem;
  }

  .footer-column-items span {
    font-size: 1.05rem;
  }

  .footer-logo {
    max-height: 3.75rem;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 2rem;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }

  .footer-left,
  .footer-right {
    width: 100%;
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

  .footer-description {
    font-size: 1.1rem;
    line-height: 1.5rem;
    margin: 1rem 0 0 0;
  }

  .footer-right {
    flex-direction: column;
    gap: 2.5rem;
  }

  .footer-column {
    align-items: center;
    text-align: center;
    min-width: auto;
    width: 100%;
    max-width: 24rem;
  }

  .footer-column-title {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }

  .footer-column-items {
    align-items: center;
  }

  .footer-column-items span {
    font-size: 1rem;
    text-align: center;
  }

  .footer-logo {
    max-height: 3.5rem;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 2.5rem 1.5rem;
    gap: 2.5rem;
  }

  .footer-description {
    font-size: 1rem;
    line-height: 1.4rem;
  }

  .footer-column-title {
    font-size: 1.15rem;
  }

  .footer-column-items span {
    font-size: 0.95rem;
  }

  .footer-logo {
    max-height: 3rem;
  }
}

.booking-section {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 12.5rem 13.4375rem 12.5rem 3.75rem;
  gap: 4rem;
  position: relative;
  overflow: visible;
}

.booking-bg {
  position: absolute;
  left: -10rem;
  top: 10rem;
  width: 40rem;
  height: 40rem;
  border-radius: 50%;
  background: linear-gradient(336deg, #0F4BAA 8.76%, rgba(234, 101, 71, 0.96) 47.13%, rgba(255, 255, 255, 0.00) 80.65%);
  filter: blur(71.3499984741211px);
  z-index: -1;
  opacity: 0.5;
  pointer-events: none;
}

.booking-bg-2 {
  position: absolute;
  right: -21rem;
  top: -8rem;
  width: 40rem;
  height: 40rem;
  border-radius: 50%;
  background: linear-gradient(336deg, #0F4BAA 8.76%, rgba(234, 101, 71, 0.96) 47.13%, rgba(255, 255, 255, 0.00) 80.65%);
  filter: blur(71.3499984741211px);
  z-index: -1;
  opacity: 0.5;
  pointer-events: none;
}

.booking-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 35rem;
}

.booking-title {
  color: #FBFBFB;
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.1rem;
  margin: 0;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2.5rem;
  border-radius: 1.5rem;
  width: 100%;
  max-width: 45rem;
  margin-left: auto;
}

.booking-submit {
  height: 6.125rem;
  width: 100%;
  border-radius: 5rem;
  background: #FBFBFB;
  color: #2A2A2A;
  font-size: 1.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
}

.booking-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.3rem 0.8rem rgba(0, 0, 0, 0.2);
}

.booking-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  text-align: center;
}

.booking-contact p {
  color: #FBFBFB;
  font-size: 1.3rem;
  font-weight: 400;
  margin: 0;
}

.booking-contact-items {
  display: flex;
  align-items: center;
  gap: 3.5rem;
}

.booking-contact-items p {
  font-weight: 600;
  font-size: 1.1rem;
}

@media (max-width: 1024px) {
  .booking-section {
    padding: 5rem 2rem;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
  }

  .booking-left {
    align-items: center;
    text-align: center;
  }

  .booking-title {
    font-size: 3rem;
  }

  .booking-form {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .booking-section {
    padding: 4rem 1.5rem;
    gap: 3rem;
  }

  .booking-title {
    font-size: 4rem;
    line-height: 1.3;
  }

  .booking-submit {
    font-size: 1.15rem;
    height: 3.5rem;
  }

  .booking-contact p {
    font-size: 0.95rem;
  }

  .booking-contact-items p {
    font-size: 1rem;
  }

  .booking-contact-items {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .booking-title {
    font-size: 2rem;
  }

  .booking-form {
    padding: 1.5rem;
  }

  .booking-submit {
    font-size: 1.1rem;
    height: 3rem;
  }

  .booking-bg {
    position: absolute;
    width: 30rem;
    height: 30rem;
  }
}

@media (min-width: 1440px) {
  .booking-title {
    font-size: 4.25rem;
    letter-spacing: -0.12rem;
  }

  .booking-section {
    gap: 5rem;
  }
}

@media (min-width: 1920px) {
  .booking-title {
    font-size: 6rem;
    letter-spacing: -0.15rem;
  }

  .booking-section {
    padding: 12.5rem 10rem 12.5rem 5rem;
  }

  .booking-submit {
    font-size: 1.8rem;
    height: 8rem;
  }

  .booking-contact p {
    font-size: 1.5rem;
  }

  .booking-contact-items p {
    font-size: 1.3rem;
  }
}

.faq {
  background: #000;
  padding: 9.375rem 3.75rem 6.25rem;
  display: flex;
  flex-direction: column;
  gap: 6.25rem;
}

.faq-title {
  color: #fff;
  font-size: 6rem;
  font-weight: 600;
  line-height: 5.1875rem;
  letter-spacing: -0.3rem;
  margin: 0;
}

.faq-content {
  display: flex;
  gap: 2.5rem;
  /* 40px */
  align-items: flex-start;
}

.faq-image img {
  width: 26.6875rem;
  object-fit: cover;
  border-radius: 0.9375rem;
  box-shadow: 0 0.125rem 0.1875rem rgba(0, 0, 0, 0.1);
}

.faq-list {
  display: flex;
  flex-direction: column;
  flex: unset;
}

.accordion {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  border-bottom: 0.1875rem solid rgba(255, 255, 255, 0.2);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
}

.accordion-header svg {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.accordion-body {
  margin-top: 0.625rem;
  color: #CCC;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
}

@media (max-width: 768px){
   .hero-video-container {
    height: 24rem;
    margin-bottom: -15rem;
  }
}

@media (max-width: 1024px) {
  .faq {
    padding: 6rem 2rem;
    gap: 4rem;
  }

  .faq-title {
    font-size: 4rem;
    line-height: 1.2;
    letter-spacing: -0.2rem;
  }

  .faq-content {
    gap: 2rem;
    flex-direction: column;
    align-items: center;
  }

  .faq-image img {
    width: 100%;
    max-width: 24rem;
    /* 384px */
    height: auto;
    border-radius: 0.75rem;
  }

  .faq-list {
    width: 100%;
    max-width: 32rem;
  }

  .accordion-header {
    font-size: 1.15rem;
  }

  .accordion-body {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

@media (max-width: 768px) {
  .faq {
    padding: 4rem 1.5rem;
    gap: 3rem;
  }

  .faq-title {
    font-size: 4rem;
    line-height: 1.3;
    letter-spacing: -0.15rem;
    text-align: center;
    width: 100%;
  }

  .faq-content {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  .faq-image img {
    display: none;
  }

  .faq-list {
    width: 100%;
  }

  .accordion {
    padding: 1rem;
  }

  .accordion-header {
    font-size: 1.1rem;
    gap: 0.5rem;
  }

  .accordion-header svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  .accordion-body {
    font-size: 1rem;
    line-height: 1.5;
    margin-top: 0.75rem;
  }
}

@media (max-width: 480px) {
  .faq {
    padding: 3rem 1rem;
    gap: 2.5rem;
  }

  .faq-title {
    font-size: 2.5rem;
    letter-spacing: -0.1rem;
  }

  .accordion {
    padding: 0.75rem;
  }

  .accordion-header {
    font-size: 1.05rem;
  }

  .accordion-body {
    font-size: 0.95rem;
  }
}

.publications-section {
  background: #FFF;
  padding: 9.375rem 3.75rem 6.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6.25rem;
  align-self: stretch;
}

.publications-title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.publications-title {
  color: #000;
  font-size: 6rem;
  font-style: normal;
  font-weight: 600;
  line-height: 5.1875rem;
  letter-spacing: -0.3rem;
  margin: 0;
}

.publications-grid-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  align-self: stretch;
}

.publications-grid {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  align-self: stretch;
  width: 100%;
}

.publication-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  flex: 1 0 0;
  border-radius: 0.9375rem;
  background: #FFF;
}

.publication-card--ui {
  align-items: flex-start;
}

.publication-image {
  display: flex;
  height: 17.5rem;
  padding: 1.25rem;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.625rem;
  align-self: stretch;
  border-radius: 0.9375rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.15) 100%),
    var(--image-url) lightgray 50% / cover no-repeat;
}

.category-badge-wrapper {
  display: flex;
  padding: 0.625rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
}

.category-badge {
  display: flex;
  height: 2.625rem;
  padding: 0.75rem 1.25rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 1.875rem;
  background: rgba(255, 255, 255, 0.7);
}

.category-badge p {
  color: #000;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.publication-title {
  align-self: stretch;
  color: #2A2A2A;
  font-feature-settings: 'ss01' on, 'cv01' on, 'cv11' on;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0;
}

.more-publications {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(26, 26, 26, 0.96);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  cursor: pointer;
}

.more-publications svg {
  width: 1.0625rem;
  height: 0.9375rem;
  stroke: black;
  stroke-width: 2;
  stroke-linecap: round;
}

@media (max-width: 1024px) {
  .publications-section {
    padding: 6rem 2rem;
    gap: 4rem;
  }

  .publications-title {
    font-size: 4rem;
    line-height: 1.2;
    letter-spacing: -0.2rem;
  }

  .publications-grid {
    gap: 1.5rem;
  }

  .publication-card {
    gap: 1rem;
  }

  .publication-image {
    height: 15rem;
    padding: 1rem;
  }

  .category-badge {
    height: 2.5rem;
    padding: 0.5rem 1rem;
  }

  .category-badge p {
    font-size: 0.85rem;
  }

  .publication-title {
    font-size: 0.95rem;
  }

  .more-publications {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .publications-section {
    padding: 4rem 1.5rem;
    gap: 3rem;
  }

  .publications-title {
    font-size: 4rem;
    line-height: 1.3;
    letter-spacing: -0.15rem;
    text-align: center;
  }

  .publications-grid-wrapper {
    gap: 2rem;
  }
  .publications-grid {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .publication-card {
    width: 100%;
    max-width: 32rem;
    align-items: center;
    text-align: center;
  }

  .publication-card--ui {
    align-items: center;
    text-align: center;
  }

  .publication-image {
    height: 14rem;
    padding: 1rem;
    align-items: flex-end;
  }

  .category-badge-wrapper {
    align-items: flex-end;
    width: 100%;
  }

  .category-badge {
    height: 2.25rem;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .publication-title {
    font-size: 1.2rem;
    padding: 0 0.5rem;
  }

  .more-publications {
    font-size: 1.3rem;
    align-self: center;
    margin-top: 1rem;
  }
}

@media (max-width: 480px) {
  .publications-section {
    padding: 3rem 1rem;
    gap: 2.5rem;
  }

  .publications-title {
    font-size: 2.5rem;
    letter-spacing: -0.1rem;
  }

  .publication-image {
    height: 12rem;
  }

  .publication-card {
    max-width: 100%;
  }

  .category-badge {
    height: 2rem;
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
  }

  .publication-title {
    font-size: 0.95rem;
  }

  .more-publications {
    font-size: 0.95rem;
  }
}

.methodologies-section {
  display: flex;
  padding: 9.375rem 3.75rem 6.25rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 3.25rem;
  align-self: stretch;
  background: #FFF;
}

.methodologies-title {
  color: #000;
  font-size: 6rem;
  font-style: normal;
  font-weight: 600;
  line-height: 5.1875rem;
  letter-spacing: -0.3rem;
  margin: 0;
}

.methodologies-table-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
  align-self: stretch;
  border-radius: 0.9375rem;
  background: linear-gradient(180deg, #2F2E2E 0%, rgba(0, 0, 0, 0) 100%);
  padding: 0;
}

.methodologies-table {
  display: grid;
  height: 29.25rem;
  width: 100%;
  border-radius: 0.9375rem;
  grid-template-rows: repeat(6, 1fr);
  grid-template-columns: 21.125rem 1fr 1fr;
  overflow: hidden;
}

.methodology-cell {
  display: flex;
  padding: 1.25rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  flex: 1 0 0;
  align-self: stretch;
  border: 1px solid #CFCFCF;
  background: #F9F9F9;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #2A2A2A;
  text-align: center;
}

.methodology-header {
  background: #000;
  color: #FFF;
  font-size: 1.25rem;
  font-weight: 600;
  border: 1px solid #000;
}

.cell-top-left {
  border-radius: 0.9375rem 0 0 0;
}

.cell-top-right {
  border-radius: 0 0.9375rem 0 0;
}

.cell-bottom-left {
  border-radius: 0 0 0 0.9375rem;
}

.cell-bottom-right {
  border-radius: 0 0 0.9375rem 0;
}

.methodology-name {
  font-weight: 600;
  font-family: Inter, sans-serif;
}

@media (max-width: 1024px) {
  .methodologies-section {
    padding: 6rem 2rem;
    gap: 4rem;
  }

  .methodologies-title {
    font-size: 4rem;
    line-height: 1.2;
    letter-spacing: -0.2rem;
  }

  .methodologies-table {
    height: auto;
    grid-template-columns: 18rem 1fr 1fr;
  }

  .methodology-cell {
    padding: 1rem;
    font-size: 0.95rem;
  }

  .methodology-header {
    font-size: 1.1rem;
  }

  .methodology-name p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .methodologies-section {
    padding: 4rem 1.5rem;
    gap: 1rem;
    align-items: center;
  }

  .methodologies-title {
    font-size: 3rem;
    line-height: 1.3;
    letter-spacing: -0.15rem;
    text-align: center;
    width: 100%;
  }

  .methodologies-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 1rem 0;
    background: transparent;
    border-radius: 0;
  }

  .methodologies-table {
    display: grid;
    min-width: 650px;
    width: auto;
    height: auto;
    grid-template-rows: repeat(6, auto);
    grid-template-columns: 16rem 1fr 1fr;
    border-radius: 0.75rem;
    overflow: visible;
    background: #F9F9F9;
    border: 1px solid #CFCFCF;
    border-collapse: collapse;
  }

  .methodology-cell {
    padding: 1rem 0.75rem;
    font-size: 0.9rem;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    white-space: normal;
    word-break: break-word;
    min-height: 4rem;
    border: 1px solid #CFCFCF;
    background: #F9F9F9;
  }

  .methodology-header {
    font-size: 1rem;
    font-weight: 600;
    background: #000;
    color: #FFF;
    border: 1px solid #000;
    align-items: center;
  }

  .methodology-name p {
    font-size: 0.95rem;
    font-weight: 600;
  }

  .cell-top-left,
  .cell-top-right,
  .cell-bottom-left,
  .cell-bottom-right {
    border-radius: 0;
  }

  .methodologies-table {
    border-radius: 0.75rem;
  }

  .finger-table {
  color: #888;
  font-size: 0.85rem;
  text-align: center;
  margin-bottom: 0.75rem;
  font-style: italic;
}
}


.ux-hero-consult-bg {
  display: flex;
  height: 50rem;
  padding: 0 10.75rem;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url('./image/swimer.jpg') center/cover no-repeat;
}

.ux-hero-consult-content {
  max-width: 59.4375rem;
  display: flex;
  flex-direction: column;
  gap: 3.4375rem;
  align-items: center;
}

.ux-hero-consult-title {
  color: #FBFBFB;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.2;
  /* улучшено для адаптивности */
  letter-spacing: -0.2rem;
  margin: 0;
}

.ux-hero-consult-btn {
  display: flex;
  width: 29.75rem;
  /* 476px */
  height: 5.125rem;
  /* 82px */
  padding: 1rem 1.5rem;
  justify-content: center;
  align-items: center;
  border-radius: 3.125rem;
  /* 50px */
  border: 1px solid #FFF;
  background: #FBFBFB;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ux-hero-consult-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.ux-hero-consult-btn-text {
  color: #2A2A2A;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

/* ===== Адаптивность: Планшеты (769px – 1024px) ===== */
@media (max-width: 1024px) {
  .ux-hero-consult-bg {
    height: 32rem;
    /* уменьшаем высоту */
    padding: 0 3rem;
    /* меньше горизонтальных отступов */
  }

  .ux-hero-consult-title {
    font-size: 3rem;
    letter-spacing: -0.15rem;
    line-height: 1.3;
  }

  .ux-hero-consult-btn {
    width: 24rem;
    /* 384px */
    height: 4.5rem;
    /* 72px */
    padding: 0.75rem 1.5rem;
  }

  .ux-hero-consult-btn-text {
    font-size: 1.25rem;
  }
}

/* ===== Адаптивность: Мобильные (до 768px) ===== */
@media (max-width: 768px) {
  .ux-hero-consult-bg {
    height: 28rem;
    padding: 0 1.5rem;
    /* 🔥 Заменяем фон на мобильную версию */
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
      url('./image/mobile-swimmer.png') center/cover no-repeat;
  }

  .ux-hero-consult-content {
    gap: 7rem;
    /* 32px */
    padding: 0 1rem;
    /* внутренний отступ для контента */
  }

  .ux-hero-consult-title {
    font-size: 2rem;
    /* 36px */
    letter-spacing: -0.1rem;
    line-height: 1.4;
    padding: 0 0.5rem;
    /* чтобы не упирался в края */
  }

  .ux-hero-consult-btn {
    width: 100%;
    /* растягиваем на всю ширину */
    max-width: 20rem;
    /* но не более 320px */
    height: 4rem;
    /* 64px */
    padding: 0.75rem 1rem;
    border-radius: 2.5rem;
    /* чуть меньше радиус */
  }

  .ux-hero-consult-btn-text {
    font-size: 1.125rem;
    /* 18px */
    white-space: nowrap;
  }
}


/* ===== Наш процесс ===== */
.ux-process-section {
  display: flex;
  padding: 9.375rem 3.75rem 6.25rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 6.25rem;
  align-self: stretch;
  background: #000;
}

.ux-process-title {
  color: #FFF;
  font-size: 6rem;
  font-style: normal;
  font-weight: 600;
  line-height: 5.1875rem;
  letter-spacing: -0.3rem;
  align-self: stretch;
  margin: 0;
}

.ux-process-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  width: 100%;
}

.ux-process-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  align-self: stretch;
  border-bottom: 0.1875rem solid rgba(255, 255, 255, 0.2);
  /* 3px */
  cursor: pointer;
  margin-bottom: 1.25rem;
}

.ux-process-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  align-self: stretch;
  padding: 1.25rem;
  user-select: none;
}

.ux-process-step {
  display: flex;
  width: 0.9375rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
}

.ux-process-step-number {
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.ux-process-title-text {
  color: #FFF;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  flex: 1 0 0;
  margin: 0;
}

.ux-process-arrow {
  width: 2.0625rem;
  height: 2.0625rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.ux-process-arrow path {
  fill: white;
}

.ux-process-body {
  padding: 0 3.5rem;
  color: #CCC;
  font-size: 1rem;
  line-height: 1.6;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.ux-process-body p {
  font-size: 1.25rem;
  margin: 0;
  padding-bottom: 1.25rem;
}

.ux-process-item--open .ux-process-body {
  max-height: 500px;
  opacity: 1;
  pointer-events: auto;
}

.ux-process-item--open .ux-process-arrow {
  transform: rotate(180deg);
}

@media (max-width: 1024px) {
  .ux-process-section {
    padding: 6rem 2rem;
    gap: 4rem;
  }

  .ux-process-title {
    font-size: 4rem;
    line-height: 1.2;
    letter-spacing: -0.2rem;
  }

  .ux-process-header {
    padding: 1rem;
    gap: 1rem;
  }

  .ux-process-step {
    width: 0.8rem;
  }

  .ux-process-step-number {
    font-size: 1.1rem;
  }

  .ux-process-title-text {
    font-size: 1.3rem;
  }

  .ux-process-arrow {
    width: 1.8rem;
    height: 1.8rem;
  }

  .ux-process-body p {
    font-size: 1.1rem;
    padding-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .ux-process-section {
    padding: 4rem 1.5rem;
    gap: 3rem;
  }

  .ux-process-title {
    font-size: 3rem;
    line-height: 1.3;
    letter-spacing: -0.15rem;
    text-align: center;
  }

  .ux-process-list {
    width: 100%;
  }

  .ux-process-item {
    margin-bottom: 1rem;
  }

  .ux-process-header {
    padding: 1rem;
    gap: 0.75rem;
    flex-wrap: nowrap;
  }

  .ux-process-step {
    width: 0.75rem;
  }

  .ux-process-step-number {
    font-size: 1rem;
  }

  .ux-process-title-text {
    font-size: 1.2rem;
    flex: 1 1 auto;
  }

  .ux-process-arrow {
    width: 1.5rem;
    height: 1.5rem;
  }

  .ux-process-body {
    padding: 0 1rem;
  }

  .ux-process-body p {
    font-size: 1rem;
    padding-bottom: 1rem;
    line-height: 1.5;
  }

  .ux-process-item--open .ux-process-body {
    padding: 1rem;
  }
}

.ux-services-section {
  padding: 6rem 4rem;
  background: #fff;
}

.ux-services-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.ux-services-left {
  flex-shrink: 0;
}

.ux-services-title {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
  margin: 0;
}

.ux-services-right {
  flex: 1;
  margin-top: 1.5rem;
}

.ux-services-chips {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 1rem;
  flex-direction: row-reverse;
}

.chip {
  padding: 12px 20px;
  background: #2A2A2A;
  color: #FBFBFB;
  font-size: 1.3rem;
  font-family: Inter, sans-serif;
  font-weight: 400;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;

  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chip.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.chip:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.chip.animate-in:nth-child(1) {
  transition-delay: 0.1s;
}

.chip.animate-in:nth-child(2) {
  transition-delay: 0.15s;
}

.chip.animate-in:nth-child(3) {
  transition-delay: 0.2s;
}

.chip.animate-in:nth-child(4) {
  transition-delay: 0.25s;
}

.chip.animate-in:nth-child(5) {
  transition-delay: 0.3s;
}

.chip.animate-in:nth-child(6) {
  transition-delay: 0.35s;
}

.chip.animate-in:nth-child(7) {
  transition-delay: 0.4s;
}

.chip.animate-in:nth-child(8) {
  transition-delay: 0.45s;
}

.chip.animate-in:nth-child(9) {
  transition-delay: 0.5s;
}

.chip.animate-in:nth-child(10) {
  transition-delay: 0.55s;
}

.chip.animate-in:nth-child(11) {
  transition-delay: 0.6s;
}

.chip.animate-in:nth-child(12) {
  transition-delay: 0.65s;
}

.chip.animate-in:nth-child(13) {
  transition-delay: 0.7s;
}

.chip.animate-in:nth-child(14) {
  transition-delay: 0.75s;
}

.chip.animate-in:nth-child(15) {
  transition-delay: 0.8s;
}

.chip.animate-in:nth-child(16) {
  transition-delay: 0.85s;
}

.chip.animate-in:nth-child(17) {
  transition-delay: 0.9s;
}

.chip.animate-in:nth-child(18) {
  transition-delay: 0.95s;
}

.chip.animate-in:nth-child(19) {
  transition-delay: 1.0s;
}

.chip.animate-in:nth-child(20) {
  transition-delay: 1.05s;
}

/* ===== Адаптивность ===== */

@media (max-width: 1024px) {
  .ux-services-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .ux-services-right {
    width: 100%;
    margin-top: 2rem;
  }

  .ux-services-title {
    font-size: 3.2rem;
    margin-bottom: 0;
  }

  .ux-services-chips {
    justify-content: center;
    width: 100%;
  }

  .chip {
    font-size: 1.3rem;
    padding: 10px 16px;
  }
}

@media (max-width: 768px) {
  .ux-services-section {
    padding: 4rem 2rem;
  }

  .ux-services-title {
    font-size: 4rem;
    text-align: center;
  }

  .ux-services-content {
    align-items: center;
  }

  .chip {
    font-size: 0.9rem;
    padding: 8px 14px;
  }
}

@media (min-width: 1600px) {
  .ux-services-title {
    font-size: 6rem;
  }

  .chip {
    font-size: 1.3rem;
    padding: 14px 24px;
  }

  .ux-services-right {
    margin-top: 2rem;
  }
}

@media (min-width: 2560px) {
  .ux-services-section {
    padding: 8rem 6rem;
  }

  .ux-services-title {
    font-size: 7rem;
  }

  .ux-services-right {
    margin-top: 3rem;
  }

  .chip {
    font-size: 1.5rem;
    padding: 16px 30px;
  }
}

.ux-collab-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6.25rem;
  /* 100px */
  padding: 7.6875rem 3.75rem 6.25rem;
  background: #FFF;
  width: 100%;
}

.ux-collab-title {
  color: #000;
  font-size: 6rem;
  font-weight: 600;
  line-height: 5.1875rem;
  letter-spacing: -0.3rem;
  margin: 0;
}

.ux-collab-grid {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: repeat(2, 1fr);
  row-gap: 1.875rem;
  column-gap: 1.25rem;
  width: 100%;
  height: auto;
  align-self: stretch;
}

.ux-collab-card {
  display: flex;
  padding: 3.125rem 1.25rem;
  gap: 1.25rem;
  flex: 1;
  border-radius: 0.9375rem;
  background: #F9F9F9;
  align-items: flex-start;
}

.ux-collab-card--highlighted {
  background: linear-gradient(0deg, #F9F9F9 0%, #F9F9F9 100%),
    linear-gradient(180deg, rgba(47, 46, 46, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
}

.ux-collab-icon-wrapper {
  display: flex;
  width: 4.375rem;
  height: 4.375rem;
  padding: 0.625rem;
  justify-content: center;
  align-items: center;
  border-radius: 6.25rem;
  border: 0.125rem solid #CFCFCF;
  flex-shrink: 0;
}

.ux-collab-icon {
  display: flex;
  width: 3.125rem;
  height: 3.125rem;
  justify-content: center;
  align-items: center;
}

.ux-collab-card:not(.ux-collab-card--highlighted) .ux-collab-icon-wrapper {
  padding: 0.3125rem;
}

.ux-collab-card:not(.ux-collab-card--highlighted) .ux-collab-icon {
  width: 3.75rem;
  height: 3.75rem;
}

.ux-collab-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.75rem;
  flex: 1;
}

.ux-collab-card-title {
  color: #2A2A2A;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

.ux-collab-card-text {
  color: #2A2A2A;
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
}

.ux-collab-card-list {
  color: #2A2A2A;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  padding-left: 1.25rem;
  list-style-type: disc;
}

@media (max-width: 1024px) {
  .ux-collab-section {
    padding: 5rem 2rem;
    gap: 4rem;
  }

  .ux-collab-title {
    font-size: 4rem;
    line-height: 1.2;
    letter-spacing: -0.2rem;
  }

  .ux-collab-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    row-gap: 1.5rem;
    column-gap: 1rem;
  }

  .ux-collab-card {
    padding: 2rem 1rem;
    align-items: flex-start;
  }

  .ux-collab-icon-wrapper {
    width: 3.75rem;
    height: 3.75rem;
  }

  .ux-collab-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .ux-collab-card:not(.ux-collab-card--highlighted) .ux-collab-icon {
    width: 3rem;
    height: 3rem;
  }

  .ux-collab-content {
    align-items: flex-start;
  }

  .ux-collab-card-list {
    text-align: left;
    padding-left: 1.25rem;
  }
}

@media (max-width: 768px) {
  .ux-collab-section {
    padding: 4rem 1.5rem;
    gap: 3rem;
  }

  .ux-collab-title {
    font-size: 4rem;
    line-height: 1.3;
    letter-spacing: -0.15rem;
    text-align: center;
    width: 100%;
  }

  .ux-collab-grid {
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }

  .ux-collab-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }

  .ux-collab-icon-wrapper {
    width: 4rem;
    height: 4rem;
    padding: 0.5rem;
  }

  .ux-collab-icon {
    width: 2.75rem;
    height: 2.75rem;
  }

  .ux-collab-card:not(.ux-collab-card--highlighted) .ux-collab-icon {
    width: 3.25rem;
    height: 3.25rem;
  }

  .ux-collab-content {
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .ux-collab-card-title {
    font-size: 1.3rem;
  }

  .ux-collab-card-text {
    font-size: 1.05rem;
  }

  .ux-collab-card-list {
    text-align: left;
    padding-left: 1.5rem;
    margin: 0 auto;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .ux-collab-section {
    padding: 3rem 1rem;
    gap: 2.5rem;
  }

  .ux-collab-title {
    font-size: 2.5rem;
    letter-spacing: -0.1rem;
  }

  .ux-collab-card {
    padding: 1.75rem 1rem;
    gap: 1.25rem;
  }

  .ux-collab-icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
  }

  .ux-collab-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .ux-collab-card-title {
    font-size: 1.2rem;
  }

  .ux-collab-card-text {
    font-size: 1rem;
  }

  .ux-collab-card-list {
    font-size: 0.95rem;
    padding-left: 1.25rem;
  }
}

.ux-testimonials-section {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  padding: 9.375rem 3.75rem 6.25rem;
  background: white;
  overflow: hidden;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.ux-testimonials-title {
  width: 26.6875rem;
  color: black;
  font-size: 6rem;
  font-family: Inter, sans-serif;
  font-weight: 600;
  line-height: 5.1875rem;
  word-wrap: break-word;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
}

.ux-testimonials-card-wrapper {
  flex: 1 1 0;
  overflow: hidden;
  border-radius: 0.9375rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.625rem;
  min-width: 0;
}

.ux-testimonials-card {
  flex: 1 1 0;
  padding: 2.5rem 2.5rem 1.25rem;
  background: #F9F9F9;
  box-shadow: 0 0.125rem 0.1875rem rgba(0, 0, 0, 0.1);
  border-radius: 0.9375rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2.5rem;
  overflow: hidden;
  min-width: 0;
}

.ux-testimonials-logo-wrapper {
  width: 11.125rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.3125rem;
}

.ux-testimonials-logo {
  width: 100%;
  height: auto;
  max-height: 3.17125rem;
  object-fit: contain;
}

.ux-testimonials-quote {
  align-self: stretch;
  color: black;
  font-size: 1.5rem;
  font-family: Inter, sans-serif;
  font-weight: 400;
  word-wrap: break-word;
  text-align: center;
  margin: 0;
}

.ux-testimonials-author {
  align-self: stretch;
  color: black;
  font-size: 1rem;
  font-family: Inter, sans-serif;
  font-weight: 600;
  word-wrap: break-word;
  text-align: center;
  margin: 0;
}

.ux-testimonials-dots {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  align-self: stretch;
  justify-content: center;
}

.ux-testimonials-dot {
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 9999px;
}

.ux-testimonials-dot--active {
  background: white;
}

.ux-testimonials-dot--inactive {
  background: #CDCDCD;
  width: 0.625rem;
  height: 0.625rem;
}


@media (max-width: 1024px) {
  .ux-testimonials-section {
    padding: 6rem 2rem;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }

  .ux-testimonials-title {
    width: 100%;
    text-align: center;
    font-size: 4rem;
    line-height: 1.2;
  }

  .ux-testimonials-card {
    padding: 2rem 1.5rem;
  }

  .ux-testimonials-quote,
  .ux-testimonials-author {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .ux-testimonials-section {
    padding: 4rem 1.5rem;
    gap: 2rem;
  }

  .ux-testimonials-title {
    font-size: 3rem;
    line-height: 1.3;
  }

  .ux-testimonials-card {
    padding: 1.5rem 1rem;
  }

  .ux-testimonials-quote {
    font-size: 1.25rem;
  }

  .ux-testimonials-author {
    font-size: 0.95rem;
  }
}

.reviews {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6rem 4rem;
  background: #fff;
  gap: 2rem;
  flex-wrap: wrap;
}

.reviews-left h2 {
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.1;
  color: #000;
  max-width: 20ch;
  margin: 0;
}

.reviews-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  min-width: 0;
  height: 30rem;
  align-items: center;
}

.review-card {
  background: #f9f9f9;
  border-radius: 1rem;
  box-shadow: 0 0.125rem 0.1875rem rgba(0, 0, 0, 0.1);
  padding: 2rem;
  max-width: 38rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  overflow: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
  justify-content: center;
  position: relative;
}

.review-logo {
  height: 2.5rem;
  width: auto;
  aspect-ratio: 168 / 50.74;
  background: url('./svg/puma.svg') no-repeat left center / contain;
  align-self: flex-start;
  margin-left: 1rem;
  margin-bottom: 1rem;
}

.review-text {
  font-size: 1rem;
  color: #000;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
  margin-bottom: 2.6rem;
}

.review-author {
  font-size: 0.875rem;
  font-weight: 600;
  color: #000;
  margin: 0;
  align-self: left;
}

.review-dots {
  margin-top: auto;
  display: flex;
  gap: 6px;
  justify-content: left;
  margin-top: 20px;
}

.fade-out {
  opacity: 0;
  transform: translateY(10px);
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.dot:hover {
  transform: scale(1.2);
  background-color: #888;
}

.dot.active {
  background-color: black;
  transform: scale(1.4);
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.4);
  }

  70% {
    box-shadow: 0 0 0 6px rgba(0, 123, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
  }
}

@media (max-width: 768px) {
   .review-dots {
    gap: 8px;
    margin-top: 24px;
  }
}

@media (min-width: 64rem) and (max-width: 99.9375rem) {

  .reviews {
    padding: 6rem 3rem;
  }

  .reviews-left h2 {
    font-size: 5rem;
  }

  .reviews-right {
    height: 32rem;
  }

  .review-card {
    padding: 2.5rem;
    gap: 1.5rem;
    height: 100%;
    justify-content: center;
  }

  .review-logo {
    height: 3rem;
    margin-left: 1.2rem;
    margin-bottom: 1.2rem;
  }

  .review-text {
    font-size: 1.125rem;
    -webkit-line-clamp: 6;
    margin-bottom: 2.6rem;
  }

  .review-author {
    font-size: 1rem;
  }

  .review-logo {
    height: 4rem;
  }
}

@media (max-width: 63.9375rem) {

  .reviews {
    padding: 5rem 2rem;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }

  .reviews-left h2 {
    text-align: center;
    font-size: 4rem;
  }

  .reviews-right {
    justify-content: center;
    width: 100%;
    height: 28rem;
  }

  .review-card {
    max-width: 100%;
    padding: 2.5rem;
    gap: 1.75rem;
    height: 100%;
    justify-content: center;
  }

  .review-logo {
    height: 3.5rem;
    margin-left: 1rem;
    margin-bottom: 1rem;
  }

  .review-text {
    -webkit-line-clamp: 6;
    margin-bottom: 2.6rem;
  }

  .review-author {
    margin-top: 0;
  }

  .review-logo {
    height: 4.5rem;
  }
}

@media (max-width: 47.9375rem) {

  .reviews {
    padding: 4rem 1.5rem;
    gap: 2.5rem;
  }

  .reviews-left h2 {
    font-size: 4rem;
    line-height: 1.2;
  }

  .reviews-right {
    height: 26rem;
  }

  .review-card {
    padding: 2rem 1.75rem;
    height: 100%;
    justify-content: center;
  }

  .review-logo {
    height: 3rem;
    margin-left: 0.8rem;
    margin-bottom: 0.8rem;
  }

  .review-text {
    font-size: 1.125rem;
    -webkit-line-clamp: 5;
    margin-bottom: 2.6rem;
  }

  .review-author {
    font-size: 1rem;
  }

  .review-logo {
    height: 4rem;
  }
}

@media (min-width: 100rem) and (max-width: 119.9375rem) {

  .reviews {
    padding: 7rem 5rem;
    gap: 3rem;
  }

  .reviews-left h2 {
    font-size: 7rem;
  }

  .reviews-right {
    height: 36rem;
  }

  .review-card {
    max-width: 48rem;
    padding: 3.5rem;
    gap: 2rem;
    height: 100%;
    justify-content: center;
  }

  .review-logo {
    height: 4rem;
    margin-left: 1.5rem;
    margin-bottom: 1.2rem;
  }

  .review-text {
    font-size: 1.1rem;
    -webkit-line-clamp: 7;
    margin-bottom: 2.6rem;
  }

  .review-author {
    font-size: 1.1rem;
  }

  .review-logo {
    height: 5rem;
  }
}

@media (min-width: 120rem) and (max-width: 159.9375rem) {
  .reviews {
    padding: 8rem 6rem;
    gap: 4rem;
  }

  .reviews-left h2 {
    font-size: 8rem;
  }

  .reviews-right {
    height: 40rem;
  }

  .review-card {
    max-width: 60rem;
    padding: 4rem;
    gap: 2.5rem;
    height: 100%;
    justify-content: center;
  }

  .review-logo {
    height: 5rem;
    margin-bottom: 1.5rem;
  }

  .review-text {
    font-size: 1.35rem;
    line-height: 1.4;
    -webkit-line-clamp: 8;
    margin-bottom: 2.8rem;
  }

  .review-author {
    font-size: 1.15rem;
  }

  .review-logo {
    height: 6rem;
  }
}

@media (min-width: 160rem) {
  .reviews {
    padding: 10rem 8rem;
    gap: 5rem;
  }

  .reviews-left h2 {
    font-size: 10rem;
  }

  .reviews-right {
    height: 48rem;
  }

  .review-card {
    max-width: 70rem;
    padding: 5rem;
    gap: 3rem;
    height: 100%;
    justify-content: center;
  }

  .review-logo {
    height: 6rem;
    margin-left: 2.5rem;
    margin-bottom: 2rem;
  }

  .review-text {
    font-size: 2rem;
    line-height: 1.5;
    -webkit-line-clamp: 10;
    margin-bottom: 3rem;
  }

  .review-author {
    font-size: 1.5rem;
  }

  .review-logo {
    height: 8rem;
  }
}

.ux-plan-section {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 12.5rem 13.4375rem 12.5rem 3.75rem;
  gap: 4rem;
  position: relative;
  overflow: visible;
}

.ux-plan-bg,
.ux-plan-bg-2 {
  position: absolute;
  width: 40rem;
  height: 40rem;
  border-radius: 50%;
  background: linear-gradient(336deg, #0F4BAA 8.76%, rgba(234, 101, 71, 0.96) 47.13%, rgba(255, 255, 255, 0.00) 80.65%);
  filter: blur(71.35px);
  z-index: -1;
  opacity: 0.5;
  pointer-events: none;
}

.ux-plan-bg {
  left: -10rem;
  top: 10rem;
}

.ux-plan-bg-2 {
  right: -21rem;
  top: -8rem;
}

.ux-plan-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ux-plan-title {
  color: #FBFBFB;
  font-size: 6rem;
  font-weight: 600;
  line-height: 5.1875rem;
  letter-spacing: -0.3rem;
  margin: 0;
}

.ux-plan-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2.5rem;
  border-radius: 1.5rem;
  width: 100%;
  max-width: 45rem;
  margin-left: auto;
  padding: 0.9375rem 0.625rem;
}

.ux-plan-input,
.ux-plan-select {
  display: flex;
  height: 3.375rem;
  padding: 0.9375rem 0.625rem;
  align-items: center;
  gap: 0.625rem;
  border-radius: 0.625rem;
  border: 1px solid #FBFBFB;
  background: rgba(0, 0, 0, 0.3);
  color: #CDCDCD;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  box-sizing: border-box;
  margin: 0 0 1.2rem;
}

.ux-plan-input::placeholder {
  color: #CDCDCD;
}

.ux-plan-input:focus,
.ux-plan-select:focus {
  border-color: #FBFBFB;
  box-shadow: 0 0 0 2px rgba(251, 251, 251, 0.2);
}

.ux-plan-select {
  border: 1px solid #FBFBFB;
  color: #CDCDCD;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.625rem;
  height: 3.375rem;
  padding: 0.9375rem 0.625rem;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
  margin: 0 0 1.2rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ux-plan-select:focus {
  border-color: #FBFBFB;
  box-shadow: 0 0 0 2px rgba(251, 251, 251, 0.2);
}

.ux-plan-select option {
  background: #3E3E3E;
  color: #FBFBFB;
}

.ux-plan-select-wrapper {
  position: relative;
}

.ux-plan-select-arrow {
  position: absolute;
  right: 0.9375rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.ux-plan-submit {
  display: flex;
  height: 5.125rem;
  justify-content: center;
  align-items: center;
  border-radius: 3.125rem;
  background: #FBFBFB;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.ux-plan-submit-text {
  color: #2A2A2A;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

.ux-plan-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.ux-plan-consent {
  margin: 1rem 0;
}

.ux-plan-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  user-select: none;
}

.ux-plan-consent-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.ux-plan-consent-checkmark {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid #FBFBFB;
  border-radius: 0.3125rem;
  background: rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
  margin-top: 0.125rem;
  position: relative;
  transition: all 0.2s ease;
}

.ux-plan-consent-checkmark::after {
  content: '';
  position: absolute;
  display: none;
  left: 0.375rem;
  top: 0.1875rem;
  width: 0.5rem;
  height: 0.25rem;
  border: solid #FBFBFB;
  border-width: 0 0.125rem 0.125rem 0;
  transform: rotate(45deg);
}

.ux-plan-consent-checkbox:checked~.ux-plan-consent-checkmark::after {
  display: block;
}

.ux-plan-consent-text {
  color: #CDCDCD;
  font-size: 0.95rem;
  line-height: 1.4;
  margin: 0;
}

.ux-plan-consent-text::after {
  content: '*';
  color: #EA6547;
  margin-left: 0.25rem;
  font-weight: bold;
}

.ux-plan-consent-label:hover .ux-plan-consent-checkmark {
  border-color: #FBFBFB;
  background: rgba(251, 251, 251, 0.1);
}
.ux-plan-consent-checkbox:focus-visible~.ux-plan-consent-checkmark {
  box-shadow: 0 0 0 2px rgba(251, 251, 251, 0.3);
  outline: none;
}

@media (max-width: 1024px) {
  .ux-plan-section {
    padding: 5rem 2rem;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
  }

  .ux-plan-left {
    align-items: center;
    text-align: center;
  }

  .ux-plan-title {
    font-size: 3rem;
    line-height: 1.2;
    letter-spacing: -0.1rem;
  }

  .ux-plan-form {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .ux-plan-section {
    padding: 4rem 1.5rem;
    gap: 3rem;
  }

  .ux-plan-title {
    font-size: 3rem;
    line-height: 1.3;
    letter-spacing: -0.2rem;
  }

  .ux-plan-submit {
    height: 3.5rem;
  }

  .ux-plan-submit-text {
    font-size: 1.15rem;
  }

  .ux-plan-consent-checkmark {
    width: 1.125rem;
    height: 1.125rem;
    border-radius: 0.25rem;
  }

  .ux-plan-consent-checkmark::after {
    left: 0.3125rem;
    top: 0.125rem;
    width: 0.4375rem;
    height: 0.21875rem;
    border-width: 0 0.1rem 0.1rem 0;
  }

  .ux-plan-consent-text {
    font-size: 0.9rem;
  }
  
}

@media (max-width: 480px) {
  .ux-plan-section {
    padding: 3rem 1rem;
    gap: 2.5rem;
  }

  .ux-plan-title {
    font-size: 2.5rem;
    line-height: 1.2;
    letter-spacing: -0.1rem;
  }

  .ux-plan-form {
    padding: 1rem;
  }

  .ux-plan-input,
  .ux-plan-select {
    height: 3rem;
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
  }

  .ux-plan-submit {
    height: 3rem;
  }

  .ux-plan-submit-text {
    font-size: 1rem;
  }

  .ux-plan-consent-text {
    font-size: 0.85rem;
  }

  .ux-plan-bg{
    position: absolute;
    width: 30rem;
    height: 30rem;
  }
}

.ux-solutions-section {
  display: flex;
  flex-direction: column;
  gap: 85px;
  padding: 368px 60px 100px; /* верхний паддинг увеличен, чтобы текст не налезал на серый блок */
  background: #fff;
  position: relative;
  z-index: 0;
}

.ux-solutions-title {
  font-size: 6.5rem;
  color: black;
  line-height: 1.1;
}

.ux-solutions-content {
  display: flex;
  align-items: stretch;
  gap: 40px;
  width: 100%;
  flex-wrap: wrap;
}

.ux-solutions-main-card {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #010101;
  width: 538px;
  flex-shrink: 0;
}

.ux-solutions-main-icon {
  width: 13.25rem;
  height: 13.3125rem;
  aspect-ratio: 212 / 213;
  object-fit: contain;
  margin-bottom: 2rem;
}

.ux-solutions-main-title {
  font-size: 4rem;
  font-weight: 500;
  color: white;
}

.ux-solutions-main-text {
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.4;
}

.ux-solutions-list-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #010101;
  flex: 1;
  min-width: 0;
}

.ux-solutions-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ux-solutions-list-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ux-solutions-list-item-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.375rem;
  font-weight: 500;
  color: #fff;
}

.ux-solutions-list-item-title::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 27px;
  background-image: url('data:image/svg+xml;utf8,<svg width="28" height="27" viewBox="0 0 28 27" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.9305 13.918L11.0978 19.8268C11.0436 19.8817 10.9793 19.9253 10.9085 19.955C10.8377 19.9847 10.7618 20 10.6852 20C10.6085 20 10.5326 19.9847 10.4618 19.955C10.391 19.9253 10.3267 19.8817 10.2725 19.8268C10.2183 19.7719 10.1753 19.7068 10.146 19.635C10.1167 19.5633 10.1016 19.4864 10.1016 19.4088C10.1016 19.3312 10.1167 19.2543 10.146 19.1825C10.1753 19.1108 10.2183 19.0456 10.2725 18.9907L15.6932 13.5L10.2725 8.00925C10.163 7.89838 10.1016 7.74801 10.1016 7.59121C10.1016 7.43441 10.163 7.28403 10.2725 7.17316C10.3819 7.06229 10.5304 7 10.6852 7C10.8399 7 10.9884 7.06229 11.0978 7.17316L16.9305 13.082C16.9847 13.1368 17.0278 13.202 17.0571 13.2737C17.0865 13.3455 17.1016 13.4223 17.1016 13.5C17.1016 13.5777 17.0865 13.6545 17.0571 13.7263C17.0278 13.798 16.9847 13.8632 16.9305 13.918Z" fill="%23C8C8C8"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.ux-solutions-list-item-desc {
  margin-left: 2.5rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: #5F5F5F;
}

.ux-solutions-action {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  margin-top: auto;
}

.ux-solutions-action-text {
  font-size: 1.125rem;
  font-weight: 400;
  color: #fff;
  border-bottom: 2px solid gray;
  padding-bottom: 2px;
}

.light-block .ux-solutions-action-text {
  border-bottom: 2px solid #5F5F5F; /* серый всегда */
  transition: border-color 0.3s ease-in-out;
}

.light-block .ux-solutions-action-text:hover {
  border-color: black; /* при наведении черный */
}

.ux-solutions-action-text {
  border-bottom: 2px solid #5F5F5F; /* серый всегда */
  transition: border-color 0.3s ease-in-out;
}

.ux-solutions-action-text:hover {
  border-color: white; /* при наведении белый */
}



.ux-solutions-action-icon {
  display: flex;
  width: 80px;
  height: 80px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

/* Светлая тема */
.light-block .ux-solutions-main-card,
.light-block .ux-solutions-list-wrapper {
  background: #F9F9F9;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.light-block .ux-solutions-main-title,
.light-block .ux-solutions-main-text,
.light-block .ux-solutions-list-item-title,
.light-block .ux-solutions-action-text {
  color: #000;
}

.light-block .ux-solutions-list-item-desc {
  color: #C8C8C8;
}

.light-block .ux-solutions-action-icon {
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: black;
}

/* ===== Адаптив ===== */

@media (max-width: 1700px) {
  .ux-solutions-section{
  padding: 250px 60px 100px;
  }
}

@media (max-width: 1600px) {
  .ux-solutions-title {
    font-size: 6rem;
  }
}



@media (max-width: 1200px) {
  .ux-solutions-content {
    flex-direction: column;
    gap: 40px;
  }

  .ux-solutions-main-card,
  .ux-solutions-list-wrapper {
    width: 100%;
    padding: 30px;
  }

  .ux-solutions-main-title {
    font-size: 3rem;
  }

  .ux-solutions-main-text {
    font-size: 1.6rem;
  }

  .ux-solutions-list-item-title {
    font-size: 1.25rem;
  }

  .ux-solutions-list-item-desc {
    font-size: 1rem;
  }

  .ux-solutions-action-text {
    font-size: 1rem;
  }
}

@media (max-width: 992px) {
  .ux-solutions-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .ux-solutions-section {
    padding: 120px 20px 60px;
  }

  .ux-solutions-content {
    flex-direction: column;
    gap: 0;
  }

  /* Убираем ВСЕ границы между блоками — они сливаются */
  .ux-solutions-main-card {
    width: 100%;
    padding: 30px;
    border-radius: 20px 20px 0 0;
    border: none; /* ← ключевое: убираем рамку */
  }

  .ux-solutions-list-wrapper {
    width: 100%;
    padding: 30px;
    border-radius: 0 0 20px 20px;
    border: none; /* ← ключевое: убираем рамку */
  }

  /* Применяем то же для light-block */
  .light-block .ux-solutions-main-card,
  .light-block .ux-solutions-list-wrapper {
    border: none;
  }

  .ux-solutions-main-title {
    font-size: 2rem;
  }

  .ux-solutions-main-text {
    font-size: 1.1rem;
  }

  .ux-solutions-list-item-title {
    font-size: 1.2rem;
  }

  .ux-solutions-list-item-desc {
    font-size: 1rem;
    margin-left: 2.5rem;
  }

  .ux-solutions-action-text {
    font-size: 1rem;
  }

  .ux-solutions-action-icon {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .ux-solutions-title {
    font-size: 2.2rem;
  }
}


.projects {
  display: flex;
  flex-direction: column;
  height: 60rem;
  background: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15)), url('./image/MedNote.jpg') center/cover no-repeat;
  position: relative;
}

.projects-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  padding: 5rem 0 0;
}

.projects-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 100rem;
  padding-left: 10.75rem;
  margin-top: 12rem;
}

.projects-info h2 {
  color: #FBFBFB;
  font-weight: 600;
  font-size: 2.1rem;
}

.projects-info p {
  color: #FBFBFB;
  font-size: 2.4rem;
  line-height: 3rem;
  margin: 0;
}

.project-button {
  display: flex;
  align-items: center;
  gap: 2rem;
  cursor: pointer;
}

.project-button .text-line p {
  color: #FFF;
  font-size: 1.125rem;
  margin: 0;
}

.circle-arrow {
  width: 82px;
  height: 82px;
  border: 1px solid #5F5F5F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
}

.tab {
  flex: 1 1 0;
  height: 6.4rem;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.1rem solid #fbfbfb;
  border-top: 0.1rem solid #fbfbfb;
  border-left: 0.1rem solid #fbfbfb;
  cursor: pointer;
  transition: background 0.3s ease;
}

.tab.active:not(.is-link) {
  background: rgba(255, 255, 255, 0.1);
  border-top: none;
}

.tab.active:not(.is-link):first-child {
  border-left: none;
}

.tab span {
  font-size: 2rem;
  font-weight: 700;
  color: #fbfbfb;
}

.tab img {
  max-height: 3.9rem;
  max-width: 21.8rem;
  object-fit: contain;
}

.tab.more span {
  font-size: 1.5rem;
  font-weight: 600;
}

.mobile-tabs {
  display: none;
}

@media (max-width: 768px) {
  .desktop-tabs {
    display: none;
  }

  .mobile-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem;
    gap: 1.25rem;
  }

  /* Текст табов — оставляем как есть (но без border-radius и hover, если не нужно) */
  .mobile-tabs .tab {
    font-size: 1.5rem;
    font-weight: 600;
    background: none;
    border: none;
    color: #FBFBFB;
    cursor: default;
    padding: 0.5rem 1rem;
    white-space: nowrap;
  }

  .mobile-tabs .tab.active {
    color: #FFFFFF;
  }

  /* Кнопки навигации — теперь с ЧЁТКИМ фоном и жирными стрелками */
  .mobile-tabs .tab-nav {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1A1A1A; /* тёмно-серый фон — не чистый чёрный, чтобы выделялся */
    border: 1px solid #333; /* лёгкая граница для контраста */
    border-radius: 6px;
    cursor: pointer;
    padding: 0;
    margin: 0;
    font-size: 0; /* убирает текст */
  }

  .mobile-tabs .tab-nav svg {
    width: 18px;
    height: 18px;
    stroke: #FFFFFF;
    stroke-width: 2.5; /* чуть жирнее — лучше видно */
    display: block;
  }

  /* Остальное — как у тебя */
  .projects-info {
    width: 100%;
    padding-left: 2rem;
  }

  .projects-info h2 {
    font-size: 1.5rem;
  }

  .projects-info p {
    font-size: 1.75rem;
    line-height: 2.25rem;
  }
}




.container {
  width: 79.65rem;
  margin: 0 auto;
  overflow-x: auto;
  padding: 2rem 0;
}

.chart-container {
  position: relative;
  width: 79.65rem;
  height: 18.75rem;
  margin: 0 auto;
  overflow: visible;
}

.axis-y-line,
.axis-x-line {
  background: #e2e2e2;
  z-index: 1;
  opacity: 0;
  animation: fadeIn 0.5s ease-out 0.2s forwards;
}

.arrow-y,
.arrow-x,
.label-y,
.label-x {
  opacity: 0;
  animation: fadeIn 0.5s ease-out 0.4s forwards;
}

.axis-x-labels {
  opacity: 0;
  animation: fadeIn 0.5s ease-out 0.6s forwards;
}

.graph-line {
  fill: none;
  stroke: #e2e2e2;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: drawGraph 1.5s ease-out 0.8s forwards;
}

.point {
  width: 0.625rem;
  height: 0.625rem;
  background: #000;
  border-radius: 50%;
  transform: translate(-0.3125rem, -0.3125rem) scale(0);
  opacity: 0;
  z-index: 5;
}

.label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #000;
  text-align: center;
  white-space: nowrap;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  opacity: 0;
  z-index: 5;
  position: absolute;
}

.dashed-line {
  width: 0.0625rem;
  background-image: linear-gradient(to bottom, #e2e2e2 50%, transparent 50%);
  background-size: 0.0625rem 0.25rem;
  background-repeat: repeat-y;
  transform: scaleY(0);
  transform-origin: top;
  opacity: 0;
  z-index: 2;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes drawGraph {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: translate(-0.3125rem, -0.3125rem) scale(0) translateY(10px);
  }

  50% {
    transform: translate(-0.3125rem, -0.3125rem) scale(1.1) translateY(2px);
  }

  100% {
    opacity: 1;
    transform: translate(-0.3125rem, -0.3125rem) scale(1) translateY(0);
  }
}

.point-1,
.label[style*="7.5rem"],
.dashed-line-1 {
  animation: popIn 0.5s ease-out 1.2s forwards;
}

.point-2,
.label[style*="30rem"],
.dashed-line-2 {
  animation: popIn 0.5s ease-out 1.4s forwards;
}

.point-3,
.label[style*="52.5rem"],
.dashed-line-3 {
  animation: popIn 0.5s ease-out 1.6s forwards;
}

.point-4,
.label[style*="75rem"],
.dashed-line-4 {
  animation: popIn 0.5s ease-out 1.8s forwards;
}

@keyframes growLine {
  from {
    transform: scaleY(0);
    opacity: 0;
  }

  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

.dashed-line-1 {
  animation: growLine 0.5s ease-out 1.2s forwards;
}

.dashed-line-2 {
  animation: growLine 0.5s ease-out 1.4s forwards;
}

.dashed-line-3 {
  animation: growLine 0.5s ease-out 1.6s forwards;
}

.dashed-line-4 {
  animation: growLine 0.5s ease-out 1.8s forwards;
}

@media (max-width: 768px){
 .ux-solutions-section {
    padding: 200px 20px 60px;
  }
}

@media (max-width: 768px) {
  .container {
    width: 100%;
    padding: 1rem 0;
  }

  .chart-container {
    height: 15.625rem;
  }

  .axis-x-labels {
    bottom: -3.75rem;
    font-size: 0.75rem;
  }

  .stage-label span {
    font-size: 0.625rem;
  }

  .label {
    font-size: 0.75rem;
    top: -0.625rem;
  }

}



.expertise {
  margin: 0 auto;
  padding: 9rem 4rem 6rem;
  background: #000;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.expertise-startups-tabs {
  display: none;
}

.expertise-title {
  color: #fff;
  font-size: 6rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.3rem;
  max-width: 48rem;
}

.expertise-content {
  display: flex;
  gap: 2.5rem;
  width: 100%;
  flex-wrap: wrap;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 0.1rem solid #595959;
  border-radius: 1rem;
  overflow: hidden;
  flex-shrink: 0;
  max-width: 42rem;
}

.expertise-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.25rem;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  border: 0.1rem solid #595959;
  text-align: center;
}

.expertise-extra {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex: 1;
}

.logo-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.logo-wrapper {
  flex: 0 0 auto;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.logo-wrapper.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.logo-wrapper.animate-in:nth-child(1) {
  transition-delay: 0.1s;
}

.logo-wrapper.animate-in:nth-child(2) {
  transition-delay: 0.3s;
}

.logo-wrapper.animate-in:nth-child(3) {
  transition-delay: 0.5s;
}

.logo-wrapper.animate-in:nth-child(4) {
  transition-delay: 0.7s;
}

.logo-wrapper.animate-in:nth-child(5) {
  transition-delay: 0.9s;
}

.logo-wrapper.animate-in:nth-child(6) {
  transition-delay: 1.1s;
}

.logo-wrapper.animate-in:nth-child(7) {
  transition-delay: 1.3s;
}

.logo-wrapper.animate-in:nth-child(8) {
  transition-delay: 1.5s;
}

.logo-wrapper.animate-in:nth-child(9) {
  transition-delay: 1.7s;
}

.logo-wrapper.animate-in:nth-child(10) {
  transition-delay: 1.9s;
}

.logo-img {
  height: 3.5rem;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: invert(1) brightness(2);
}

@media (min-width: 1600px) {
  .expertise-title {
    font-size: 7rem;
    max-width: 60rem;
  }

  .expertise-grid {
    max-width: 50rem;
  }

  .expertise-item {
    font-size: 1.35rem;
    padding: 1.75rem;
  }

  .expertise-extra {
    gap: 1.5rem;
  }

  .logo-img {
    height: 4.5rem;
  }

  .logo-row {
    gap: 4rem;
  }
}

@media (max-width: 1024px) {
  .expertise-content {
    flex-direction: column;
    align-items: center;
  }

  .expertise-grid {
    max-width: 100%;
  }

  .expertise-extra {
    gap: 1.5rem;
  }

  .logo-img {
    height: 2.75rem;
  }
}

@media (max-width: 768px) {
  .expertise {
    padding: 6rem 1.5rem 4rem; /* уменьшаем боковые отступы */
  }

  .expertise-title {
    font-size: 4rem;
    text-align: center;
  }

  /* Таблица остаётся с 2 колонками, но теперь шире */
  .expertise-grid {
    max-width: 100%;
    width: 100%;
  }

  .expertise-item {
    font-size: 1rem;
    padding: 0.75rem;
  }

  .logo-img {
    height: 2.25rem;
  }
}

/* Очень маленькие экраны (до 480px) */
@media (max-width: 480px) {
  .expertise {
    padding: 5rem 1rem 3rem; /* ещё меньше отступов по бокам */
  }

  .expertise-title {
    font-size: 2.3rem;
    letter-spacing: 0rem;
  }

  .expertise-grid {
    max-width: 100%;
    width: 100%;
  }

  .expertise-item {
    font-size: 0.95rem;
    padding: 0.5rem;
  }

  .logo-img {
    height: 1.875rem;
  }
}

.expertise-startups-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.expertise-startups-title {
  color: #fff;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 2.0625rem;
  letter-spacing: -0.09375rem;
  margin-bottom: 2rem;
}

.expertise-startups {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.expertise-startups-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  min-width: 12rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease;
}

.expertise-startups-col.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.expertise-startups-col.animate-in:nth-child(1) {
  transition-delay: 0.2s;
}

.expertise-startups-col.animate-in:nth-child(2) {
  transition-delay: 0.4s;
}

.expertise-startups-col.animate-in:nth-child(3) {
  transition-delay: 0.6s;
}

.expertise-startups-col.animate-in:nth-child(4) {
  transition-delay: 0.8s;
}

.startup-item {
  position: relative;
  padding-left: 2.5rem;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
}

.startup-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.75rem;
  height: 1.75rem;
  background-image: url('data:image/svg+xml;utf8,<svg width="28" height="27" viewBox="0 0 28 27" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.9305 13.918L11.0978 19.8268C11.0436 19.8817 10.9793 19.9253 10.9085 19.955C10.8377 19.9847 10.7618 20 10.6852 20C10.6085 20 10.5326 19.9847 10.4618 19.955C10.391 19.9253 10.3267 19.8817 10.2725 19.8268C10.2183 19.7719 10.1753 19.7068 10.146 19.635C10.1167 19.5633 10.1016 19.4864 10.1016 19.4088C10.1016 19.3312 10.1167 19.2543 10.146 19.1825C10.1753 19.1108 10.2183 19.0456 10.2725 18.9907L15.6932 13.5L10.2725 8.00925C10.163 7.89838 10.1016 7.74801 10.1016 7.59121C10.1016 7.43441 10.163 7.28403 10.2725 7.17316C10.3819 7.06229 10.5304 7 10.6852 7C10.8399 7 10.9884 7.06229 11.0978 7.17316L16.9305 13.082C16.9847 13.1368 17.0278 13.202 17.0571 13.2737C17.0865 13.3455 17.1016 13.4223 17.1016 13.5C17.1016 13.5777 17.0865 13.6545 17.0571 13.7263C17.0278 13.798 16.9847 13.8632 16.9305 13.918Z" fill="%23C8C8C8"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 768px) {
  .expertise-startups-tabs {
    display: flex;
    justify-content: space-around;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .expertise-startups-tab-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.6rem 1rem;
    border-radius: 0.75rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 6rem;
    text-align: center;
  }

  .expertise-startups-tab-btn.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
  }

  .expertise-startups {
    display: none;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem 0;
  }

  .expertise-startups.active {
    display: flex;
  }

  .expertise-startups-col {
    min-width: 100%;
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
  }

  .expertise-startups-col.active {
    display: flex;
  }

  .expertise-startups-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 0;
  }
}

@media (max-width: 480px) {
  .expertise-startups-title {
    font-size: 1.3rem;
  }

  .startup-item {
    font-size: 0.95rem;
    padding-left: 2rem;
  }

  .expertise-startups-tab-btn {
    font-size: 0.9rem;
    padding: 0.5rem 0.8rem;
  }
}



.ux-product-stages-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6.25rem;
  padding: 9.375rem 0 6.25rem;
  background: #FFF;
  width: 100%;
  box-sizing: border-box;
}

.ux-product-stages-card {
  width: 100%;
  max-width: 82.375rem;
  padding: 2rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 2.5rem;
}

.ux-product-stages-title {
  color: #000;
  font-size: 6rem;
  font-weight: 600;
  line-height: 5.1875rem;
  letter-spacing: -0.3rem;
  margin: 0 0 2rem;
  text-align: center;
}

.ux-product-stages-graphic-fullwidth {
  width: 100%;
  padding: 0 3.75rem;
  box-sizing: border-box;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}

.ux-product-stages-graphic-fullwidth::-webkit-scrollbar {
  height: 6px;
}

.ux-product-stages-graphic-fullwidth::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 3px;
}

.ux-product-stages-graphic-fullwidth::-webkit-scrollbar-track {
  background: transparent;
}

.ux-product-stages-graphic {
  width: 100%;
  height: auto;
  max-height: 40rem;
  object-fit: contain;
  border-radius: 1rem;
  display: block;
}

@media (max-width: 1024px) {
  .ux-product-stages-section {
    padding: 5rem 0;
    gap: 4rem;
  }

  .ux-product-stages-card {
    padding: 1.5rem;
  }

  .ux-product-stages-title {
    font-size: 3.5rem;
    line-height: 1.2;
    letter-spacing: -0.15rem;
    margin-bottom: 1.5rem;
  }

  .ux-product-stages-graphic-fullwidth {
    padding: 0 2rem;
  }

  .ux-product-stages-graphic {
    border-radius: 0.75rem;
  }
}

@media (max-width: 768px) {
  .ux-product-stages-section {
    padding: 3rem 0;
    gap: 3rem;
  }

  .ux-product-stages-title {
    font-size: 2.75rem;
    letter-spacing: -0.1rem;
  }

  .ux-product-stages-graphic-fullwidth {
    padding: 0 1.5rem;
    display: block;
    white-space: nowrap;
  }

  .ux-product-stages-graphic {
    width: auto;
    min-width: 100%;
    min-width: -webkit-fill-available;
    height: auto;
    max-height: 35rem;
    border-radius: 0.5rem;
    display: inline-block;
  }

}

@media (max-width: 480px) {
  .ux-product-stages-graphic {
    max-height: 40rem;
  }
}


.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.scroll-to-top:hover svg {
  transform: translateY(-2px);
  transition: transform 0.2s ease;
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
}

.text-line {
  display: flex;
  flex-direction: column;
  gap:0.5rem; /* ← регулируй это значение: 0px, 1px, 2px и т.д. */
}

.text-line p {
  margin: 0; /* убираем стандартные отступы у <p> */
  line-height: 1.2; /* можно чуть уменьшить, если нужно */
}

.footer-social {
  display: flex;
  align-items: center; /* выравнивает по центру вертикально */
  gap: 0.5rem; /* расстояние между иконкой и текстом */
}

.footer-social p {
  margin: 0; /* убираем лишние отступы */
  font-size: 1rem;
  color: white;
}
