:root {
  --main-font-family: 'Montserrat', sans-serif;
  --title-font-family: 'Work Sans', sans-serif;
  --white: #ffffff;
  --black: #000000;
  --background: #ffffff;
  --text: #000000;
  --links: #000000;
  --bg-light: #e8eef5;
  --hero-bg: #e4ebf3;
  --accent: #f11790;
  --title-gradient: linear-gradient(94.54deg, #ff008e 2.04%, #6100ff 98.63%);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--main-font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
  background-color: var(--background);
  width: 100%;
}
body.menu-open {
  overflow: hidden;
}
body.menu-open .header {
  background-color: var(--bg-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

section {
  position: relative;
  width: 100%;
  z-index: 2;
  background-color: var(--background);
}

.background-img,
.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.background-img img,
.background-img video,
.background-video img,
.background-video video {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: top center;
}

.screen-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

.screen-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.container {
  width: 100%;
  max-width: 1630px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-width: 1800px) {
  .container {
    max-width: 1280px;
  }
}
@media (max-width: 1440px) {
  .container {
    max-width: 991px;
  }
}

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

a {
  text-decoration: none;
  color: var(--links);
}

input {
  border: 0;
  outline: none;
}

.intro-title__section {
  min-height: 400px;
  padding: 140px 0 110px;
  padding-top: 266px;
}
.intro-title__section .intro-title__inner {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.intro-title__section .intro-title__inner h1 {
  font-family: var(--title-font-family);
  font-size: 100px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  color: transparent;
  background: linear-gradient(94.54deg, #ff008e 2.04%, #6100ff 98.63%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}
@media (max-width: 992px) {
  .intro-title__section {
    padding: 100px 0 80px;
    padding-top: 196px;
  }
  .intro-title__section .intro-title__inner h1 {
    font-size: 60px;
  }
}
@media (max-width: 768px) {
  .intro-title__section {
    padding: 100px 0 40px;
    padding-top: 160px;
    min-height: 300px;
  }
  .intro-title__section .intro-title__inner h1 {
    font-size: 44px;
  }
}

.privacy-policy__section {
  background: #F0F7FF;
  padding: 120px 0;
}
.privacy-policy__section .container {
  max-width: 1350px;
}
@media (max-width: 768px) {
  .privacy-policy__section {
    padding: 100px 0;
  }
}

.privacy-policy__inner {
  display: flex;
  flex-direction: column;
}
.privacy-policy__inner h2 {
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 60px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 8px;
}
.privacy-policy__inner h2:first-child {
  margin-top: 0;
}
.privacy-policy__inner p {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  color: var(--black);
  margin-bottom: 24px;
}
.privacy-policy__inner h3 {
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 52px;
  color: var(--black);
  margin-bottom: 24px;
  margin-top: 30px;
}
.privacy-policy__inner h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  color: var(--black);
  margin-bottom: 16px;
}
.privacy-policy__inner ul {
  margin-bottom: 24px;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.privacy-policy__inner ul li {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  color: var(--black);
  position: relative;
  padding-left: 20px;
}
.privacy-policy__inner ul li:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #FF33A4;
}
.privacy-policy__inner h6 {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  color: var(--black);
  margin-bottom: 16px;
  margin-top: 48px;
}
.privacy-policy__inner h6:first-child {
  margin-top: 0;
}
@media (max-width: 768px) {
  .privacy-policy__inner h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .privacy-policy__inner p {
    font-size: 16px;
    line-height: 1.5;
  }
  .privacy-policy__inner h3 {
    font-size: 32px;
    line-height: 40px;
  }
  .privacy-policy__inner h4 {
    font-size: 24px;
    line-height: 32px;
  }
  .privacy-policy__inner ul {
    font-size: 16px;
    line-height: 1.5;
  }
  .privacy-policy__inner ul li {
    font-size: 16px;
    line-height: 1.5;
  }
  .privacy-policy__inner h6 {
    font-size: 24px;
    line-height: 32px;
    margin-top: 24px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  padding: 24px 0;
  transition: padding 0.3s, box-shadow 0.3s;
}
.header.fixed {
  padding: 16px 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  background-color: var(--bg-light);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.header-logo {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  display: block;
  width: 128px;
}
.header-logo img {
  width: 100%;
  height: 28px;
  object-fit: contain;
  object-position: left center;
}

.header-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  width: 100%;
}
.header-nav > .btn {
  flex-shrink: 0;
}

.header-nav__menu {
  display: block;
}

.menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-item {
  position: relative;
}
.menu-item > a {
  position: relative;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.53;
  letter-spacing: 0.03rem;
  text-transform: uppercase;
  color: var(--black);
  white-space: nowrap;
  transition: 0.3s;
  border-radius: 16px;
  border: 1px solid transparent;
}
.menu-item > a:hover {
  color: #6401FD;
  border-bottom-color: #fff;
  background: rgba(255, 255, 255, 0.5019607843);
}
.menu-item > a:active {
  box-shadow: 0px 2px 2px 0px #B7C2D7 inset;
  color: #6401FD;
  border-bottom-color: #fff;
}

.sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  padding: 8px 0;
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.sub-menu .menu-item > a {
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 11px;
  line-height: 1.3;
}
.sub-menu .menu-item > a::after {
  left: 24px;
  right: 24px;
  bottom: 12px;
}

.menu-item-has-children:hover > .sub-menu,
.menu-item-has-children:focus-within > .sub-menu {
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
}
.btn--primary {
  padding: 16px 32px;
  border-radius: 100px;
  background-color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.36px;
  text-transform: uppercase;
  color: var(--white);
}
.btn--primary:hover {
  background-color: #ff33a4;
  box-shadow: 0 8px 25px rgba(202, 42, 131, 0.35);
}
.btn--primary.primary-arrow {
  padding: 6px 6px 6px 40px;
}
.btn--primary.primary-arrow img {
  min-width: 56px;
  min-height: 56px;
  width: 56px;
  height: 56px;
  padding: 16px;
  border-radius: 50%;
  background-color: #FF33A4;
  box-sizing: border-box;
  object-fit: contain;
  margin-left: 16px;
}
.btn--outline {
  padding: 16px 32px;
  border: 1px solid var(--accent);
  border-radius: 100px;
  background-color: transparent;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.36px;
  text-transform: uppercase;
  color: var(--accent);
}
.btn--outline:hover {
  background-color: rgba(241, 23, 144, 0.06);
}

.btn-arrow {
  gap: 16px;
  height: 70px;
  padding: 6px 8px 6px 40px;
  border: 2px solid rgba(255, 98, 185, 0.5);
  background-color: rgba(255, 194, 228, 0.05);
  box-shadow: none;
  font-family: var(--main-font-family);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #ff47ad;
  text-transform: uppercase;
  letter-spacing: 0;
}
@media (max-width: 1440px) {
  .btn-arrow {
    font-size: 14px;
    padding: 6px 6px 6px 24px;
    min-height: auto;
  }
}
.btn-arrow img {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  padding: 16px;
  border-radius: 50%;
  background-color: #ff33a4;
  box-sizing: border-box;
}
@media (max-width: 1440px) {
  .btn-arrow img {
    width: 36px;
    height: 36px;
    padding: 12px;
  }
}
.btn-arrow:hover {
  background-color: #ff33a4;
  border-color: #ff33a4;
  color: var(--white);
  box-shadow: none;
}
@media (max-width: 1440px) {
  .btn-arrow {
    font-size: 14px;
    padding: 6px 6px 6px 24px;
    min-height: auto;
    height: 60px;
  }
  .btn-arrow img {
    width: 48px;
    height: 48px;
    padding: 12px;
  }
}

.burger {
  display: none;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.burger__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background-color: var(--black);
  transform: translate(-50%, -50%);
  transition: background-color 0.3s;
}
.burger__inner::before, .burger__inner::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background-color: var(--black);
  transition: transform 0.3s, top 0.3s;
}
.burger__inner::before {
  top: -8px;
}
.burger__inner::after {
  top: 8px;
}

@media (max-width: 1440px) {
  .menu {
    gap: 5px;
  }
  .menu-item > a {
    padding: 16px 16px;
  }
}
@media (max-width: 992px) {
  .burger {
    display: block;
  }
  .header-nav {
    position: fixed;
    top: 100vh;
    left: 0;
    width: 100%;
    margin-left: 0;
    height: calc(100vh - 72px);
    padding: 32px 15px 48px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 32px;
    background-color: var(--bg-light);
    overflow-y: auto;
    transition: top 0.4s ease;
  }
  .header-nav > .btn {
    width: 100%;
    max-width: 320px;
  }
  .menu {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
  }
  .menu-item {
    width: 100%;
    max-width: 320px;
  }
  .menu-item > a {
    text-align: center;
    font-size: 14px;
    padding: 14px 24px;
    line-height: 1.3;
  }
  .menu-item > a::after {
    left: 24px;
    right: 24px;
    bottom: 14px;
  }
  .sub-menu {
    position: static;
    display: none;
    width: 100%;
    margin-top: 4px;
    box-shadow: none;
    background-color: transparent;
    padding: 0;
  }
  .sub-menu .menu-item > a {
    font-size: 13px;
    padding: 10px 16px;
  }
  .sub-menu .menu-item > a::after {
    left: 16px;
    right: 16px;
    bottom: 10px;
  }
  .menu-item-has-children.is-open > .sub-menu {
    display: block;
  }
}
body.menu-open .header-nav {
  top: 62px;
  height: calc(100vh - 62px);
}
body.menu-open .burger__inner {
  background-color: transparent;
}
body.menu-open .burger__inner::before {
  top: 0;
  transform: rotate(45deg);
}
body.menu-open .burger__inner::after {
  top: 0;
  transform: rotate(-45deg);
}

.footer {
  position: relative;
  z-index: 2;
  padding: 80px 0 80px;
  background-color: #03020c;
  overflow: hidden;
}
@media (max-width: 768px) {
  .footer {
    padding: 60px 0;
  }
}

.footer__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(40px, 5vw, 100px);
  width: 100%;
}
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

.footer-logo {
  flex-shrink: 0;
  display: block;
  width: min(292px, 42vw);
}
@media (max-width: 768px) {
  .footer-logo {
    margin: 0 auto;
  }
}
.footer-logo img {
  width: 100%;
  height: auto;
  max-width: none;
  object-fit: contain;
  object-position: left top;
}
@media (max-width: 768px) {
  .footer-logo {
    width: min(240px, 70vw);
  }
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 72px;
  max-width: 656px;
  margin-left: auto;
  width: 100%;
}
@media (max-width: 992px) {
  .footer-nav {
    justify-content: center;
    margin-left: 0;
    max-width: none;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .footer-nav {
    flex-direction: row;
    gap: 40px;
  }
}

.footer-nav__column {
  display: block;
  min-width: 0;
}

.footer-nav__title {
  margin: 0 0 30px;
  font-family: var(--main-font-family);
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.006em;
  color: #999999;
}

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

.footer-nav__column .menu-item {
  position: static;
}
.footer-nav__column .menu-item > a {
  display: inline-block;
  padding: 0;
  border-radius: 0;
  font-family: var(--main-font-family);
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.006em;
  text-transform: none;
  color: var(--white);
  white-space: nowrap;
  transition: color 0.3s ease;
  border: none;
}
.footer-nav__column .menu-item > a::after {
  display: none;
}
.footer-nav__column .menu-item > a:hover, .footer-nav__column .menu-item > a:focus-visible {
  color: rgba(255, 255, 255, 0.72);
  background: none;
}

.split-heading {
  align-items: start;
}
.split-heading__title {
  display: inline-block;
  width: 100%;
}
.split-heading__title h2 {
  font-size: 100px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.05em;
  width: 100%;
  color: var(--black);
  margin: 0;
  font-family: var(--title-font-family);
  text-transform: uppercase;
  display: inline;
}
@media (max-width: 1800px) {
  .split-heading__title h2 {
    font-size: clamp(32px, 4.16vw, 80px);
  }
}
@media (max-width: 1600px) {
  .split-heading__title h2 {
    font-size: clamp(32px, 4vw, 80px);
  }
}
@media (max-width: 1440px) {
  .split-heading__title h2 {
    font-size: clamp(32px, 3.8vw, 80px);
  }
}
.split-heading__title br {
  display: block;
}
.split-heading__title .gradient-text {
  background: var(--title-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.05em;
}
.split-heading__title .gradient-text br {
  display: block;
}
@media (max-width: 992px) {
  .split-heading__title .gradient-text br {
    display: none;
  }
}
.split-heading__title .dynamic-block {
  position: relative;
  z-index: 1;
  display: inline-block;
  min-width: min(790px, 100%);
  height: 88px;
}
@media (max-width: 1800px) {
  .split-heading__title .dynamic-block {
    height: 64px;
  }
}
@media (max-width: 1440px) {
  .split-heading__title .dynamic-block {
    height: 30px;
  }
}
@media (max-width: 992px) {
  .split-heading__title .dynamic-block {
    height: auto;
  }
}
.split-heading__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: absolute;
  top: 16px;
  right: 0px;
  width: 100%;
  padding-left: 78px;
}
@media (max-width: 1440px) {
  .split-heading__content {
    top: 5px;
    gap: 32px;
  }
}
@media (max-width: 992px) {
  .split-heading__content {
    position: relative;
  }
}
.split-heading__content p {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--black);
  text-transform: none;
  letter-spacing: normal;
}
@media (max-width: 1600px) {
  .split-heading__content p {
    font-size: clamp(18px, 1.1vw, 24px);
  }
}

@media (max-width: 1768px) {
  .split-heading__title .dynamic-block {
    min-width: min(450px, 100%);
  }
  .split-heading__content {
    padding-left: 40px;
  }
}
.intro-section {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin-top: 0;
  padding-top: 96px;
  background-color: var(--hero-bg);
  border-radius: 0 0 56px 56px;
  overflow: hidden;
  z-index: 1;
}
.intro-section .background-img {
  z-index: 0;
  pointer-events: none;
}
.intro-section img {
  object-position: bottom center;
}
.intro-section > .container {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.intro-section__inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  min-height: calc(100vh - 96px);
  padding: clamp(32px, 5vw, 80px) 0 clamp(80px, 7vw, 120px);
}
@media (max-width: 1800px) {
  .intro-section__inner {
    gap: 24px;
    padding: 32px 0 80px;
  }
}
@media (max-width: 1440px) {
  .intro-section__inner {
    gap: 32px;
    padding: 24px 0 64px;
  }
}
@media (max-width: 768px) {
  .intro-section__inner {
    gap: 24px;
    padding: 24px 0 64px;
  }
}

.intro-section__title h1 {
  margin: 0;
  display: flex;
  flex-direction: column;
  font-family: var(--title-font-family);
  text-transform: uppercase;
}
.intro-section__title .intro-section__heading-main {
  font-size: 220px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  background: linear-gradient(94.54deg, #ff008e 2.04%, #6100ff 98.63%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: start;
}
.intro-section__title .intro-section__heading-main .accent {
  font-size: 580px;
  line-height: 0.8;
}
@media (max-width: 1800px) {
  .intro-section__title .intro-section__heading-main {
    font-size: 160px;
  }
  .intro-section__title .intro-section__heading-main .accent {
    font-size: 440px;
  }
}
@media (max-width: 1440px) {
  .intro-section__title .intro-section__heading-main {
    font-size: 136px;
  }
  .intro-section__title .intro-section__heading-main .accent {
    font-size: 340px;
  }
}
@media (max-width: 992px) {
  .intro-section__title .intro-section__heading-main {
    font-size: clamp(36px, 14vw, 160px);
  }
  .intro-section__title .intro-section__heading-main .accent {
    font-size: 240px;
  }
}
@media (max-width: 768px) {
  .intro-section__title .intro-section__heading-main {
    font-size: clamp(32px, 12vw, 136px);
  }
  .intro-section__title .intro-section__heading-main .accent {
    font-size: clamp(240px, 10vw, 340px);
  }
}
@media (max-width: 580px) {
  .intro-section__title .intro-section__heading-main {
    font-size: clamp(28px, 10vw, 120px);
  }
  .intro-section__title .intro-section__heading-main .accent {
    font-size: clamp(180px, 8vw, 300px);
    line-height: 1;
    margin-top: -24px;
  }
}
.intro-section__title .intro-section__heading-sub {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  font-size: 76px;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0;
  text-align: left;
  color: #7E9AB5;
  text-shadow: 0px 4px 250px #FFFFFF, 2px 2px 0px rgba(255, 255, 255, 0.6980392157);
  margin-top: -184px;
  margin-left: 6px;
}
@media (max-width: 1800px) {
  .intro-section__title .intro-section__heading-sub {
    font-size: 60px;
    margin-top: -148px;
  }
}
@media (max-width: 1440px) {
  .intro-section__title .intro-section__heading-sub {
    font-size: 48px;
    margin-top: -120px;
  }
}
@media (max-width: 992px) {
  .intro-section__title .intro-section__heading-sub {
    font-size: clamp(24px, 10vw, 48px);
    margin-top: -80px;
  }
}
@media (max-width: 768px) {
  .intro-section__title .intro-section__heading-sub {
    font-size: clamp(20px, 6vw, 40px);
    margin-top: -34px;
  }
}

.intro-section__content {
  width: 100%;
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(249, 250, 250, 0.6980392157);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.0509803922);
  padding: 32px 36px;
  gap: 56px;
}
.intro-section__content .intro-section__content-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.intro-section__content h3 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--black);
  font-family: "Work Sans", sans-serif;
}
.intro-section__content p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  color: var(--black);
}
.intro-section__content .btn-arrow {
  gap: 16px;
  padding: 6px 6px 6px 48px;
  box-shadow: 0 8px 25px rgba(202, 42, 131, 0.4);
  font-size: 18px;
  letter-spacing: 0;
  font-weight: 700;
}
@media (max-width: 1440px) {
  .intro-section__content .btn-arrow {
    font-size: 14px;
  }
}
.intro-section__content .btn-arrow img {
  flex-shrink: 0;
  width: 57px;
  height: 57px;
  padding: 18px;
  border-radius: 50%;
  background-color: #ff33a4;
  box-sizing: border-box;
}
@media (max-width: 1440px) {
  .intro-section__content .btn-arrow img {
    width: 36px;
    height: 36px;
    padding: 12px;
  }
}
.intro-section__content .btn-arrow:hover {
  box-shadow: 0 8px 32px rgba(202, 42, 131, 0.5);
}
@media (max-width: 1800px) {
  .intro-section__content {
    margin-top: 40px;
    padding: 24px 32px;
    gap: 40px;
  }
  .intro-section__content h3 {
    font-size: 32px;
  }
  .intro-section__content p {
    font-size: 16px;
  }
  .intro-section__content .btn-arrow {
    font-size: 14px;
  }
}
@media (max-width: 1440px) {
  .intro-section__content {
    margin-top: 32px;
    padding: 16px 24px;
    gap: 32px;
  }
  .intro-section__content h3 {
    font-size: 28px;
  }
  .intro-section__content p {
    font-size: 14px;
  }
  .intro-section__content .btn-arrow {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .intro-section__content {
    margin-top: 24px;
    padding: 16px 20px;
    gap: 24px;
  }
  .intro-section__content h3 {
    font-size: 24px;
  }
  .intro-section__content p {
    font-size: 12px;
  }
  .intro-section__content .btn-arrow {
    font-size: 10px;
  }
}
@media (max-width: 580px) {
  .intro-section__content {
    flex-direction: column;
  }
  .intro-section__content .btn-arrow {
    margin: 0 0 0 auto;
  }
}

.how-it-works__section {
  padding: 150px 0 124px;
  position: relative;
}
@media (max-width: 1800px) {
  .how-it-works__section {
    padding: 120px 0 124px;
  }
}
@media (max-width: 1440px) {
  .how-it-works__section {
    padding: 60px 0 40px;
  }
}

.how-it-works__inner {
  margin-bottom: 64px;
}
@media (max-width: 1440px) {
  .how-it-works__inner {
    margin-bottom: 40px;
  }
}

.how-it-works__title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
}
.how-it-works__title h2 {
  margin: 0;
  font-family: var(--title-font-family);
  font-size: clamp(28px, 2.75vw, 48px);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: var(--black);
  border-right: 1px solid rgba(158, 158, 158, 0.5490196078);
  padding-right: 32px;
}
@media (max-width: 1440px) {
  .how-it-works__title h2 {
    font-size: clamp(20px, 1.2vw, 48px);
  }
}
@media (max-width: 768px) {
  .how-it-works__title h2 {
    border-right: none;
  }
}
.how-it-works__title p {
  margin: 0;
  flex-shrink: 0;
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--black);
}
@media (max-width: 1440px) {
  .how-it-works__title p {
    font-size: clamp(16px, 1.1vw, 24px);
  }
}
@media (max-width: 768px) {
  .how-it-works__title {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    max-width: none;
  }
  .how-it-works__title p {
    max-width: none;
  }
}

