@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src:
    url("../fonts/InterVariable.woff2") format("woff2"),
    url("../fonts/InterVariable.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src:
    url("../fonts/InterVariable-Italic.woff2") format("woff2"),
    url("../fonts/InterVariable-Italic.ttf") format("truetype");
}

:root {
  --color-text: #3c4653;
  --color-text-light: #dfe3e8;
  --color-dark: #111313;
  --color-white: #fff;
  --green-mid: #3d7a4d;
  --green-light: #6b9e5c;
  --green-lime: #87f876;
  --green-bright: #b8ffac;
  --font-sans:
    "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --radius: 40px;
  --radius-lg: 40px;
  --spacing: 1rem;
}

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

body {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}

h1,
h2,
h3 {
  line-height: 1.1;
  text-transform: uppercase;
}

h1 {
  color: var(--color-white);
  font-size: 104px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

h2 {
  font-size: 48px;
  font-weight: 800;
}

h3 {
  font-size: 24px;
  font-weight: 700;
}

p {
  font-size: 18px;
  font-weight: 500;
}

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

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

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  overflow-x: visible;
  overflow-y: visible;
}

.site__main {
  flex: 1;
  padding: var(--spacing) 0;
}

.container {
  width: 100%;
  max-width: 1325px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.site-header {
  position: relative;
  padding: 32px 0;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.25rem;
}

.site-header__logo .custom-logo-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.site-header__logo .custom-logo {
  max-height: 48px;
  width: auto;
  height: auto;
  display: block;
}
.site-header__logo-link img {
  max-height: 48px;
  width: auto;
  height: auto;
  display: block;
}
.site-header__logo-link--dark {
  display: none;
}

.site-header--post .site-header__logo--has-dark .site-header__logo-link--light {
  display: none;
}

.site-header--post .site-header__logo--has-dark .site-header__logo-link--dark {
  display: inline-flex;
}

.site-header--post
  .site-header__logo--has-dark
  .site-header__logo-link--dark
  img {
  width: 157px;
}

.site-header__logo:hover .custom-logo-link {
  opacity: 0.9;
}

.site-header__logo-fallback {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
}
.site-header__logo-fallback:hover {
  color: var(--color-white);
  opacity: 0.9;
}

.site-header__logo-icon {
  display: flex;
  color: var(--color-white);
}

.site-header__logo-icon svg {
  width: 24px;
  height: 24px;
}

.site-header__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 48px;
  padding-left: 50px;
}

.nav-primary--mobile {
  display: none;
}

.site-header__menu a {
  color: var(--color-white);
  font-weight: 400;
  font-size: 18px;
}

.site-header--post .site-header__menu a {
  color: var(--color-dark);
}

.site-header__menu a:hover {
  opacity: 0.85;
}

.site-header__cta {
  display: inline-block;
  padding: 10px 30px;
  background: var(--color-white);
  color: #2d2d2d;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: var(--radius);
  white-space: nowrap;
}

.site-header--post .site-header__cta {
  background: var(--green-lime);
  color: var(--color-dark);
}

.site-header__cta:hover {
  background: #f0f0f0;
  color: #1a1a1a;
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.nav-toggle__line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-white);
  border-radius: 999px;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.site-header--post .nav-toggle__line {
  background: var(--color-dark);
}

.nav-toggle__line + .nav-toggle__line {
  margin-top: 5px;
}

.hero {
  position: relative;
  max-width: 100%;
  padding: 172px 0 0;
  margin: -126px auto 0;
  border-radius: 0 0 40px 40px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  top: 0;
  bottom: 0;
  background: var(
      --hero-bg,
      linear-gradient(
        135deg,
        var(--green-mid) 0%,
        var(--green-light) 45%,
        var(--green-lime) 70%,
        var(--green-bright) 100%
      )
    )
    no-repeat center / cover;
}

.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero__subtitle {
  margin: 5px 0 30px;
  color: var(--color-white);
  font-size: 24px;
  font-weight: 500;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero__phone-block {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  max-width: 940px;
  display: flex;
  justify-content: center;
}

.hero__phone-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 439px;
  height: 441px;
  background: var(--phone-bg) no-repeat center / contain;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  will-change: transform, opacity;
}

