*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: normal;
  color: #fff;
  background: #171b1f;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
}

.center {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.inner-btn {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 142px;
  min-height: 38px;
  padding: 0 24px;
  border-radius: 100px;
  background-color: #ffb600;
  color: #fff;
  box-shadow: 7px 13px 50px 0px rgba(255, 72, 182, 0.6);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 600;
  transition: background 0.4s ease, -webkit-transform 0.3s ease;
  transition: background 0.4s ease, transform 0.3s ease;
  transition: background 0.4s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  cursor: pointer !important;
}

.inner-btn:hover {
  background-color: #ff48b6;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 100px;
  background: transparent;
  transition: opacity 0.35s ease, -webkit-transform 0.35s ease;
  transition: transform 0.35s ease, opacity 0.35s ease;
  transition: transform 0.35s ease, opacity 0.35s ease, -webkit-transform 0.35s ease;
  padding: 30px 40px;
}

#js-header[data-state="hidden"] {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.header__inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header__logo {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.header__logo img {
  height: 32px;
  width: 32px;
}

.header__logo-text--bold {
  font-weight: 700;
  margin-left: 5px;
}

.header__nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.header__link {
  padding: 10px 20px;
  color: #fff;
  transition: color 0.3s ease;
}

.header__link:hover {
  color: #ffb600;
}

.header__link[data-active] {
  color: #ff48b6;
}

@media (max-width: 767px) {
  .header__inner {
    -ms-flex-pack: center;
    justify-content: center;
  }

  .header__nav {
    display: none;
  }
}

/* ── Section backgrounds ── */
.section {
  position: relative;
}

.section--hero {
  padding: 270px 0 150px;
  background:
    radial-gradient(circle at 25% 80%, rgba(255, 72, 182, 0.31) 0%, rgba(255, 72, 182, 0) 10%),
    radial-gradient(circle at 3% 66%, rgba(104, 93, 209, 0.3) 0%, rgba(104, 93, 209, 0) 13%),
    radial-gradient(circle at 84% 62%, rgba(255, 72, 182, 0.2) 0%, rgba(255, 72, 182, 0) 12%);
}

.section--about {
  padding: 80px 0 60px;
}

.section--services {
  padding: 50px 0;
}

.section--values {
  padding: 60px 0;
}

.section--process {
  padding: 80px 0 220px;
}

.section--contact {
  padding: 40px 0 80px;
  background:
    radial-gradient(circle at 0% 63%, rgba(104, 93, 209, 0.2) 0%, rgba(104, 93, 209, 0) 16%),
    radial-gradient(circle at 79% 85%, rgba(255, 72, 182, 0.2) 0%, rgba(255, 72, 182, 0) 19%),
    #121212;
}

.section--inner,
.section--legal {
  padding: 270px 0 100px;
  min-height: calc(100dvh - 85px);
  background:
    radial-gradient(circle at 25% 80%, rgba(255, 72, 182, 0.31) 0%, rgba(255, 72, 182, 0) 10%),
    radial-gradient(circle at 3% 66%, rgba(104, 93, 209, 0.3) 0%, rgba(104, 93, 209, 0) 13%),
    radial-gradient(circle at 84% 62%, rgba(255, 72, 182, 0.2) 0%, rgba(255, 72, 182, 0) 12%);
}

/* ── Decorative background ── */
.bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.bg-line,
.bg-line-2,
.bg-line-3 {
  position: absolute;
  pointer-events: none;
}

.bg-line-2 {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  -webkit-filter: blur(60px);
  filter: blur(60px);
  opacity: 0.5;
}

.bg-orb--pink {
  background: rgba(255, 72, 182, 0.35);
}

.bg-orb--purple {
  background: rgba(104, 93, 209, 0.4);
}

.bg-orb--gold {
  background: rgba(255, 182, 0, 0.2);
}

.section--about .bg-orb--pink {
  width: 500px;
  height: 500px;
}

.section--about .bg-orb--purple {
  width: 300px;
  height: 300px;
}

.section--services .bg-orb--pink {
  width: 200px;
  height: 200px;
}