.how-it-works__steps {
  --card-width: 404px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  list-style: none;
  margin: 0;
}
@media (max-width: 1800px) {
  .how-it-works__steps {
    --card-width: 320px;
    padding: 0;
  }
}
@media (max-width: 1440px) {
  .how-it-works__steps {
    --card-width: 250px;
  }
}
.how-it-works__steps::before, .how-it-works__steps::after {
  content: "";
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 74px;
  height: 36px;
  background: no-repeat center/contain url("../img/how-it-works-arrow.svg");
  transform: translate(-50%, -50%);
  pointer-events: none;
}
@media (max-width: 1440px) {
  .how-it-works__steps::before, .how-it-works__steps::after {
    display: block;
  }
}
.how-it-works__steps::before {
  left: calc(var(--card-width) + (100% - var(--card-width) * 3) / 4);
}
.how-it-works__steps::after {
  left: calc(100% - var(--card-width) - (100% - var(--card-width) * 3) / 4);
}
.how-it-works__steps li {
  overflow: hidden;
  position: relative;
  flex: 0 1 var(--card-width);
  max-width: var(--card-width);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px;
  border-radius: 16px;
  background-color: var(--white);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  border: 1px solid #F7F0FF;
}
@media (max-width: 1800px) {
  .how-it-works__steps li {
    padding: 24px;
    border-radius: 16px;
  }
}
@media (max-width: 1440px) {
  .how-it-works__steps li {
    padding: 24px;
    border-radius: 16px;
  }
}
.how-it-works__steps li .number {
  position: absolute;
  top: -10px;
  right: -22px;
  z-index: 0;
  font-family: var(--main-font-family);
  font-size: clamp(72px, 11vw, 200px);
  font-weight: 600;
  line-height: 1;
  pointer-events: none;
  background: linear-gradient(180deg, #C9D6E4 0%, rgba(201, 214, 228, 0) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  opacity: 0.3;
}
@media (max-width: 1440px) {
  .how-it-works__steps li .number {
    right: -5px;
  }
}
.how-it-works__steps li .how-it-works__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  margin-bottom: 28px;
  border-radius: 50%;
  border: 1px solid #FF33A4;
}
@media (max-width: 1440px) {
  .how-it-works__steps li .how-it-works__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
  }
}
.how-it-works__steps li .how-it-works__icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
@media (max-width: 1440px) {
  .how-it-works__steps li .how-it-works__icon img {
    width: 20px;
    height: 20px;
  }
}
.how-it-works__steps li h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--black);
  letter-spacing: 0;
}
@media (max-width: 1800px) {
  .how-it-works__steps li h3 {
    font-size: 28px;
  }
}
@media (max-width: 1440px) {
  .how-it-works__steps li h3 {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .how-it-works__steps li h3 {
    font-size: 20px;
  }
}
.how-it-works__steps li p {
  font-family: "Montserrat", sans-serif;
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 20px;
  letter-spacing: 0;
  font-weight: 400;
  line-height: 1.6;
  color: #586C74;
}
@media (max-width: 1800px) {
  .how-it-works__steps li p {
    font-size: 18px;
  }
}
@media (max-width: 1440px) {
  .how-it-works__steps li p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .how-it-works__steps li p {
    font-size: 14px;
  }
}
@media (max-width: 992px) {
  .how-it-works__steps {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
  .how-it-works__steps::before, .how-it-works__steps::after {
    display: none;
  }
  .how-it-works__steps li {
    flex: 0 1 auto;
    max-width: 100%;
  }
  .how-it-works__steps li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    z-index: 2;
    width: 74px;
    height: 36px;
    background: no-repeat center/contain url("../img/how-it-works-arrow.svg");
    transform: translate(-50%, -50%) rotate(90deg);
    pointer-events: none;
    display: none;
  }
  .how-it-works__steps li > .number {
    right: -10px;
    font-size: clamp(72px, 40vw, 170px);
  }
}

.solutions__section {
  padding: 32px 0 140px;
  position: relative;
}
@media (max-width: 1800px) {
  .solutions__section {
    padding: 80px 0 140px;
  }
}
@media (max-width: 1440px) {
  .solutions__section {
    padding: 40px 0 100px;
  }
}

.solutions__inner {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}
@media (max-width: 1800px) {
  .solutions__inner {
    gap: 40px;
  }
}
@media (max-width: 1440px) {
  .solutions__inner {
    gap: 32px;
  }
}
@media (max-width: 992px) {
  .solutions__inner {
    flex-direction: column;
    gap: 52px;
  }
}

.solutions__title {
  min-width: 840px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}
.solutions__title h2 {
  width: 100%;
  margin: 0;
  font-family: var(--title-font-family);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.25;
  text-transform: uppercase;
  color: var(--black);
}
.solutions__title .btn-arrow {
  gap: 16px;
  padding: 6px 6px 6px 40px;
  border: 2px solid rgba(255, 98, 185, 0.5019607843);
  background-color: transparent;
  box-shadow: none;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
  color: var(--accent);
}
@media (max-width: 1440px) {
  .solutions__title .btn-arrow {
    font-size: 14px;
  }
}
.solutions__title .btn-arrow img {
  flex-shrink: 0;
  width: 57px;
  height: 57px;
  padding: 18px;
  border-radius: 50%;
  background-color: #ff33a4;
  box-sizing: border-box;
}
@media (max-width: 1440px) {
  .solutions__title .btn-arrow img {
    width: 36px;
    height: 36px;
    padding: 12px;
  }
}
.solutions__title .btn-arrow:hover {
  background-color: #ff33a4;
  color: #fff;
  box-shadow: none;
}
@media (max-width: 1800px) {
  .solutions__title {
    padding-left: 14px;
    padding-top: 4px;
    min-width: 700px;
  }
  .solutions__title h2 {
    font-size: 40px;
  }
  .solutions__title img {
    width: 48px;
    height: 48px;
    padding: 12px;
  }
}
@media (max-width: 1440px) {
  .solutions__title {
    min-width: 500px;
  }
  .solutions__title h2 {
    font-size: 32px;
  }
}
@media (max-width: 992px) {
  .solutions__title {
    min-width: 100%;
    gap: 16px;
  }
  .solutions__title h2 {
    max-width: none;
  }
}

.solutions__text p {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--black);
}
@media (max-width: 1800px) {
  .solutions__text p {
    font-size: 20px;
  }
}
@media (max-width: 1440px) {
  .solutions__text p {
    font-size: clamp(16px, 1.1vw, 24px);
  }
}