.hero__phone-ui {
  display: block;
  margin: 41px auto 0;
  width: 359px;
  height: auto;
  position: relative;
  z-index: 2;
}

.hero__phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 13px 18px 0px;
}

.hero__phone-status-left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.name {
  font-size: 17px;
  font-weight: 500;
  color: var(--color-dark);
}

.hero__phone-header {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}

.hero__phone-header div {
  display: flex;
  gap: 8px;
  align-items: center;
}

.hero__phone-card {
  margin: 20px 0 0 0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  padding: 21px 0 20px 17px;
  background: var(--color-dark);
  overflow: hidden;
  border-radius: 16px;
}

.hero__phone-card-info {
  text-align: left;
  position: relative;
  z-index: 1;
}

.hero__phone-card-label {
  font-size: 15px;
  line-height: 1;
  font-weight: 400;
}

.hero__phone-card-value {
  font-size: 46px;
  line-height: 1;
  font-weight: 700;
  margin: 12px 0 3px;
}

.hero__phone-card-badge {
  display: inline-block;
  font-size: 11px;
  padding: 1px 10px;
  border-radius: 10px;
  background: #9cfd8c;
  color: #282e38;
  font-weight: 500;
}

.hero__phone-card-image {
  position: absolute;
  right: -48px;
  top: 20px;
  transform: rotate(-164.68deg);
}

.hero__phone-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 17px 8px 17px 10px;
}

.hero__phone-actions img {
  height: 79px;
  display: block;
}

.hero__phone-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero__phone-card-item {
  background: #fff;
  border-radius: 16px 16px 0 0;
  padding: 13px 0px 4px 10px;
  box-shadow: 1px -4px 7px 0px rgba(0, 0, 0, 0.08);
}

.hero__phone-card-item img {
  height: 18px;
  width: auto;
  display: block;
}

.hero__phone-float {
  position: absolute;
  z-index: 3;
  object-fit: contain;
}

.hero__phone-float--security {
  left: 8%;
  top: 18%;
  width: 130px;
  height: 130px;
  transform-origin: 50% 50%;
}

.hero__phone-float--arrow {
  right: 8%;
  bottom: 15%;
  width: 105px;
  height: 95px;
  transform-origin: 50% 50%;
}

.hero--blog {
  padding: 172px 0 120px;
}

.hero--blog .hero__inner {
  margin-top: 5px;
}