.section--process .bg-orb--purple {
  width: 800px;
  height: 600px;
}

.section--process .bg-orb--gold {
  width: 600px;
  height: 600px;
}

.bg-star {
  position: absolute;
  width: 20px;
  height: 20px;
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  transition: none;
}

[data-star][data-state="visible"] {
  -webkit-animation: starPop 1.2s cubic-bezier(0.55, 0.055, 0.675, 0.19) forwards;
  animation: starPop 1.2s cubic-bezier(0.55, 0.055, 0.675, 0.19) forwards;
}

@-webkit-keyframes starPop {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  30% {
    opacity: 1;
    -webkit-transform: scale(1.8);
    transform: scale(1.8);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
  }

  70% {
    opacity: 1;
    -webkit-transform: scale(1.7);
    transform: scale(1.7);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes starPop {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  30% {
    opacity: 1;
    -webkit-transform: scale(1.8);
    transform: scale(1.8);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
  }

  70% {
    opacity: 1;
    -webkit-transform: scale(1.7);
    transform: scale(1.7);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/* ── Hero ── */
.hero__inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  position: relative;
}

.hero__content {
  width: 100%;
  max-width: 630px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.hero__title {
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.hero__visual {
  position: absolute;
  top: 50%;
  left: 70%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 600px;
  height: 499px;
  z-index: 1;
}

/* ── About ── */
.about__inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  position: relative;
}

.about__content {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  position: relative;
  padding-left: 265px;
  padding-right: 240px;
  z-index: 2;
}

.about__image {
  position: absolute;
}

.about__image-left {
  left: -258px;
  top: 0;
  width: 498px;
  height: 402px;
}

.about__image-right {
  right: -245px;
  top: -5px;
  width: 457px;
  height: 633px;
}

.about__title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.about__text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 20px;
  font-size: 14px;
}

/* ── Service cards ── */
.services__grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px 20px;
}

.service-card--1 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 5;
  grid-column: 1 / 6;
}

.service-card--2 {
  -ms-grid-column: 6;
  -ms-grid-column-span: 7;
  grid-column: 6 / 13;
}

.service-card--3 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 7;
  grid-column: 1 / 8;
}

.service-card--4 {
  -ms-grid-column: 8;
  -ms-grid-column-span: 5;
  grid-column: 8 / 13;
}

.service-card__inner {
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 12px;
  padding: 40px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.1);
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.service-card__inner:hover {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

[data-animate="card"] {
  opacity: 0;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  transition: box-shadow 0.4s ease, -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, box-shadow 0.4s ease;
  transition: transform 0.4s ease-in-out, box-shadow 0.4s ease, -webkit-transform 0.4s ease-in-out;
}

[data-animate="card"][data-state="visible"] {
  -webkit-animation: expandIn 1s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
  animation: expandIn 1s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}

@-webkit-keyframes expandIn {
  from {
    opacity: 0;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes expandIn {
  from {
    opacity: 0;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.service-card__title {
  font-size: 18px;
  font-weight: 600;
}

.service-card__text {
  font-size: 14px;
  color: #CCCCCC;
}

.service-card__link {
  font-size: 14px;
  color: #ffb600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.services__anchor {
  height: 0;
  visibility: hidden;
}

/* ── Values slider ── */
.values__title {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}

.values-slider {
  position: relative;
  margin: 0 auto;
  max-width: 500px;
}

.values-slider .slick-slide {
  padding: 0 15px;
}

.values-slide {
  padding: 20px 0;
}

.values-slide__inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
}

.values-slide__title {
  font-size: 18px;
  font-weight: 600;
}

.values-slide__text {
  font-size: 14px;
  color: #CCCCCC;
}

.values-slide__text--bold {
  font-weight: 600;
  color: #fff;
}

.values-slider .slick-dots {
  position: absolute;
  bottom: -36px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 7px;
  font-size: 0;
}

.values-slider .slick-dots li {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5e5e5e;
}

.values-slider .slick-dots li button {
  display: none;
}

.values-slider .slick-dots li.slick-active {
  background-color: #ffb600;
}

/* ── Process ── */
.process__inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  position: relative;
}

.process__content {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding-right: 500px;
  z-index: 2;
}

.process__image {
  position: absolute;
  width: 1052px;
  height: 1215px;
  top: -350px;
  right: -340px;
}

.process__title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.process__steps {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 14px;
  font-size: 14px;
}

.process__step-title {
  font-weight: 600;
}

/* ── Contact ── */
.contact__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 1fr;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  -ms-flex-align: start;
  align-items: start;
}

.contact__title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact__text {
  font-size: 14px;
}

.contact-us__form {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 250px;
}

.contact-us__content {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}

.contact-us__form[data-state="is-success"] .contact-us__content {
  display: none;
}

.contact-us__fields {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}

.contact-us__field {
  width: 100%;
}

.field__container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 5px;
}

.field__label,
.field__error:not(:empty) {
  font-size: 14px;
}

.field__error {
  display: none;
}

.field__error:not(:empty) {
  color: #ff48b6;
  display: block;
}

.field__wrap {
  width: 100%;
}

.field__input,
.field__textarea {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 16px;
  width: 100%;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 16px;
  line-height: normal;
  color: #fff;
  transition: border-color 0.3s ease;
}

.field__input:focus,
.field__textarea:focus {
  outline: none;
  border-color: #ff48b6;
}

.field__textarea {
  display: block;
  min-height: 100px;
  resize: vertical;
}

.contact-us__success {
  display: none;
  padding: 10px;
  color: #ffb600;
  font-size: 16px;
  font-weight: 600;
}

.contact-us__form[data-state="is-success"] .contact-us__success {
  display: block;
}

.contact-us__button {
  width: 100%;
  box-shadow: none;
}

/* ── Inner pages ── */
.inner-hero__inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  position: relative;
}