.main-slider__section {
  position: relative;
  width: 100%;
  background-color: #150031;
  overflow: hidden;
  padding: 120px 0;
}
.main-slider__section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  background: url("../img/main-slider-bg.png") center/cover no-repeat;
  opacity: 0.15;
  pointer-events: none;
  border-radius: inherit;
}
@media (max-width: 1440px) {
  .main-slider__section {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .main-slider__section {
    padding: 60px 15px;
  }
}

.main-slider__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 100%;
}
@media (max-width: 1440px) {
  .main-slider__content {
    gap: 32px;
  }
}

.main-slider__header {
  display: flex;
  align-items: center;
  gap: 48px;
  width: 100%;
  color: var(--white);
}
.main-slider__header h2 {
  margin: 0;
  font-family: var(--title-font-family);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  padding-right: 48px;
  border-right: 1px solid rgba(255, 255, 255, 0.4);
}
@media (max-width: 1440px) {
  .main-slider__header h2 {
    font-size: clamp(24px, 1.6vw, 40px);
  }
}
@media (max-width: 768px) {
  .main-slider__header h2 {
    border-right: 0;
    padding-right: 0;
  }
}
.main-slider__header p {
  margin: 0;
  font-size: 28px;
  line-height: 1.28;
  font-weight: 500;
}
@media (max-width: 1440px) {
  .main-slider__header p {
    font-size: clamp(18px, 1.2vw, 24px);
  }
}
@media (max-width: 768px) {
  .main-slider__header {
    gap: 24px;
  }
  .main-slider__header h2 {
    font-size: clamp(28px, 6vw, 40px);
  }
  .main-slider__header p {
    font-size: 18px;
  }
}
@media (max-width: 1440px) {
  .main-slider__header {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .main-slider__header {
    flex-direction: column;
  }
}

.main-slider__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
}
@media (max-width: 768px) {
  .main-slider__viewport {
    width: calc(100% + 60px);
    margin-left: -30px;
  }
}