.hero__blog-label {
  margin-bottom: 12px;
  color: var(--green-lime);
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

.hero--blog .hero__title {
  font-size: 64px;
}

.hero--blog .hero__subtitle {
  font-size: 18px;
  margin: 12px auto 0;
  max-width: 425px;
}

.hero__blog-filters {
  margin: 48px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 2px;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.hero__blog-filters::-webkit-scrollbar {
  display: none;
}

.hero__blog-filter {
  border: 0;
  border-radius: 1000px;
  padding: 12px 24px;
  background: transparent;
  color: #dfe3e8;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  flex: 0 0 auto;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.hero__blog-filter:hover {
  color: #ffffff;
}

.hero__blog-filter.is-active {
  background: #ffffff;
  color: var(--color-dark);
}

.blog-list {
  padding: 120px 0;
}

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

.blog-card {
  display: flex;
  flex-direction: column;
}

.blog-card__image-link {
  border-radius: 40px;
  overflow: hidden;
  background: #eceff1;
}

.blog-card__image {
  width: 100%;
  aspect-ratio: 1 / 0.66;
  object-fit: cover;
}

.blog-card__image--placeholder {
  background: linear-gradient(135deg, #44525f 0%, #dce3ea 100%);
}

.blog-card__content {
  padding-top: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  gap: 18px;
}

.blog-card__top {
  display: flex;
  flex-direction: column;
}

.blog-card__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-dark);
}

.blog-card__excerpt {
  margin-top: 14px;
  color: #505d6f;
  font-size: 16px;
  line-height: 1.4;
}

.blog-card__date {
  margin-top: auto;
  color: var(--color-dark);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1;
}

.blog-list__empty {
  margin-top: 24px;
  color: #3c4653;
  font-size: 18px;
  text-align: center;
}

.blog-pagination {
  margin-top: 70px;
}

.blog-pagination__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.blog-pagination .page-numbers {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  color: #818fa4;
  background: transparent;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background-color 0.2s ease;
}

.blog-pagination a.page-numbers:hover {
  border-color: var(--color-dark);
  color: var(--color-dark);
}

.blog-pagination .page-numbers.current {
  border-color: #000000;
  color: #000000;
  font-weight: 600;
}

.blog-pagination .page-numbers.prev,
.blog-pagination .page-numbers.next {
  font-size: 24px;
  line-height: 1;
  margin: 0 22px;
  font-weight: 300;
}

.blog-pagination .page-numbers.next,
.blog-pagination .page-numbers.prev {
  background: var(--color-dark);
  border-color: var(--color-dark);
  color: var(--green-lime);
}

.blog-pagination .page-numbers.next:hover,
.blog-pagination .page-numbers.prev:hover {
  background: var(--green-lime);
  border-color: var(--color-dark);
  border-color: var(--green-lime);
}

.blog-pagination span.page-numbers.prev,
.blog-pagination span.page-numbers.next {
  pointer-events: none;
  color: #818fa4;
  border: 1px solid #c0c7d2;
  background: transparent;
}

.blog-pagination .page-numbers.dots {
  border: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: #8ea0b6;
}

.blog-pagination .page-numbers.prev.disabled,
.blog-pagination .page-numbers.next.disabled {
  pointer-events: none;
  opacity: 0.45;
}

.single-post-page {
  padding-top: 83px;
}

.single-post__meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-dark);
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

.single-post__title {
  margin-top: 14px;
  color: var(--color-dark);
  font-size: 64px;
  font-weight: 800;
  line-height: 1.05;
}

.single-post__featured {
  margin-top: 50px;
  border-radius: 64px;
  overflow: hidden;
}

.single-post__featured-image {
  width: 100%;
  height: 572px;
  display: block;
}

.single-post__layout {
  margin: 65px 0 160px;
  display: flex;
  gap: 72px;
  align-items: start;
}

.single-post__sidebar {
  min-width: 433px;
  background: #ecf0f4;
  border-radius: 40px;
  padding: 40px 32px 32px 35px;
  position: sticky;
  top: 40px;
  max-height: calc(100vh - 40px);
  overflow: auto;
}

.single-post__toc-title {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-dark);
  text-transform: uppercase;
}

.single-post__toc-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.single-post__toc-item {
  list-style: none;
}

.single-post__toc-link {
  color: var(--color-dark);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
}

.single-post__toc-link.is-active {
  font-weight: 700;
}

.single-post__toc-link:hover {
  color: #000000;
}

.single-post__share {
  margin-top: 37px;
}

.single-post__share-title {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-dark);
  text-transform: uppercase;
}

.single-post__share-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.single-post__share-links a,
.single-post__share-links button {
  transition: background-color 0.2s ease;
}

.single-post__share-links button {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.single-post__share-links a:hover,
.single-post__share-links button:hover {
  background: #eceff1;
}

.single-post__share-links img {
  width: 56px;
  height: 56px;
}

.single-post__content p {
  color: #3c4653;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.single-post__content h2 {
  margin: 34px 0 22px;
  color: var(--color-dark);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
}

.single-post__content h3 {
  margin: 18px 0 10px;
  color: var(--color-dark);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.single-post__content p + p {
  margin-top: 12px;
}

.single-post__content ul {
  list-style: none;
  margin: 15px 0;
  padding-left: 0;
}

.single-post__content ul li {
  position: relative;
  padding-left: 24px;
  font-weight: 400;
  color: #3c4653;
}

.single-post__content blockquote {
  background-color: #ecf0f4;
  padding: 24px;
  border-radius: 24px;
}

.single-post__content ul li + li {
  margin-top: 8px;
}

.single-post__content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #73f460;
}

.single-post__more {
  background: #ecf0f4;
  border-radius: 40px 40px 0 0;
  padding: 120px 0 265px;
  margin-bottom: -210px;
}

.single-post__more-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
}