.inner-hero__content {
  width: 100%;
  max-width: 630px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.inner-hero__title {
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.inner-hero__text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 20px;
}

.inner-hero__visual {
  position: absolute;
  top: 175px;
  left: calc(50% - 100px);
  width: 916px;
  height: 916px;
  z-index: 1;
}

.inner-back {
  margin-top: 30px;
}

/* ── Legal pages ── */
.section--legal .center {
  max-width: 980px;
}

.legal__title {
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.legal__content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 20px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.legal__content h2 {
  font-size: 18px;
  font-weight: 600;
  margin: 16px 0 0;
}

.legal__content ul {
  margin: 8px 0 16px 20px;
  list-style: disc;
}

.legal__content li {
  margin-bottom: 6px;
}

/* ── Footer ── */
.footer {
  padding: 30px 40px;
  background: #171a1f;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 30px;
}

.footer__copy {
  font-size: 14px;
}

.footer__links {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

.footer__links a {
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: underline;
}

.footer__links a.current-page {
  pointer-events: none;
  opacity: 0.8;
  text-decoration: none;
}

/* ── Reveal animations ── */
[data-animate="reveal"] {
  opacity: 0;
  -webkit-transform: translateX(-40px);
  transform: translateX(-40px);
}

[data-animate="reveal"][data-state="visible"] {
  -webkit-animation: slideIn 1.2s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
  animation: slideIn 1.2s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}

@-webkit-keyframes slideIn {
  from {
    opacity: 0;
    -webkit-transform: translateX(-40px);
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    -webkit-transform: translateX(-40px);
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

/* ── Responsive ── */
@media (max-width: 1100px) {

  .header,
  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .header__nav {
    gap: 0;
  }

  .header__link {
    padding: 10px 15px;
  }

  .hero__visual {
    top: 15%;
    left: 75%;
    width: 460px;
    height: 380px;
  }

  .section--hero {
    padding-bottom: 80px;
  }

  .section--about,
  .section--services {
    padding: 40px 0;
  }

  .section--process {
    padding: 40px 0 100px;
  }

  .bg-line-2 {
    left: -140px !important;
  }

  .process__content {
    padding-right: 400px;
  }

  .process__image {
    width: 800px;
    height: 950px;
    top: -300px;
    right: -240px;
  }

  .contact__grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .section--inner,
  .section--legal {
    padding-top: 160px;
  }

  .inner-back {
    margin-top: 0;
  }

  .inner-hero__visual {
    left: auto;
    top: 77px;
    right: -160px;
    width: 600px;
    height: 600px;
  }

  .inner-hero__content,
  .hero__content {
    max-width: initial;
    padding-right: 300px;
  }

  .hero__title,
  .inner-hero__title {
    font-size: 48px;
  }

  .hero__title {
    max-width: 500px;
  }

  main {
    overflow-x: hidden;
  }
}

@media (max-width: 820px) {
  .header {
    position: relative;
  }

  .header__inner {
    -ms-flex-pack: center;
    justify-content: center;
  }

  .header__nav {
    display: none !important;
  }

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

  .hero__content {
    padding: 340px 0 40px;
  }

  .hero__visual {
    -webkit-transform: translate(-65%, -50px);
    transform: translate(-65%, -50px);
    top: 0;
    left: 50%;
    width: 460px;
    height: 380px;
  }

  .section--inner,
  .section--legal {
    padding: 20px 0 40px;
    background: none;
  }

  .inner-hero {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 20px;
  }

  .inner-hero__inner,
  .inner-hero__content {
    display: contents;
    padding: 0;
  }

  .inner-hero__title {
    -ms-flex-order: 1;
    order: 1;
  }

  .inner-hero__visual {
    margin: 40px 0;
    -ms-flex-order: 2;
    order: 2;
    position: relative;
    top: 0;
    left: 0;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    width: 100%;
    height: 400px;
  }

  .inner-hero__visual img {
    position: absolute;
    top: -45px;
    left: 50%;
    -webkit-transform: translateX(-46%);
    transform: translateX(-46%);
    width: auto;
    height: calc(100% + 140px);
    -o-object-fit: contain;
    object-fit: contain;
  }

  .inner-hero__text {
    -ms-flex-order: 3;
    order: 3;
  }

  .inner-hero__text,
  .legal__content {
    background: rgba(23, 27, 31, 0.3);
    backdrop-filter: blur(2px);
  }

  .inner-back {
    -ms-flex-order: 4;
    order: 4;
  }

  .about__image-right {
    display: none;
  }

  .about__content {
    padding-right: 0;
  }
}

@media (max-width: 680px) {

  .hero__title,
  .inner-hero__title {
    font-size: 32px;
  }

  .inner-btn {
    width: 100%;
    min-height: 42px;
  }

  .hero__content {
    padding-bottom: 20px;
  }

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

  .about__image-left {
    position: relative;
    top: initial;
    left: initial;
    width: 100%;
    height: 230px;
  }

  .about__image-left img {
    height: 100%;
    margin-left: auto;
  }

  .about__content {
    padding: 0;
  }

  .section--about,
  .section--services,
  .section--values {
    padding: 20px 0;
  }

  .services__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    grid-column: initial;
  }

  .service-card__inner {
    padding: 20px;
    border-radius: 20px;
  }

  .bg-line-2,
  .bg-line-3 {
    display: none;
  }

  .section--process {
    padding-bottom: 20px;
  }

  .process__inner {
    padding-top: 170px;
  }

  .process__image {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 230px;
  }

  .process__image img {
    position: absolute;
    max-width: initial;
    top: -144px;
    right: -105px;
    height: calc(100% + 180px);
    pointer-events: none;
  }

  .process__content {
    padding-right: 0;
  }

  .process__title {
    max-width: calc(100% - 200px);
    line-height: 1;
    margin-bottom: 20px;
  }

  .contact__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section--contact {
    padding-bottom: 40px;
  }

  .footer {
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 30px;
  }

  .footer__copy {
    text-align: center;
    opacity: 0.6;
  }

  .footer__links {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .inner-hero__visual {
    margin: 0;
    height: 330px;
  }

  .inner-hero__visual img {
    top: -60px;
  }

  .bg-decor {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-star][data-state="visible"],
  [data-animate="card"][data-state="visible"],
  [data-animate="reveal"][data-state="visible"] {
    -webkit-animation: none;
    animation: none;
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}