.main-slider {
  position: relative;
}
.main-slider:not(.slick-initialized) {
  display: flex;
}
.main-slider:not(.slick-initialized) .main-slider__item {
  flex: 1 1 0;
}
.main-slider .slick-track {
  display: flex;
  align-items: stretch;
}
.main-slider .slick-slide {
  height: auto;
}
.main-slider .slick-slide > div {
  height: 100%;
}

.main-slider__item {
  width: 100%;
  height: auto;
  padding: 0 18px;
}
@media (max-width: 1800px) {
  .main-slider__item {
    padding: 0 12px;
  }
}
@media (max-width: 768px) {
  .main-slider__item {
    padding: 0 8px;
  }
}

.main-slider__item-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  min-height: 397px;
  padding: 32px 48px;
  position: relative;
  background: url("../img/main-slider-card.svg") center/100% 100% no-repeat;
}
@media (max-width: 1800px) {
  .main-slider__item-inner {
    padding: 24px;
    gap: 24px;
    min-height: 280px;
  }
}
.main-slider__item-inner .main-slider__link {
  margin-top: auto;
}
@media (max-width: 1440px) {
  .main-slider__item-inner .main-slider__link {
    margin-top: 20px;
  }
}
@media (max-width: 992px) {
  .main-slider__item-inner {
    gap: 12px;
  }
}