.single-post__more-title {
  width: 400px;
}

.single-post__more-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 1000px;
  padding: 14px 30px;
  background: var(--green-lime);
  color: var(--color-dark);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
}
.single-post__more-link span {
  font-size: 24px;
  font-weight: 300;
}

.single-post__more-link:hover {
  filter: brightness(0.96);
}

.single-post__more .blog-grid {
  margin: 60px 0 74px;
}

.works {
  padding: 160px 0 80px;
  background: #fff;
  color: #1a1a1a;
}

.works__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 52px;
}

.works__title {
  padding-right: 140px;
}

.title-gradient {
  display: inline-block;
  background: linear-gradient(
    90deg,
    var(--color-dark) 0%,
    #557e51 51%,
    #3cb030 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.works__text {
  color: #3c4653;
  max-width: 520px;
}

.works__cards {
  display: flex;
  gap: 20px;
}

.works__card {
  min-height: 440px;
  max-width: 415px;
  width: 100%;
  border-radius: 40px;
  padding: 45px 39px 40px 45px;
  background: #111;
  color: #fff;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.works__card h3 {
  line-height: 1.2;
}

.works__card .hero__phone-card {
  margin: 56px 0 8px 0;
  padding: 21px 16px 15px;
}

.works__card .hero__phone-cards {
  padding: 0;
  gap: 10px;
}

.works__card .hero__phone-card-value {
  font-size: 42px;
  margin: 11px 0 3px;
}

.works__card .hero__phone-card-label {
  font-size: 14px;
}
.works__card .hero__phone-card-badge {
  font-size: 10px;
}

.works__card .hero__phone-card-item {
  border-radius: 12px;
  padding: 10px;
  text-align: left;
}

.works__card .hero__phone-card-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
}
.works__orbit {
  position: relative;
  width: 91%;
  height: 230px;
  margin: 36px 0 0 14px;
}

.works__orbit-arc {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  transform-origin: 50% 50%;
}

.works__orbit-arc--back {
  z-index: 0;
}

.works__orbit-arc--front {
  z-index: 3;
  top: 11px;
}

.works__orbit-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.works__orbit-center img {
  display: block;
  width: min(70%, 220px);
  height: auto;
}

.works__orbit-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}

.works__orbit-path-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.55);
  stroke-width: 2;
}

.works__orbit-path {
  position: absolute;
  inset: 0;
}

.works__orbit-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 54px;
  height: 54px;
  z-index: 1;
}

.works__orbit-icon img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
}

.works__card--activity {
  padding: 45px 32px 0px;
}

.works__activity-phone {
  margin: 46px auto 0;
  padding-left: 8px;
  width: 100%;
  display: flex;
  justify-content: center;
  width: 265px;
  height: 294px;
  max-width: 100%;
  padding: 54px 16px 0 16px;
  background: url("../images/iPhone17Small.png") no-repeat center / contain;
}

.works__activity-ui {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.works__activity-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  position: relative;
  z-index: 1;
  padding: 0 7px;
}

.works__activity-title {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-dark);
}

.works__activity-icons {
  display: flex;
  align-items: center;
  gap: 9px;
}

.works__activity-icons img {
  width: 18px;
  height: 18px;
  display: block;
}

.works__activity-bottom {
  position: relative;
  z-index: 2;
  padding: 9px 7px 0;
}

.works__activity-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  position: relative;
  padding: 2px 6px 8px;
  border-bottom: 1px solid #e2e6ea;
  font-size: 9px;
  font-weight: 500;
  color: #505d6f;
}

.works__activity-tab {
  position: relative;
}

.works__activity-tab.is-active {
  color: var(--color-dark);
}

.works__activity-tab.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 3px;
  background: #62e257;
}

.works__activity-portfolio {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.works__activity-portfolio-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-dark);
  text-align: left;
  margin: 10px 0 6px 0;
}