.main-slider__item h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.28;
  color: #fff6f6;
  letter-spacing: 0;
  margin-top: 8px;
}
@media (max-width: 1800px) {
  .main-slider__item h3 {
    font-size: 24px;
  }
}
@media (max-width: 992px) {
  .main-slider__item h3 {
    font-size: 20px;
  }
}

.main-slider__item p {
  font-size: 20px;
  color: #FFF6F6;
  line-height: 1.6;
  letter-spacing: 0;
  font-weight: 400;
}
@media (max-width: 1800px) {
  .main-slider__item p {
    font-size: 18px;
  }
}
@media (max-width: 992px) {
  .main-slider__item p {
    font-size: 16px;
  }
}

.main-slider__nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.main-slider__nav.is-hidden {
  display: none;
}

.main-slider__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.3s;
}
.main-slider__arrow img {
  width: 24px;
  height: 24px;
}
.main-slider__arrow:hover:not(:disabled) {
  opacity: 0.75;
}
.main-slider__arrow:disabled, .main-slider__arrow.slick-disabled {
  opacity: 0.35;
  cursor: default;
}

.field-system__section {
  padding: 250px 0;
}

.split-heading-section {
  padding: clamp(80px, 10vw, 170px) 0 clamp(80px, 10vw, 170px);
  position: relative;
  background-color: var(--hero-bg);
}
@media (max-width: 1440px) {
  .split-heading-section {
    padding: 40px 0;
  }
}
.split-heading-section > .container {
  max-width: 1600px;
}
@media (max-width: 1800px) {
  .split-heading-section > .container {
    max-width: 1280px;
  }
}
@media (max-width: 768px) {
  .split-heading-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.split-heading-section--spacing-bottom-lg {
  padding-bottom: clamp(120px, 14.9vw, 286px);
}
@media (max-width: 768px) {
  .split-heading-section--spacing-bottom-lg {
    padding-bottom: 60px;
  }
}
.split-heading-section--bg-blue {
  background-color: #f0f7ff;
}
.split-heading-section--hero {
  margin-top: -96px;
  padding-top: calc(96px + clamp(120px, 12vw, 204px));
  padding-bottom: clamp(80px, 6.25vw, 120px);
  min-height: 100vh;
  border-radius: 0 0 56px 56px;
  overflow: hidden;
  z-index: 1;
}
.split-heading-section--hero .background-img {
  z-index: 0;
  pointer-events: none;
}
.split-heading-section--hero .background-img img {
  object-fit: cover;
  object-position: center top;
  opacity: 0.15;
}
.split-heading-section--hero > .container {
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .split-heading-section--hero {
    min-height: auto;
    padding-top: 176px;
  }
}
@media (max-width: 768px) {
  .split-heading-section--hero {
    border-radius: 0 0 32px 32px;
    padding-top: 156px;
    padding-bottom: 60px;
  }
}

.field-content__section {
  padding: 40px 0 140px;
  position: relative;
}
.field-content__section .field-content__wrapper {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.field-content__section.horizontal {
  padding: 140px 0;
}
.field-content__section.horizontal .field-content__wrapper {
  flex-direction: row;
  display: flex;
  gap: 80px;
}
.field-content__section.horizontal .field-content__wrapper .field-content__title h2 {
  font-size: 64px;
  line-height: 1.18;
  letter-spacing: -0.05em;
  font-weight: 700;
}
.field-content__section.horizontal .field-content__wrapper .field-content__title h2 strong {
  font-size: 100px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.05em;
}
.field-content__section.horizontal .field-content__wrapper .field-content__text {
  width: 100%;
  max-width: 720px;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 1440px) {
  .field-content__section {
    padding: 40px 0 100px;
  }
  .field-content__section .field-content__wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .field-content__section.horizontal {
    padding: 100px 0;
  }
  .field-content__section.horizontal .field-content__wrapper {
    gap: 40px;
  }
  .field-content__section.horizontal .field-content__wrapper .field-content__title h2 {
    font-size: 64px;
    line-height: 1.18;
    letter-spacing: -0.05em;
    font-weight: 700;
  }
  .field-content__section.horizontal .field-content__wrapper .field-content__title h2 strong {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.05em;
  }
  .field-content__section .field-content__text {
    gap: 32px;
  }
  .field-content__section .field-content__text p {
    font-size: 18px;
  }
}
@media (max-width: 992px) {
  .field-content__section.horizontal {
    padding: 60px 0;
  }
  .field-content__section.horizontal .field-content__wrapper {
    gap: 20px;
    flex-direction: column;
  }
  .field-content__section.horizontal .field-content__wrapper .field-content__title h2 {
    font-size: 48px;
    line-height: 1.18;
    letter-spacing: -0.05em;
    font-weight: 700;
  }
  .field-content__section.horizontal .field-content__wrapper .field-content__title h2 strong {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.05em;
  }
}

.field-content__title h2 {
  margin: 0;
  font-family: var(--title-font-family);
  font-size: 100px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: var(--black);
}
.field-content__title h2 strong {
  background: var(--title-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.05em;
}
@media (max-width: 1440px) {
  .field-content__title h2 {
    font-size: 64px;
    line-height: 1.18;
    letter-spacing: -0.05em;
    font-weight: 700;
  }
}
@media (max-width: 992px) {
  .field-content__title h2 {
    font-size: 48px;
    line-height: 1.18;
    letter-spacing: -0.05em;
    font-weight: 700;
  }
}

.field-content__text {
  display: flex;
  flex-direction: row;
  gap: 80px;
}
.field-content__text p {
  max-width: 1377px;
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--black);
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 1440px) {
  .field-content__text {
    gap: 32px;
  }
  .field-content__text p {
    font-size: 18px;
  }
}
@media (max-width: 992px) {
  .field-content__text {
    flex-direction: column;
    gap: 32px;
  }
  .field-content__text p {
    font-size: 18px;
  }
}

.stand-on__section {
  position: relative;
  width: 100%;
  background-color: #150031;
  overflow: hidden;
  padding: 102px 0 90px;
}
.stand-on__section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
  background: url("../img/main-slider-bg.png") center top/cover no-repeat;
  opacity: 0.15;
  pointer-events: none;
  border-radius: inherit;
}
@media (max-width: 1440px) {
  .stand-on__section {
    padding: 80px 0;
  }
}

.stand-on__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
}
@media (max-width: 1440px) {
  .stand-on__content {
    gap: 40px;
  }
}
@media (max-width: 992px) {
  .stand-on__content {
    flex-direction: column;
    gap: 40px;
  }
}

.stand-on__title {
  margin: 0;
  font-family: var(--title-font-family);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.25;
  text-transform: uppercase;
  color: var(--white);
}
@media (max-width: 1600px) {
  .stand-on__title {
    font-size: 40px;
    line-height: 1.3;
  }
}
.stand-on__cards {
  display: flex;
  gap: 20px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: center;
  width: 100%;
  max-width: 838px;
  flex-wrap: wrap;
}
@media (max-width: 1440px) {
  .stand-on__cards {
    gap: 16px 10px;
  }
}

.stand-on__card {
  --stand-on-tag-fill: linear-gradient(
    157deg,
    #2d0aa9 1.49%,
    rgba(148, 24, 190, 0.5) 103%
  );
  --stand-on-tag-border: linear-gradient(90deg, #090edb 0%, #e73dc4 100%);
  flex: 0 0 auto;
  width: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 28px 32px;
  border: 2px solid transparent;
  width: calc(50% - 10px);
  border-radius: 32px;
  gap: 4px;
  background: var(--stand-on-tag-fill) padding-box, var(--stand-on-tag-border) border-box;
  backdrop-filter: blur(2.5px);
  box-sizing: border-box;
}
.stand-on__card strong {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  font-weight: 500;
  color: #eef5ff;
  white-space: nowrap;
  text-transform: uppercase;
  opacity: 0.5;
}
.stand-on__card p {
  margin: 0;
  font-weight: 700;
  line-height: 1;
  font-size: 32px;
  color: #fff;
  text-align: center;
  text-transform: capitalize;
}
.stand-on__card:last-child {
  width: 100%;
}
@media (max-width: 1600px) {
  .stand-on__card {
    padding: 24px 28px;
  }
  .stand-on__card strong {
    font-size: 18px;
  }
  .stand-on__card p {
    font-size: 28px;
  }
}
@media (max-width: 1440px) {
  .stand-on__card {
    width: 100%;
    padding: 20px 24px;
  }
  .stand-on__card strong {
    font-size: 12px;
  }
  .stand-on__card p {
    font-size: 20px;
  }
}

.fieldwork__section {
  padding: 100px 0;
  background-color: #f0f7ff;
}
@media (max-width: 1440px) {
  .fieldwork__section {
    padding: 60px 0;
  }
}

.fieldwork__inner {
  display: flex;
  flex-direction: column;
  gap: 56px;
  width: 100%;
}

.fieldwork__header {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 100%;
}
@media (max-width: 1440px) {
  .fieldwork__header {
    gap: 24px;
  }
}

.fieldwork__title {
  margin: 0;
  font-family: var(--title-font-family);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--black);
}
@media (max-width: 1440px) {
  .fieldwork__title {
    font-size: clamp(24px, 1.6vw, 40px);
  }
}

.fieldwork__subtitle {
  margin: 0;
  max-width: 100%;
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 500;
  line-height: 1.5;
  color: var(--black);
}

.fieldwork__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}

.fieldwork__item {
  --fieldwork-meta-color: #4700ff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
  padding: 50px 80px;
  border-radius: 40px;
  background-color: var(--white);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.05);
  color: var(--black);
  text-decoration: none;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.fieldwork__item:hover {
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.08);
}
.fieldwork__item--article {
  --fieldwork-meta-color: #4700ff;
}
.fieldwork__item--standard {
  --fieldwork-meta-color: #ff008e;
}
.fieldwork__item--framework {
  --fieldwork-meta-color: #0022ff;
}
@media (max-width: 1600px) {
  .fieldwork__item {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .fieldwork__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 32px 24px;
    border-radius: 24px;
  }
}

.fieldwork__content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
  max-width: 946px;
}
@media (max-width: 1440px) {
  .fieldwork__content {
    gap: 16px;
  }
}

.fieldwork__item-title {
  margin: 0;
  font-family: "Urbanist", sans-serif;
  font-size: clamp(24px, 2.5vw, 40px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--black);
}
@media (max-width: 1440px) {
  .fieldwork__item-title {
    font-size: clamp(20px, 1.2vw, 40px);
  }
}

.fieldwork__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-family: "Urbanist", sans-serif;
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.006em;
  text-transform: uppercase;
  color: var(--fieldwork-meta-color);
}
@media (max-width: 1440px) {
  .fieldwork__meta {
    font-size: clamp(16px, 1.2vw, 24px);
  }
}

.fieldwork__separator {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: currentColor;
}

.fieldwork__arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
}
.fieldwork__arrow img {
  width: 70px;
  height: 70px;
  max-width: none;
}
@media (max-width: 1440px) {
  .fieldwork__arrow img {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 992px) {
  .fieldwork__item-title {
    white-space: normal;
  }
}
.book-a-call__section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: linear-gradient(180deg, #03020c 0%, #15003b 100%);
}
@media (max-width: 1600px) {
  .book-a-call__section {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .book-a-call__section {
    padding: 40px 0;
  }
}

.book-a-call__decor {
  position: absolute;
  left: calc(50% + clamp(180px, 28vw, 553px));
  top: calc(50% + clamp(60px, 10vw, 210px));
  z-index: 0;
  width: clamp(320px, 36vw, 586px);
  height: clamp(380px, 42vw, 669px);
  transform: translate(-50%, -50%) scaleY(-1) rotate(180deg);
  background: url("../img/book-a-call-decor.svg") center/contain no-repeat;
  opacity: 0.35;
  pointer-events: none;
}
@media (max-width: 992px) {
  .book-a-call__decor {
    left: calc(50% + clamp(120px, 18vw, 320px));
    top: calc(50% + clamp(40px, 8vw, 140px));
    opacity: 0.25;
  }
}
@media (max-width: 768px) {
  .book-a-call__decor {
    display: none;
  }
}

.book-a-call__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 96px;
  width: 100%;
}
@media (max-width: 1200px) {
  .book-a-call__inner {
    gap: 48px;
  }
}
@media (max-width: 992px) {
  .book-a-call__inner {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 40px;
  }
}

.book-a-call__image {
  flex-shrink: 0;
  align-self: center;
  height: 524px;
  max-width: 488px;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: start;
}
.book-a-call__image:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 38px;
  transform: translateX(-50%);
  width: calc(100% + 64px);
  height: 74px;
  background: #120134;
  filter: blur(20px);
  z-index: 2;
}
.book-a-call__image img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center bottom;
  position: relative;
  bottom: 64px;
}
@media (max-width: 992px) {
  .book-a-call__image {
    align-self: center;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .book-a-call__image {
    width: 100%;
    max-width: 300px;
    height: 360px;
  }
}

.book-a-call__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  max-width: 890px;
}
@media (max-width: 992px) {
  .book-a-call__content {
    max-width: none;
    padding-bottom: 0;
    align-items: center;
    text-align: center;
  }
}

.book-a-call__heading {
  display: flex;
  flex-direction: column;
}

.book-a-call__label {
  margin: 0;
  font-family: var(--title-font-family);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--white);
}
@media (max-width: 1440px) {
  .book-a-call__label {
    font-size: clamp(24px, 1.6vw, 40px);
  }
}

.book-a-call__name-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .book-a-call__name-row {
    justify-content: center;
  }
}