.works__activity-portfolio-row {
  --item-w: 75px;
  --item-gap: 8px;
  width: calc((var(--item-w) * 3.25) + (var(--item-gap) * 3));
  overflow: hidden;
  padding-left: 7px;
}

.works__activity-portfolio-track {
  display: flex;
  gap: var(--item-gap);
  will-change: transform;
}

.works__activity-portfolio-item {
  width: 64px;
  min-height: 58px;
  padding: 8px 8px 6px;
  border-radius: 10.58px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(17, 19, 19, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  flex: 0 0 auto;
  flex-shrink: 0;
}

.works__activity-portfolio-icon {
  width: 16px;
  height: 16px;
  display: block;
  flex: 0 0 auto;
}

.works__activity-portfolio-name {
  font-size: 8px;
  line-height: 1.1;
  color: #818fa4;
}

.works__activity-portfolio-price {
  font-size: 8px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-dark);
}

.works__activity-filters {
  display: flex;
  gap: 5px;
  padding: 0 7px;
  margin-top: 17px;
}

.works__activity-filter {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 5px 12px 5px 9px;
  border-radius: 66px;
  border: 1px solid rgba(40, 46, 56, 0.2);
  font-size: 9px;
  line-height: 1;
  font-weight: 500;
  color: var(--color-dark);
  background: #fff;
  white-space: nowrap;
}

.works__activity-filter--with-icon {
  padding-right: 8px;
}

.works__activity-filter-icon {
  width: 10px;
  height: 10px;
  display: block;
}

.works__activity-date {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-dark);
  text-align: left;
  margin-top: 15px;
  padding: 0 7px;
}

.works-steps {
  padding: 160px 0 145px;
  background: var(--color-dark);
  color: #fff;
  border-radius: 64px;
}

.works-steps__list {
  display: flex;
  flex-direction: column;
  gap: 185px;
}

.works-steps__item {
  text-align: center !important;
}

.works__step {
  background: #f7f7f7;
  border-radius: 24px;
  padding: 20px;
}

.works__step-label {
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  color: #6a717a;
  margin-bottom: 6px;
}
.works-steps__label {
  color: var(--green-lime);
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.works-steps__text {
  margin: 15px 0 0 0;
  color: #dfe3e8;
  font-size: 14px;
}

.works-steps__step-two-animation-wrapper {
  background: url("../images/step2_bg_green.png") no-repeat center / contain;
  min-height: 480px;
  max-width: 683px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
  margin: 0 auto;
  padding-top: 117px;
  gap: 13px;
}
.works-steps__step-two-animation {
  background: url("../images/step2_phone.png") no-repeat center / contain;
  min-height: 350px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  flex-direction: column;
  margin: 0 auto;
  padding-top: 93px;
  gap: 13px;
}

.works-steps__step-two-title {
  font-size: 16px;
  font-weight: 500;
  color: #d6ffcd;
  letter-spacing: -0.2px;
}

.works-steps__step-two-wrapper {
  background: #f7f7f7;
  border-radius: 19px;
  padding: 25px 34px 21px 32px;
  display: flex;
}

.works-steps__step-two-control {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.works-steps__step-two-control-icon {
  position: relative;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.works-steps__step-two-control-img {
  z-index: 1;
  width: 22px;
  height: auto;
}

.works-steps__step-two-control--minus {
  background: var(--color-dark);
}

.works-steps__step-two-control--plus {
  background: linear-gradient(135deg, #d4fcd0 0%, #73f460 100%);
}
.works-steps__step-two-control-text {
  font-size: 9px;
  font-weight: 500;
  color: #64748b;
}

.works-steps__step-two-counter {
  font-size: 31px;
  font-weight: 700;
  min-width: 48px;
  text-align: center;
  color: var(--color-dark);
  margin-top: -6px;
  width: 114px;
}

.works-steps__flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  margin-top: 53px;
}

.works-steps__flow-cart,
.works-steps__flow-logo,
.works-steps__flow-figure {
  position: relative;
  z-index: 1;
}

.works-steps__flow-cart {
  width: 418px;
  height: 248px;
}

.works-steps__flow-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 66px;
  position: relative;
}

.works-steps__flow-logo::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 6px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.8) 35%,
    rgba(255, 255, 255, 0.99) 50%,
    rgba(255, 255, 255, 0.95) 52%,
    rgba(255, 255, 255, 0.2) 68%,
    rgba(255, 255, 255, 0) 100%
  );
  background-size: 200% 100%;
  background-position: 100% 50%;
  animation: none;
  z-index: 0;
}