.book-a-call__name {
  margin: 0;
  font-family: var(--title-font-family);
  font-size: 100px;
  font-weight: 800;
  line-height: 1.12;
  text-transform: uppercase;
  background: linear-gradient(139.15deg, #f01790 23.92%, #571bb8 68.57%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.05em;
}
@media (max-width: 1600px) {
  .book-a-call__name {
    font-size: 74px;
  }
}
@media (max-width: 1440px) {
  .book-a-call__name {
    font-size: 44px;
  }
}

.book-a-call__social {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}
.book-a-call__social img {
  width: 100%;
  height: 100%;
  max-width: none;
}
@media (max-width: 1440px) {
  .book-a-call__social {
    width: 36px;
    height: 36px;
  }
}

.book-a-call__text {
  margin: 0;
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 500;
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 48px;
}
@media (max-width: 1800px) {
  .book-a-call__text {
    margin-bottom: 40px;
    font-size: 18px;
  }
}
@media (max-width: 1440px) {
  .book-a-call__text {
    font-size: 16px;
    margin-bottom: 32px;
  }
}
@media (max-width: 768px) {
  .book-a-call__text {
    font-size: 14px;
    margin-bottom: 24px;
  }
}

.book-a-call__btn {
  gap: 16px;
  padding: 6px 6px 6px 48px;
  border: 0;
  background-color: var(--accent);
  box-shadow: 0 8px 25px rgba(202, 42, 131, 0.4);
  font-size: 18px;
  color: var(--white);
}
@media (max-width: 1440px) {
  .book-a-call__btn {
    font-size: clamp(14px, 1.2vw, 16px);
  }
}
.book-a-call__btn img {
  flex-shrink: 0;
  width: 57px;
  height: 57px;
  padding: 18px;
  border-radius: 50%;
  background-color: #ff33a4;
  box-sizing: border-box;
}
@media (max-width: 1440px) {
  .book-a-call__btn img {
    width: 36px;
    height: 36px;
    padding: 12px;
  }
}
.book-a-call__btn:hover {
  background-color: #ff33a4;
  color: var(--white);
  box-shadow: 0 8px 32px rgba(202, 42, 131, 0.5);
}

.logo-title__section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 0 0;
  background-color: #03020c;
  overflow: hidden;
  margin-bottom: -90px;
}
@media (max-width: 1440px) {
  .logo-title__section {
    padding: 40px 0 0;
    margin-bottom: -60px;
  }
}
@media (max-width: 768px) {
  .logo-title__section {
    margin-bottom: -40px;
  }
}

.logo-title__word {
  margin: 0;
  width: 100%;
  min-height: clamp(80px, 14.7vw, 283px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Urbanist", sans-serif;
  font-size: clamp(72px, 23vw, 434px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  word-break: break-word;
  background: linear-gradient(180deg, #15003b 0%, #03020c 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}
@media (max-width: 1800px) {
  .logo-title__word {
    font-size: clamp(72px, 19vw, 434px);
  }
}
@media (max-width: 1600px) {
  .logo-title__word {
    font-size: clamp(72px, 20vw, 434px);
  }
}
@media (max-width: 1440px) {
  .logo-title__word {
    font-size: clamp(72px, 19vw, 434px);
  }
}
@media (max-width: 1280px) {
  .logo-title__word {
    font-size: clamp(72px, 21vw, 434px);
  }
}

.contacts__section {
  padding: 48px 0 86px;
  padding-top: 144px;
  height: 100%;
  min-height: calc(100vh - 470px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contacts__inner {
  display: flex;
  align-items: center;
  gap: 96px;
}

.contacts__text {
  display: flex;
  flex-direction: column;
}
.contacts__text h1 {
  font-weight: 800;
  font-weight: "Work Sans", sans-serif;
  font-size: 100px;
  line-height: 1.1;
  letter-spacing: 0;
  margin-bottom: 24px;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(94.54deg, #ff008e 2.04%, #6100ff 98.63%);
  background-clip: text;
  -webkit-background-clip: text;
}
.contacts__text p {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.5;
  color: var(--black);
  margin-bottom: 48px;
}
.contacts__text ul {
  padding-left: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contacts__text ul li a {
  border: 2px solid #FFFFFF;
  background: #F9FBFD;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 24px;
  border-radius: 16px;
  max-width: 400px;
  width: 100%;
  transition: all 0.3s ease;
}
.contacts__text ul li a:hover {
  background: #E6E9ED;
}
.contacts__text ul li a .contact-icon {
  width: 64px;
  min-width: 64px;
  height: 64px;
}
.contacts__text ul li a .contact-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.contacts__text ul li a .contact-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contacts__text ul li a .contact-text strong {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  text-transform: uppercase;
  opacity: 0.5;
  color: var(--black);
  font-family: "Montserrat", sans-serif;
}
.contacts__text ul li a .contact-text p {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.125;
  color: #131222;
  font-family: "Montserrat", sans-serif;
  margin: 0;
}

.contacts__form {
  min-width: 783px;
  width: 100%;
  border-radius: 24px;
  background: #F9FBFD;
  border: 2px solid #FFFFFF;
  box-shadow: 0px 30px 50px 0px rgba(0, 0, 0, 0.0509803922);
  padding: 50px 62px;
}
.contacts__form input[type=submit] {
  margin-top: 32px;
  height: 68px;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  padding: 6px 80px 6px 48px;
  background-color: var(--accent);
  background-image: url("../img/arrow-right.svg"), radial-gradient(circle at calc(100% - 34px) 50%, #FF33A4 0 28px, transparent 29px);
  background-repeat: no-repeat, no-repeat;
  background-position: right 22px center, center;
  background-size: 24px 24px, auto;
}
.contacts__form input[type=submit]:hover {
  background-color: var(--accent);
  box-shadow: 0 8px 25px rgba(202, 42, 131, 0.35);
}
@media (max-width: 1440px) {
  .contacts__form input[type=submit] {
    padding: 6px 60px 6px 32px;
    font-size: 16px;
    height: 56px;
    background-image: url(../img/arrow-right.svg), radial-gradient(circle at calc(100% - 27px) 50%, #FF33A4 0 23px, transparent 20px);
    background-position: right 13px center, center;
  }
}
.contacts__form form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contacts__form h3 {
  font-family: "Work Sans", sans-serif;
  font-weight: 800;
  font-size: 32px;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 12px;
  text-align: center;
}
.contacts__form p {
  font-family: Montserrat;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0%;
  text-align: center;
  color: #131222;
  opacity: 0.5;
  margin-bottom: 32px;
}

.form__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form__item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.form__item label {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.75;
  color: #131222;
  opacity: 0.7;
  margin: 0;
}
.form__item label span {
  font-size: 12px;
  color: #737373;
}
.form__item.double {
  width: calc(50% - 8px);
}
.form__item input, .form__item textarea {
  width: 100%;
  height: 56px;
  border-radius: 12px;
  border: 1px solid #DEDEDE;
  background: #fff;
  padding: 14px 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.75;
  color: #131222;
}
.form__item input::placeholder, .form__item textarea::placeholder {
  color: #B8B8B8;
}
.form__item textarea {
  height: 102px;
  resize: none;
}
.form__item.checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  margin-top: 0px;
}
.form__item.checkbox .wpcf7-list-item > label {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  margin-top: 0px;
}
.form__item.checkbox input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  min-width: 20px;
  height: 20px;
  margin: 0;
  padding: 0;
  border: 1px solid #F11790;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  position: relative;
  transition: background 0.2s ease;
}
.form__item.checkbox input[type=checkbox]:checked {
  background: #F11790;
}
.form__item.checkbox input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -50%) rotate(45deg);
}
.form__item.checkbox label {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  opacity: 1;
  cursor: pointer;
}
.form__item.checkbox label a {
  color: #F11790;
  text-decoration: underline;
}

.custom-select {
  position: relative;
  width: 100%;
}
.custom-select__native {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.custom-select__trigger {
  width: 100%;
  height: 56px;
  border-radius: 12px;
  border: 1px solid #DEDEDE;
  background: #fff;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.custom-select__value {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.75;
  color: #131222;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.custom-select__value--placeholder {
  color: #B8B8B8;
}
.custom-select__arrow {
  width: 8px;
  min-width: 8px;
  height: 8px;
  border-right: 1px solid #8A97C6;
  border-bottom: 1px solid #8A97C6;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
  right: 6px;
  position: relative;
}
.custom-select__options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 10;
  list-style: none;
  margin: 0;
  padding: 6px;
  background: #fff;
  border: 1px solid #DEDEDE;
  border-radius: 12px;
  box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.1019607843);
  max-height: 240px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.custom-select__option {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.75;
  color: #131222;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.custom-select__option:hover {
  background: #F9FBFD;
}
.custom-select__option.is-selected {
  background: #F9FBFD;
  color: #ff008e;
}
.custom-select.is-open .custom-select__trigger {
  border-color: #131222;
}
.custom-select.is-open .custom-select__arrow {
  transform: rotate(-135deg) translateY(2px);
}
.custom-select.is-open .custom-select__options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 1600px) {
  .contacts__inner {
    gap: 64px;
  }
  .contacts__text h1 {
    font-size: 80px;
  }
  .contacts__text p {
    font-size: 20px;
    margin-bottom: 40px;
  }
  .contacts__form {
    min-width: 640px;
    padding: 44px 48px;
  }
}
@media (max-width: 1440px) {
  .contacts__inner {
    gap: 48px;
  }
  .contacts__text h1 {
    font-size: 64px;
  }
  .contacts__text p {
    font-size: 18px;
    margin-bottom: 32px;
  }
  .contacts__text ul li a .contact-text p {
    font-size: 26px;
  }
  .contacts__form {
    min-width: 560px;
    padding: 40px;
  }
  .contacts__form h3 {
    font-size: 28px;
  }
  .form__item input,
  .form__item textarea {
    height: 50px;
    font-size: 15px;
  }
  .form__item textarea {
    height: 92px;
  }
  .custom-select__trigger {
    height: 50px;
  }
  .custom-select__value {
    font-size: 15px;
  }
}
@media (max-width: 992px) {
  .contacts__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }
  .contacts__text h1 {
    font-size: 56px;
  }
  .contacts__text ul li a {
    max-width: none;
  }
  .contacts__form {
    min-width: 0;
    width: 100%;
  }
  .form__item input,
  .form__item textarea {
    height: 48px;
    border-radius: 8px;
  }
  .form__item textarea {
    height: 88px;
  }
  .custom-select__trigger {
    height: 48px;
  }
}
@media (max-width: 768px) {
  .contacts__section {
    padding: 80px 0 56px;
  }
  .contacts__inner {
    gap: 32px;
  }
  .contacts__text h1 {
    font-size: 40px;
    margin-bottom: 16px;
  }
  .contacts__text p {
    font-size: 16px;
    margin-bottom: 24px;
  }
  .contacts__text ul li a .contact-text p {
    font-size: 22px;
  }
  .contacts__form {
    padding: 24px 20px;
  }
  .contacts__form h3 {
    font-size: 24px;
  }
  .contacts__form p {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .form__item.double {
    width: 100%;
  }
  .form__item input,
  .form__item textarea {
    height: 44px;
    font-size: 14px;
  }
  .form__item textarea {
    height: 88px;
  }
  .custom-select__trigger {
    height: 44px;
  }
  .custom-select__value {
    font-size: 14px;
  }
}
.industry__section {
  background: #F0F7FF;
  padding: 140px 0;
  border-radius: 0 0 56px 56px;
}
@media (max-width: 1440px) {
  .industry__section {
    padding: 60px 0;
  }
}
@media (max-width: 992px) {
  .industry__section {
    padding: 40px 0;
  }
}
@media (max-width: 768px) {
  .industry__section {
    padding: 20px 0;
  }
}

.industry__inner {
  display: flex;
  flex-direction: column;
}
.industry__inner > p {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0;
  color: #000000;
  margin-bottom: 60px;
}
@media (max-width: 1440px) {
  .industry__inner > p {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 1440px) {
  .industry__inner {
    padding: 60px 0;
  }
  .industry__inner > p {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 992px) {
  .industry__inner {
    padding: 40px 0;
  }
  .industry__inner > p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .industry__inner {
    padding: 20px 0;
  }
}

.industry-title {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}
.industry-title h2 {
  font-family: Work Sans;
  font-weight: 800;
  font-size: 100px;
  line-height: 1.12;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: #000000;
  width: auto;
}
@media (max-width: 1800px) {
  .industry-title h2 {
    font-size: 80px;
    line-height: 88px;
  }
}
@media (max-width: 1440px) {
  .industry-title h2 {
    font-size: 64px;
    line-height: 72px;
  }
}
.industry-title p {
  margin-top: 20px;
  font-weight: 600;
  font-size: 40px;
  line-height: 1.3;
  letter-spacing: 0;
  color: #000000;
}
@media (max-width: 1440px) {
  .industry-title p {
    font-size: 24px;
    line-height: 32px;
  }
}
@media (max-width: 1440px) {
  .industry-title {
    gap: 16px;
  }
  .industry-title h2 {
    font-size: 64px;
    line-height: 72px;
  }
  .industry-title p {
    font-size: 24px;
    line-height: 32px;
  }
}
@media (max-width: 992px) {
  .industry-title {
    gap: 12px;
    flex-direction: column;
  }
  .industry-title h2 {
    font-size: 48px;
    line-height: 56px;
  }
  .industry-title p {
    font-size: 18px;
    line-height: 24px;
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .industry-title {
    gap: 8px;
  }
  .industry-title h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .industry-title p {
    font-size: 16px;
    line-height: 24px;
  }
}

.industry-list {
  display: flex;
  gap: 16px;
  width: 100%;
  flex-wrap: wrap;
}
.industry-list li {
  background: #FFFFFF;
  border: 2px solid #FFFFFF;
  box-shadow: 0px 12px 60px 0px rgba(18, 43, 70, 0.0196078431), 0px 4px 12px 0px rgba(18, 43, 70, 0.0117647059);
  border-radius: 24px;
  padding: 50px 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.industry-list li:nth-child(1n) {
  width: calc(60% - 16px);
}
.industry-list li:nth-child(2n), .industry-list li:nth-child(3n) {
  width: calc(40% - 16px);
}
.industry-list li:nth-child(4n) {
  width: calc(60% - 16px);
}
.industry-list li h3 {
  font-family: Montserrat;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.28;
  letter-spacing: 0;
  color: #000000;
}
.industry-list li p {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0;
  color: #586C74;
}
@media (max-width: 1440px) {
  .industry-list {
    gap: 16px;
  }
  .industry-list li {
    padding: 40px 32px;
    gap: 8px;
  }
  .industry-list li h3 {
    font-size: 24px;
    line-height: 32px;
  }
  .industry-list li p {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 992px) {
  .industry-list {
    gap: 12px;
  }
  .industry-list li:nth-child(1n) {
    width: calc(60% - 8px);
  }
  .industry-list li:nth-child(2n), .industry-list li:nth-child(3n) {
    width: calc(40% - 8px);
  }
  .industry-list li:nth-child(4n) {
    width: calc(60% - 8px);
  }
  .industry-list li {
    padding: 32px 24px;
    gap: 8px;
  }
  .industry-list li h3 {
    font-size: 20px;
    line-height: 28px;
  }
  .industry-list li p {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 768px) {
  .industry-list {
    gap: 8px;
  }
  .industry-list li {
    padding: 24px 16px;
    gap: 8px;
  }
  .industry-list li:nth-child(1n) {
    width: calc(60% - 4px);
  }
  .industry-list li:nth-child(2n), .industry-list li:nth-child(3n) {
    width: calc(40% - 4px);
  }
  .industry-list li:nth-child(4n) {
    width: calc(60% - 4px);
  }
  .industry-list li h3 {
    font-size: 18px;
    line-height: 24px;
  }
  .industry-list li p {
    font-size: 12px;
    line-height: 18px;
  }
}
/*# sourceMappingURL=style.min.css.map */