.works-steps__flow.is-animated .works-steps__flow-logo::before {
  background-position: 0% 50%;
  animation: lineSweepLoop 4s linear infinite;
}

.works-steps__flow-logo-img {
  width: 53px;
  height: auto;
  position: relative;
  z-index: 1;
}

.works-steps__flow-figure {
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../images/white_figure_bg.png) no-repeat center / contain;
}

.works-steps__flow-figure-icon {
  width: 88px;
  height: auto;
  animation-duration: 2.8s;
}

.works-steps__three-orbit {
  position: relative;
  width: 460px;
  height: 210px;
  margin: 90px auto 45px;
}

.works-steps__three-orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 73px;
  border-radius: 50%;
  z-index: 2;
  overflow: hidden;
}

.works-steps__three-orbit-icon {
  width: 78px;
  height: 73px;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
}

.works-steps__three-orbit-ellipse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 459px;
  height: 175px;
  border-radius: 50%;
  opacity: 1;
  transform-origin: 50% 50%;
  z-index: 1;
}

@property --shift {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

.works-steps__three-orbit-ellipse::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.8) 35%,
    rgba(255, 255, 255, 0.99) 50%,
    rgba(255, 255, 255, 0.95) 52%,
    rgba(255, 255, 255, 0.2) 68%,
    rgba(255, 255, 255, 0) 100%
  );
  background-size: 250% 100%;
  background-repeat: repeat-x;
  background-position: calc(var(--shift) * 1%) 50%;
  -webkit-mask: radial-gradient(
    farthest-side,
    transparent calc(100% - 7px),
    #000 calc(100% - 3px)
  );
  mask: radial-gradient(
    farthest-side,
    transparent calc(100% - 7px),
    #000 calc(100% - 3px)
  );
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.6));
  will-change: background-position;
  animation: lineSweepShift 7s linear infinite;
}

.works-steps__three-orbit-ellipse--one {
  transform: translate(-50%, -50%) rotate(32deg);
}

.works-steps__three-orbit-ellipse--two {
  transform: translate(-50%, -50%) rotate(-32deg);
}

.works-steps__three-orbit-ellipse--two::before {
  animation-delay: 1.2s;
}

.works-steps__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  padding: 12px 33px;
  border-radius: 999px;
  background: var(--green-lime);
  color: var(--color-dark);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.works-steps__four-anim {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.works-steps__four-anim-center {
  position: relative;
  width: min(760px, 100%);
  height: 280px;
}

.works-steps__four-anim-cards {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(328px, 92%);
  padding: 0;
  overflow: hidden;
  background: var(--color-dark);

  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 18%,
    #000 82%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 18%,
    #000 82%,
    transparent 100%
  );
}

.works-steps__four-anim-cards-track {
  box-sizing: border-box;
  will-change: transform;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.works-steps__four-anim-card {
  width: min(520px, 100%);
  height: auto;
  display: block;
}

.works-steps__four-anim-icon {
  position: absolute;
  --a: 8px;
  --dur: 8s;
  --delay: 0s;

  transform: translate(var(--a), 0);
  animation-duration: var(--dur);
  animation-delay: var(--delay);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
  will-change: transform;
}

.works-steps__four-anim-icon img {
  width: 65px;
  height: 65px;
  display: block;
}

.works-steps__four-anim-icon--amazon img,
.works-steps__four-anim-icon--meta img {
  width: 75px;
  height: 75px;
}

.works-steps__four-anim-icon--windows {
  left: 104px;
  top: 15px;
}

.works-steps__four-anim-icon--amazon {
  left: 20px;
  bottom: 48px;
}

.works-steps__four-anim-icon--meta {
  right: 103px;
  top: 34px;
}

.works-steps__four-anim-icon--google {
  right: 20px;
  bottom: 70px;
}

.faq {
  padding: 160px 0;
  color: #1a1a1a;
}

.faq__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.faq__title {
  margin-bottom: 18px;
}

.faq__intro {
  max-width: 520px;
}

.faq__list {
  max-width: 520px;
}

.faq__item {
  border-bottom: 1px solid #e4d8d8;
  padding: 40px 0;
  opacity: 0;
  transform: translateY(100px);
}
.faq__list > *:first-child {
  padding: 0 0 40px;
}
.faq__list > *:last-child {
  padding: 40px 0 0;
}

.faq__item:last-child {
  border-bottom: none;
}

.faq__question {
  width: 100%;
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.faq__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-size: 22px;
  line-height: 1;
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.7s ease-out;
}

.faq__item.is-open .faq__answer {
  grid-template-rows: 1fr;
}

.faq__answer-inner {
  overflow: hidden;
  margin-top: 0;
  transition: margin-top 0.4s ease;
}

.faq__item.is-open .faq__answer-inner {
  margin-top: 16px;
}

.contact {
  position: relative;
  margin: -170px auto 70px;
  max-width: 1280px;
  z-index: 2;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--contact-bg, var(--color-dark)) no-repeat top right / cover;
  border-radius: 40px;
  z-index: 0;
}

.contact__inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 80px;
}

.contact__content {
  max-width: 520px;
}

.contact__title {
  font-size: 48px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
}

.contact__text {
  margin: 18px 155px 0 0;
  color: #c0c7d2;
}

.contact__form {
  max-width: 330px;
}

.contact__form input[type="email"],
.contact__form input[type="text"] {
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.95);
  font-size: 14px;
}

.contact__form input[type="submit"],
.contact__form button,
.contact__form .wpcf7-submit {
  margin-top: 14px;
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 16px 20px;
  background: #8fe36b;
  color: var(--color-dark);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.contact__form .wpcf7 {
  margin: 0;
}

.contact__form.is-success .wpcf7 form > :not(.wpcf7-response-output) {
  display: none;
}

.contact__form-success {
  color: #ffffff;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact__form-success-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
}
.wpcf7 form.sent .wpcf7-response-output, .wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  border-color: transparent;
}

.wpcf7 form .wpcf7-response-output {
  font-size: 14px;
  font-weight: 500;
  color: #c0c7d2;
  margin: 0;
  padding: 16px 0;
}
.wpcf7-spinner {
  display: block;
  margin: 5px auto 0;
}
.entry__content {
  margin-bottom: var(--spacing);
}

.entry__content > * + * {
  margin-top: 1em;
}

.site-footer {
  position: relative;
  padding: 0px 0 38px;
  color: #fff;
  margin-top: 150px;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
}

.site-footer__bg {
  position: absolute;
  inset: 0;
  background: url("../images/Footer.png") no-repeat center / cover;
  opacity: 1;
  border-radius: 40px 40px 0 0;
}

.site-footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer__menu {
  list-style: none;
  display: flex;
  gap: 50px;
  margin: 0;
  padding: 0;
}

.site-footer__menu a {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}

.site-footer__socials {
  display: flex;
  gap: 20px;
}

.site-footer__social img {
  width: 56px;
  height: 56px;
  display: block;
}

.site-footer__logo {
  width: 100%;
  height: auto;
  margin: 104px 0 17px 0;
}

.site-footer__copy {
  font-size: 16px;
  font-weight: 400;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.investing {
  padding: 160px 0;
}

.investing__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1065 / 514;
  max-width: 1065px;
  width: 100%;
  margin: 0 auto;
}

.investing__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.investing__content {
  position: relative;
  z-index: 1;
}

.investing__title {
  font-size: 104px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  margin: 0px 0 -20px 8px;
  will-change: transform;
  text-align: center;
}

.investing__title-gradient {
  background: linear-gradient(
    to top,
    rgba(0, 20, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.15) 30%,
    rgba(0, 0, 0, 0.6) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.investing__title-white {
  color: #ffffff;
}

.investing__badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  backdrop-filter: blur(10px);
}
