@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&display=swap");

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

:root {
  --grad-top: linear-gradient(to bottom, #020715 0%, #081536 100%);
  --grad-middle: linear-gradient(to top, #020715 0%, #081536 100%);
  --grad-bottom: linear-gradient(to bottom, #020715 0%, #081536 100%);
  --text-main: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.76);
  --text-muted: rgba(255, 255, 255, 0.56);
  --line: rgba(255, 255, 255, 0.12);
  --pill-bg: rgba(255, 255, 255, 0.12);
  --pill-bg-strong: linear-gradient(180deg, #2e63ff 0%, #234fd0 100%);
  --social-bg: rgba(255, 255, 255, 0.1);
  --social-border: rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 12px 26px rgba(0, 0, 0, 0.22);
  --shadow-btn:
    inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 14px 28px rgba(0, 0, 0, 0.32),
    0 4px 12px rgba(46, 99, 255, 0.26);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "IBM Plex Sans", Arial, sans-serif;
  background: #1f1f1f;
  color: var(--text-main);
  overflow-x: hidden;
}

.projects-page {
  min-height: 100vh;
  background: var(--bg-page);
}

/* =========================
   HEADER / HERO
========================= */

.projects-page__hero {
  position: relative;
  padding: 18px 0 44px;
  background: var(--grad-top);
}

.projects-page__plus {
  position: absolute;
  width: 22px;
  height: 22px;
  opacity: 0.42;
}

.projects-page__plus--left {
  top: 116px;
  left: 24px;
}

.projects-page__plus--right {
  top: 116px;
  right: 24px;
}

.projects-header {
  width: min(1540px, calc(100% - 48px));
  margin: 0 auto;
}

.projects-header--desktop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.projects-header--mobile {
  display: none;
}

.projects-logo img {
  display: block;
  width: 118px;
  height: auto;
}

.projects-header__center {
  display: flex;
  align-items: stretch;
  border-radius: 999px;
  overflow: hidden;
}

.projects-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 20px;
  min-height: 46px;
  border-radius: 999px 0 0 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-right: none;
}

.projects-nav a {
  text-decoration: none;
  color: var(--text-main);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.projects-header__cta {
  min-height: 46px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 999px 999px 0;
  text-decoration: none;
  color: var(--text-main);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: var(--pill-bg-strong);
}

.projects-header__phone {
  text-decoration: underline;
  color: var(--text-main);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.12em;
  white-space: nowrap;
  font-style: italic;
}

.projects-hero {
  width: min(1540px, calc(100% - 48px));
  margin: 68px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.projects-hero__title {
  text-align: center;
  font-size: clamp(54px, 5vw, 86px);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.projects-hero__decor {
  width: 22px;
  height: 22px;
  margin: 42px 0 36px;
  opacity: 0.42;
}

.projects-hero__subtitle {
  text-align: center;
  max-width: 760px;
  font-size: clamp(24px, 1.8vw, 34px);
  line-height: 1.35;
  color: var(--text-soft);
  margin-bottom: 48px;
}

/* =========================
   FILTERS
========================= */

.projects-filters--desktop {
  width: 100%;
  max-width: 1280px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 14px;
}

.projects-filters-mobile {
  display: none;
}

.projects-filter-pill {
  appearance: none;
  border: 0;
  cursor: pointer;
  min-height: 42px;
  padding: 20px 20px;
  border-radius: 999px;
  background: var(--pill-bg);
  color: var(--text-main);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

.projects-filter-pill:hover {
  transform: translateY(-1px);
}

.projects-filter-pill.is-active {
  background: var(--pill-bg-strong);
  box-shadow: var(--shadow-btn);
}

/* =========================
   PROJECT LIST
========================= */
.projects-outer {
  background: var(--grad-middle);
}

.projects-list-section {
  width: min(1540px, calc(100% - 48px));
  margin: 0 auto;
  padding-bottom: 72px;
}

.projects-list {
  border-top: 1px solid var(--line);
}

.project-row {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr 40px;
  gap: 32px;
  padding: 28px 0 24px;
  border-bottom: 1px solid var(--line);
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    filter 0.28s ease;
}

.project-row.is-hidden {
  display: none;
}

.project-row__left {
  min-width: 0;
  margin-bottom: 24px;
}

.project-row__title {
  font-size: clamp(42px, 3vw, 62px);
  line-height: 0.96;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.project-row__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.project-row__right {
  min-width: 0;
  max-width: 420px;
}

.project-row__desc {
  color: var(--text-muted);
  font-size: clamp(18px, 1.3vw, 24px);
  line-height: 1.5;
}

.project-row__link {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 8px;
}

.project-row__arrow {
  width: 24px;
  height: 24px;
  transform: rotate(45deg);
  opacity: 0.9;
  transition:
    transform 0.22s ease,
    opacity 0.22s ease;
}

.project-row:hover .project-row__arrow {
  transform: rotate(45deg) translate(2px, -2px);
  opacity: 1;
}

/* =========================
   LOAD MORE
========================= */

.projects-load-more-wrap {
  position: relative;
  margin-top: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.projects-load-more-wrap__plus {
  position: absolute;
  width: 22px;
  height: 22px;
  opacity: 0.42;
  top: 50%;
  transform: translateY(-50%);
}

.projects-load-more-wrap__plus--left {
  left: 0;
}

.projects-load-more-wrap__plus--right {
  right: 0;
}

.projects-load-more {
  appearance: none;
  border: 0;
  min-width: 270px;
  height: 54px;
  padding: 8px 32px;
  border-radius: 999px;
  cursor: pointer;
  background: var(--pill-bg-strong);
  color: var(--text-main);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 22px;
  line-height: 1;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: var(--shadow-btn);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.projects-load-more:hover {
  transform: translateY(-2px);
}

/* =========================
   FOOTERS
========================= */

.projects-footer-section {
  padding: 36px 0 42px;
  background: var(--grad-bottom);
}

.footer-desktop,
.footer-mobile {
  width: min(1540px, calc(100% - 48px));
  margin: 0 auto;
}

.footer-desktop {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-desktop__left,
.footer-desktop__right {
  display: flex;
  gap: 28px;
}

.footer-desktop__center {
  display: flex;
  gap: 16px;
}

.footer-desktop__center a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--social-bg);
  border: 1px solid var(--social-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-desktop__center img {
  width: 18px;
  height: 18px;
}

.footer-desktop a {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
}

.footer-mobile {
  display: none;
  flex-direction: column;
  align-items: center;
}

.footer-mobile__socials {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.footer-mobile__socials a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--social-bg);
  border: 1px solid var(--social-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-mobile__socials img {
  width: 18px;
  height: 18px;
}

.footer-mobile__menus {
  width: 100%;
  max-width: 420px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.footer-mobile__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-mobile a {
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 1024px) {
  .projects-page__hero {
    padding: 6px 0 28px;
  }

  .projects-page__plus {
    display: none;
  }

  .projects-header--desktop {
    display: none;
  }

  .projects-header--mobile {
    width: calc(100% - 16px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  .projects-logo--mobile img {
    width: 28px;
  }

  .projects-header__cta--mobile {
    position: relative;
    min-height: 44px;
    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;

    font-family: "IBM Plex Sans", Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;

    color: #fff;

    /* основной градиент */
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.12) 0%,
      rgba(255, 255, 255, 0.04) 100%
    );

    /* обводка */
    border: 1px solid rgba(255, 255, 255, 0.14);

    /* стеклянный эффект */
    backdrop-filter: blur(10px);

    /* мягкая тень */
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.18),
      0 6px 18px rgba(0, 0, 0, 0.35);

    transition: all 0.25s ease;
  }

  .projects-burger {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
  }

  .projects-burger span {
    display: block;
    width: 18px;
    height: 1px;
    background: #fff;
    border-radius: 999px;
  }

  .projects-hero {
    width: calc(100% - 12px);
    margin-top: 34px;
  }

  .projects-hero__title {
    font-size: 64px;
    line-height: 0.95;
    text-align: center;
    width: 100%;
  }

  .projects-hero__decor {
    width: 22px;
    height: 22px;
    margin: 28px auto 26px;
  }

  .projects-hero__subtitle {
    font-size: 26px;
    line-height: 1.34;
    text-align: center;
    max-width: 360px;
    margin-bottom: 34px;
  }

  .projects-filters--desktop {
    display: none;
  }

  .projects-filters-mobile {
    display: block;
    width: 100%;
  }

  .projects-filters-mobile__head {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
  }

  .projects-filters-mobile__toggle {
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
      transform 0.24s ease,
      background 0.24s ease;
  }

  .projects-filters-mobile__toggle img {
    width: 18px;
    height: 18px;
    transition: transform 0.24s ease;
  }

  .projects-filters-mobile__toggle.is-open img {
    transform: rotate(180deg);
  }

  .projects-filters-mobile__body {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-8px);
    transition:
      max-height 0.35s ease,
      opacity 0.28s ease,
      transform 0.28s ease;
  }

  .projects-filters-mobile__body.is-open {
    max-height: 420px;
    opacity: 1;
    transform: translateY(0);
  }

  .projects-filter-pill {
    min-height: 48px;
    padding: 0 16px;
    font-size: 22px;
    justify-content: center;
  }

  .projects-list-section {
    width: 100%;
    padding-top: 18px;
    padding-bottom: 40px;
  }

  .projects-list {
    border-top: none;
  }

  .project-row {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 16px 24px 18px;
  }

  .project-row__left {
    order: 1;
  }

  .project-row__right {
    order: 2;
    max-width: 100%;
    margin-bottom: 18px;
  }

  .project-row__link {
    display: none;
  }

  .project-row__title {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .project-row__desc {
    font-size: 15px;
    line-height: 1.52;
  }

  .project-row__tags {
    gap: 8px;
  }

  .project-row .projects-filter-pill {
    min-height: 34px;
    padding: 12px 12px;
    font-size: 12px;
  }

  .projects-load-more-wrap {
    margin-top: 38px;
  }

  .projects-load-more-wrap__plus {
    width: 18px;
    height: 18px;
  }

  .projects-load-more {
    min-width: 128px;
    height: 34px;
    font-size: 14px;
    letter-spacing: 0.08em;
  }

  .projects-footer-section {
    padding: 30px 0 34px;
  }
}

@media (max-width: 768px) {
  .footer-desktop {
    display: flex;
    align-items: start;
    gap: 28px 40px;
    padding: 32px 24px;
    justify-content: space-between;
  }

  .footer-desktop__center {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .footer-desktop__right {
    grid-column: 2;
    grid-row: 1;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 28px;
    justify-content: start;
    align-content: start;
    max-width: 60%;
  }

  .footer-desktop__left {
    display: none;
  }

  .footer-desktop__right a {
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }
}

@media (max-width: 540px) {
  .footer-desktop {
    display: none;
  }

  .footer-mobile {
    display: flex;
    width: calc(100% - 12px);
  }

  .footer-mobile__socials {
    gap: 10px;
    margin-bottom: 26px;
  }

  .footer-mobile__socials a {
    width: 48px;
    height: 48px;
  }

  .footer-mobile__socials img {
    width: 18px;
    height: 18px;
  }

  .footer-mobile__menus {
    gap: 22px;
  }

  .footer-mobile a {
    font-size: 8px;
    line-height: 1.2;
  }
}

@media (max-width: 540px) {
  .projects-hero__title {
    font-size: 48px;
  }
}

html.projects-menu-open,
body.projects-menu-open {
  overflow: hidden;
}

.projects-drawer {
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
}

.projects-drawer.is-open {
  pointer-events: auto;
}

.projects-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 7, 21, 0.28);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.projects-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(78vw, 340px);
  height: 100%;
  background: #2349bf;
  padding: 10px 18px 18px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: -24px 0 48px rgba(0, 0, 0, 0.34);
}

.projects-drawer.is-open .projects-drawer__backdrop {
  opacity: 1;
}

.projects-drawer.is-open .projects-drawer__panel {
  transform: translateX(0);
}

.projects-drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 64px;
}

.projects-drawer__lang {
  appearance: none;
  border: 0;
  background: transparent;
  color: #fff;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.projects-drawer__close {
  position: relative;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  flex-shrink: 0;
}

.projects-drawer__close span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 1.5px;
  border-radius: 999px;
  background: #fff;
}

.projects-drawer__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.projects-drawer__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.projects-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: auto;
  margin-bottom: auto;
}

.projects-drawer__nav a {
  color: #fff;
  text-decoration: none;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.projects-drawer__nav a.is-muted {
  color: rgba(255, 255, 255, 0.68);
}

.projects-drawer__bottom {
  margin-top: 46px;
}

.projects-drawer__socials {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
}

.projects-drawer__socials a {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.projects-drawer__socials img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.projects-drawer__phone {
  min-height: 46px;
  width: 100%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.12em;
}

/* drawer only on mobile/tablet */
@media (min-width: 1024px) {
  .projects-drawer {
    display: none;
  }
}

@media (max-width: 480px) {
  .projects-drawer__panel {
    width: min(82vw, 320px);
    padding: 10px 14px 16px;
  }

  .projects-drawer__nav {
    gap: 20px;
  }

  .projects-drawer__nav a {
    font-size: 18px;
  }

  .projects-drawer__socials {
    gap: 10px;
  }

  .projects-drawer__socials a {
    width: 72px;
    height: 72px;
  }

  .projects-drawer__socials img {
    width: 24px;
    height: 24px;
  }

  .projects-drawer__phone {
    font-size: 16px;
  }
}

/* PROJECT PAGE */
.web-page {
  background: var(--grad-middle);
}

.project-hero-device {
  position: relative;
  overflow: hidden;

  padding: 46px 0 72px;
}

.project-hero-device__container {
  width: min(1520px, calc(100% - 48px));
  margin: 0 auto;
}

.project-hero-device__title {
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(72px, 8vw, 170px);
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #f4f4f4;
}

.project-hero-device__stage {
  position: relative;
  margin-top: -34px;
  min-height: 860px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.project-hero-device__tags {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 205px;
  z-index: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}

.project-hero-device__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: #18233f;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 24px;
  line-height: 1;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.18);
}

.project-device {
  position: relative;
  z-index: 2;
}

.project-device__frame {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  pointer-events: none;
}

/* LAPTOP */
.project-device--laptop {
  width: min(1320px, 92vw);
}

.project-device__screen {
  position: absolute;
  overflow: hidden;
}

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

/* Подгони по своему PNG */
.project-device__screen--laptop {
  top: 6.2%;
  left: 50.5%;
  width: 75.7%;
  height: 85.8%;
  border-radius: 8px;
  transform: translateX(-50%);
}

/* PHONE hidden on desktop */
.project-device--phone {
  display: none;
}

/* decor plus */
.project-hero-device__plus {
  position: absolute;
  width: 22px;
  height: 22px;
  opacity: 0.42;
}

.project-hero-device__plus--left-top {
  top: 270px;
  left: 26px;
}

.project-hero-device__plus--right-top {
  top: 270px;
  right: 26px;
}

.project-hero-device__plus--left-bottom {
  bottom: 56px;
  left: 10px;
}

.project-hero-device__plus--right-bottom {
  bottom: 56px;
  right: 10px;
}

.project-case {
  position: relative;
  padding: 84px 0 98px;
  z-index: 2;
}

.project-case__container {
  position: relative;
  z-index: 2;
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 46px;
}

.project-case__card {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 28px 34px 30px;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.045) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 18px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  text-align: center;
}

.project-case__title {
  margin-bottom: 20px;
  color: #f4f4f4;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(38px, 2.8vw, 56px);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.project-case__text {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.42;
  font-weight: 400;
}

/* pluses */
.project-case__plus {
  position: absolute;
  top: 32px;
  width: 22px;
  height: 22px;
  opacity: 0.42;
  z-index: 3;
}

.project-case__plus--left {
  left: 24px;
}

.project-case__plus--right {
  right: 24px;
}

/* desktop rings */

.project-case__bg {
  position: absolute;
  top: -260px; /* заходит на предыдущую секцию */
  left: 50%;
  transform: translateX(-50%);
  width: min(1400px, calc(100% - 48px)); /* ограничение по ширине макета */
  height: 980px;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

.project-case__arc {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.project-case__arc--1 {
  top: 0;
  width: 100%;
  height: 760px;
}

.project-case__arc--2 {
  top: 120px;
  width: 76%;
  height: 560px;
  opacity: 0.72;
}

.project-case__arc--3 {
  top: 210px;
  width: 48%;
  height: 360px;
  opacity: 0.56;
}

.project-case__container,
.project-case__plus {
  position: relative;
  z-index: 2;
}

.project-metrics {
  position: relative;
}

/* =========================
   DESKTOP
========================= */

.project-metrics__desktop {
  width: min(1520px, calc(100% - 48px));
  margin: 0 auto;
  min-height: 520px;
  position: relative;
  display: block;
}

.project-metric {
  position: absolute;
  text-align: center;
}

.project-metric--left {
  left: 2%;
  top: 180px;
}

.project-metric--center {
  left: 50%;
  top: 48px;
  transform: translateX(-50%);
}

.project-metric--right {
  right: 2%;
  top: 180px;
}

.project-metric__value {
  color: rgba(255, 255, 255, 0.92);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(120px, 8vw, 170px);
  line-height: 0.9;
  font-weight: 600;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}

.project-metric--center .project-metric__value {
  font-size: clamp(100px, 6.8vw, 138px);
}

.project-metric__label {
  color: rgba(255, 255, 255, 0.7);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(16px, 1vw, 24px);
  line-height: 1.18;
  font-weight: 400;
  text-transform: uppercase;
  white-space: nowrap;
}

/* SECTION */
.project-team {
  padding: 90px 0 120px;
}

.project-team__container {
  width: min(1520px, calc(100% - 48px));
  margin: 0 auto;
}

.project-team__title {
  text-align: center;
  font-size: 28px;
  letter-spacing: 0.12em;
  margin-bottom: 48px;
}

/* DESKTOP GRID */
.project-team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* CARD */
.team-card {
  position: relative;
  padding: 28px 26px 30px;
  border-radius: 24px;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );

  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 14px 30px rgba(0, 0, 0, 0.25);

  backdrop-filter: blur(10px);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

/* TEXT */
.team-card__role {
  font-size: 22px;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.team-card__name {
  display: block;
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 22px;
}

/* AVATAR */
.team-card__avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 22px;

  border-radius: 50%;
  overflow: hidden;
}

.team-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* DESC */
.team-card__desc {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.8;
}

/* ================= MOBILE ================= */

.project-team__slider-wrap {
  display: none;
}

@media (max-width: 768px) {
  .project-team {
    padding: 60px 0 150px;
    overflow: hidden;
  }

  .project-team__title {
    font-size: 48px;
    margin-bottom: 28px;
  }

  .project-team__grid {
    display: none;
  }

  .project-team__slider-wrap {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0 12px;
  }

  .project-team__slider {
    overflow: hidden;
    min-height: 480px;
  }

  .project-team__slider .swiper-wrapper {
    align-items: stretch;
  }

  .project-team__slider .swiper-slide {
    height: auto;
  }

  .team-card--mobile {
    min-height: 0;
    padding: 28px 18px 28px;
    border-radius: 28px;
    display: flex;
    flex-direction: column;
  }

  .team-card--mobile .team-card__role {
    font-size: 34px;
    line-height: 0.95;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
  }

  .team-card--mobile .team-card__name {
    display: block;
    font-size: 18px;
    line-height: 1;
    margin-bottom: 22px;
    opacity: 0.95;
  }

  .team-card--mobile .team-card__avatar {
    width: 194px;
    height: 194px;
    margin: 0 auto 28px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
  }

  .team-card--mobile .team-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .team-card--mobile .team-card__desc {
    font-size: 18px;
    line-height: 1.42;
    opacity: 0.95;
  }

  .project-team__pagination {
    position: static;
    margin-top: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  .project-team__pagination .swiper-pagination-bullet {
    margin: 0 !important;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.38);
    opacity: 1;
    transition:
      transform 0.25s ease,
      background-color 0.25s ease,
      width 0.25s ease,
      height 0.25s ease;
  }

  .project-team__pagination .swiper-pagination-bullet-active {
    width: 18px;
    height: 18px;
    background: #ffffff;
  }
}

/* =========================
   MOBILE
========================= */

.project-metrics__mobile {
  display: none;
}

@media (max-width: 768px) {
  .project-metrics {
    overflow: visible;
    height: auto;
    min-height: auto;
    padding: 28px 16px 36px;
  }

  .project-metrics__desktop {
    display: none;
  }

  .project-metrics__mobile {
    display: block;
    position: relative;
    height: 170vh;
  }

  .project-metrics__mobile-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
  }

  .project-metric-mobile {
    position: absolute;
    left: 50%;
    width: calc(100% - 24px);
    max-width: 320px;
    text-align: center;
    transform: translateX(-50%);
    transition:
      top 0.3s ease,
      transform 0.3s ease,
      opacity 0.3s ease;
    will-change: top, transform, opacity;
  }

  .project-metric-mobile__value {
    color: rgba(255, 255, 255, 0.9);
    font-family: "IBM Plex Sans", Arial, sans-serif;
    font-size: 102px;
    line-height: 0.9;
    font-weight: 600;
    letter-spacing: -0.06em;
    margin-bottom: 8px;
    transition:
      transform 0.3s ease,
      opacity 0.3s ease,
      font-size 0.3s ease;
  }

  .project-metric-mobile__label {
    color: rgba(255, 255, 255, 0.74);
    font-family: "IBM Plex Sans", Arial, sans-serif;
    font-size: 10px;
    line-height: 1.22;
    font-weight: 400;
    text-transform: uppercase;
    max-width: 210px;
    margin: 0 auto;
    transition: opacity 0.3s ease;
  }

  .project-metric-mobile.is-prev {
    top: 30%;
    opacity: 0.42;
  }

  .project-metric-mobile.is-prev .project-metric-mobile__value {
    font-size: 52px;
    opacity: 0.62;
  }

  .project-metric-mobile.is-prev .project-metric-mobile__label {
    opacity: 0.55;
  }

  .project-metric-mobile.is-active {
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
  }

  .project-metric-mobile.is-active .project-metric-mobile__value {
    font-size: 104px;
    opacity: 1;
  }

  .project-metric-mobile.is-active .project-metric-mobile__label {
    opacity: 1;
  }

  .project-metric-mobile.is-next {
    top: 68%;
    opacity: 0.42;
  }

  .project-metric-mobile.is-next .project-metric-mobile__value {
    font-size: 52px;
    opacity: 0.62;
  }

  .project-metric-mobile.is-next .project-metric-mobile__label {
    opacity: 0.55;
  }
}
/* tablet */
@media (max-width: 1024px) {
  .project-case {
    padding: 66px 16px 78px;
  }

  .project-case__container {
    width: calc(100% - 32px);
    gap: 30px;
  }

  .project-case__card {
    padding: 24px 24px 26px;
    border-radius: 24px;
  }

  .project-case__ring--1 {
    width: 980px;
    height: 620px;
  }

  .project-case__ring--2 {
    width: 740px;
    height: 470px;
  }

  .project-case__ring--3 {
    width: 500px;
    height: 320px;
  }
}

/* mobile */
@media (max-width: 768px) {
  .project-case {
    padding: 24px 16px 34px;
  }

  .project-case__container {
    width: calc(100% - 12px);
    gap: 30px;
  }

  .project-case__card {
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    border-radius: 0;
    text-align: left;
  }

  .project-case__title {
    margin-bottom: 10px;
    font-size: 30px;
    line-height: 0.95;
    letter-spacing: 0.04em;
  }

  .project-case__text {
    max-width: none;
    margin: 0;
    font-size: 16px;
    line-height: 1.42;
    color: rgba(255, 255, 255, 0.88);
  }

  .project-case__rings {
    display: none;
  }

  .project-case__plus {
    display: none;
  }

  .project-case__bg {
    display: none;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .project-hero-device {
    padding: 12px 0 34px;
  }

  .project-hero-device__container {
    width: calc(100% - 12px);
  }

  .project-hero-device__title {
    text-align: center;
    font-size: 48px;
    line-height: 0.92;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }

  .project-hero-device__stage {
    margin-top: 10px;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .project-device--laptop {
    display: none;
  }

  .project-device--phone {
    display: block;
    width: min(320px, 82vw);
    margin-top: 8px;
  }

  /* Подгони под свой PNG телефона */
  .project-device__screen--phone {
    top: 0.2%;
    left: 50%;
    transform: translateX(-50%);
    width: 96.2%;
    height: 99.4%;
    border-radius: 34px;
  }

  .project-hero-device__tags {
    left: 0;
    right: 0;
    bottom: 34px;
    padding: 0 0;
    justify-content: space-between;
  }

  .project-hero-device__tag {
    min-height: 38px;
    padding: 0 16px;
    font-size: 14px;
    letter-spacing: 0.12em;
  }

  .project-hero-device__plus {
    width: 18px;
    height: 18px;
    opacity: 0.34;
  }

  .project-hero-device__plus--left-top {
    top: 300px;
    left: 4px;
  }

  .project-hero-device__plus--right-top {
    top: auto;
    right: 4px;
    bottom: 130px;
  }

  .project-hero-device__plus--left-bottom {
    bottom: 14px;
    left: 4px;
  }

  .project-hero-device__plus--right-bottom {
    display: none;
  }

  .project-hero-device::after {
    width: 620px;
    height: 200px;
    bottom: -120px;
  }
}

/* =========================
   NEXT PROJECT SECTION
========================= */

.project-next {
  position: relative;
  z-index: 3;
  margin: 0 auto;
  margin-top: 28px;
  margin-bottom: -34px;
}

.project-next__top-card {
  background: var(--grad-top);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.18);
}

.project-next__bottom-card {
  background: var(--grad-middle);
  height: 50px;
}

/* top */
.project-next__top-card {
  position: relative;
  min-height: 234px;
  border-radius: 0 0 34px 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-next__plus {
  position: absolute;
  top: 50%;
  width: 22px;
  height: 22px;
  opacity: 0.42;
  transform: translateY(-50%);
}

.project-next__plus--left {
  left: 46px;
}

.project-next__plus--right {
  right: 46px;
}

.project-next__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  background: #2255dd;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  border-radius: 50px;
  font-style: italic;
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.35),
    0 4px 10px rgba(34, 85, 221, 0.45);
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.15s;
}

.project-next__cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.38),
    0 6px 14px rgba(34, 85, 221, 0.5);
}

/* bottom */
.project-next__middle-card {
  margin-top: 0;
  min-height: 190px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 44px 38px;
  text-decoration: none;
  color: #fff;
}

.project-next__title {
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(58px, 5vw, 92px);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #f4f4f4;
}

.project-next__arrow-wrap {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #2255dd;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.35),
    0 4px 10px rgba(34, 85, 221, 0.45);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.project-next__arrow {
  width: 34px;
  height: 34px;
  transform: rotate(90deg);
}

.project-next__bottom-card:hover .project-next__arrow-wrap {
  transform: translateY(-2px);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.38),
    0 6px 14px rgba(34, 85, 221, 0.5);
}

/* tablet */
@media (max-width: 1024px) {
  .project-next {
    width: calc(100% - 12px);
    margin-top: 18px;
  }

  .project-next__top-card {
    min-height: 170px;
    border-radius: 0 0 28px 28px;
  }

  .project-next__bottom-card {
    min-height: 50px;
    padding: 26px 28px 30px;
    border-radius: 28px 28px 0 0;
  }

  .project-next__cta {
    font-size: 22px;
    padding: 12px 28px;
  }

  .project-next__arrow-wrap {
    width: 82px;
    height: 82px;
  }

  .project-next__arrow {
    width: 28px;
    height: 28px;
  }
}

/* mobile */
@media (max-width: 768px) {
  .project-next {
    width: calc(100% - 8px);
    margin-top: 10px;
    margin-bottom: -18px;
  }

  .project-next__top-card {
    min-height: 138px;
    border-radius: 0 0 24px 24px;
  }

  .project-next__plus {
    display: none;
  }

  .project-next__cta {
    font-size: 26px;
    padding: 14px 34px;
    border-radius: 999px;
    letter-spacing: 0.1em;
  }

  .project-next__bottom-card {
    min-height: 50px;
    border-radius: 24px 24px 0 0;
    padding: 18px 18px 22px;
    align-items: center;
  }

  .project-next__title {
    font-size: 38px;
    line-height: 0.95;
    max-width: 220px;
  }

  .project-next__arrow-wrap {
    width: 72px;
    height: 72px;
  }

  .project-next__arrow {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 540px) {
  .project-next__cta {
    font-size: 16px;
  }
  .project-next__middle-card {
    padding: 32px 14px 38px;
  }
  .project-next__arrow-wrap {
    width: 42px;
    height: 42px;
  }
  .project-next__arrow {
    width: 16px;
  }
}

/* about page  */

/* =========================
   ABOUT HERO
========================= */

.about-page__hero {
  z-index: 1;
  background: transparent;
}

.wrapper-for-bg {
  background: linear-gradient(to bottom, #020715 0%, #081536 100%);
}

.about-hero {
  position: relative;
  margin-top: -188px; /* фото заходит под header */
  min-height: 980px;
  overflow: hidden;
  isolation: isolate;
}

.about-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1);
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(2, 7, 21, 0.32) 0%,
    rgba(2, 7, 21, 0.16) 24%,
    rgba(2, 7, 21, 0.12) 56%,
    rgba(2, 7, 21, 0.48) 78%,
    rgba(2, 7, 21, 0.96) 100%
  );
}

.about-hero__container {
  position: relative;
  z-index: 2;
  width: min(1540px, calc(100% - 48px));
  margin: 0 auto;
  min-height: 980px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 250px;
  padding-bottom: 70px;
}

.about-hero__title {
  text-align: center;
  text-transform: uppercase;
  color: #f4f4f4;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 0.95;
}

.about-hero__title span {
  display: block;
}

.about-hero__title span:first-child {
  font-size: clamp(68px, 6vw, 116px);
  margin-bottom: 10px;
}

.about-hero__title span:last-child {
  font-size: clamp(58px, 5.4vw, 102px);
}

.about-hero__meta {
  width: min(1120px, 100%);
  margin-top: 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.76);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-hero__text {
  max-width: 1160px;
  margin-top: 180px;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(22px, 1.9vw, 36px);
  line-height: 1.36;
  font-weight: 500;
}

.about-hero__year {
  margin-top: auto;
  text-align: center;
  color: #f4f4f4;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(72px, 6.2vw, 132px);
  line-height: 0.9;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.about-hero__plus {
  position: absolute;
  z-index: 2;
  width: 22px;
  height: 22px;
  opacity: 0.42;
}

.about-hero__plus--left {
  left: 36px;
  top: 390px;
}

.about-hero__plus--center {
  left: 50%;
  top: 390px;
  transform: translateX(-50%);
}

.about-hero__plus--right {
  right: 36px;
  top: 390px;
}

.about__card {
  border: none;
  box-shadow: none;
  background: none;
}

/* tablet */
@media (max-width: 1024px) {
  .about-hero {
    margin-top: -152px;
    min-height: 860px;
  }

  .about-hero__container {
    width: calc(100% - 24px);
    min-height: 860px;
    padding-top: 220px;
    padding-bottom: 54px;
  }

  .about-hero__meta {
    width: min(760px, 100%);
    margin-top: 32px;
    font-size: 16px;
  }

  .about-hero__text {
    margin-top: 130px;
    max-width: 820px;
  }

  .about-hero__plus--left,
  .about-hero__plus--center,
  .about-hero__plus--right {
    top: 360px;
  }
}

/* mobile */
@media (max-width: 768px) {
  .about-hero {
    margin-top: -96px;
    min-height: 760px;
  }

  .about-hero__container {
    width: calc(100% - 24px);
    min-height: 760px;
    align-items: flex-start;
    padding-top: 118px;
    padding-bottom: 38px;
  }

  .about-hero__title {
    text-align: left;
    max-width: 320px;
  }

  .about-hero__title span:first-child {
    font-size: 38px;
    margin-bottom: 4px;
  }

  .about-hero__title span:last-child {
    font-size: 38px;
    line-height: 0.95;
  }

  .about-hero__meta {
    width: auto;
    margin-top: 18px;
    justify-content: flex-start;
    gap: 0;
    font-size: 14px;
  }

  .about-hero__meta span:last-child {
    display: none;
  }

  .about-hero__text {
    max-width: 250px;
    margin-top: 122px;
    text-align: left;
    font-size: 18px;
    line-height: 1.38;
  }

  .about-hero__year {
    width: 100%;
    margin-top: auto;
    text-align: center;
    font-size: 64px;
  }

  .about-hero__plus {
    width: 20px;
    height: 20px;
  }

  .about-hero__plus--left {
    left: 50%;
    top: 272px;
    transform: translateX(-50%);
  }

  .about-hero__plus--center {
    left: 50%;
    top: auto;
    bottom: 150px;
    transform: translateX(-50%);
  }

  .about-hero__plus--right {
    display: none;
  }
}

@media (max-width: 480px) {
  .about-hero {
    margin-top: -88px;
    min-height: 720px;
  }

  .about-hero__container {
    width: calc(100% - 16px);
    padding-top: 108px;
  }

  .about-hero__title {
    max-width: 290px;
  }

  .about-hero__title span:first-child,
  .about-hero__title span:last-child {
    font-size: 32px;
  }

  .about-hero__text {
    max-width: 235px;
    margin-top: 112px;
    font-size: 16px;
  }

  .about-hero__year {
    font-size: 58px;
  }
}

.services-accordion {
  position: relative;
  padding: 28px 0 40px;

  overflow: hidden;
}

.services-accordion__container {
  width: min(1540px, calc(100% - 38px));
  margin: 0 auto;
}

.services-accordion__eyebrow {
  margin-bottom: 48px;
  text-align: center;
  color: #ffffff;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.services-accordion__plus {
  position: absolute;
  top: 28px;
  width: 22px;
  height: 22px;
  opacity: 0.42;
}

.services-accordion__plus--left {
  left: 14px;
}

.services-accordion__plus--right {
  right: 14px;
}

.services-accordion__stack {
  position: relative;
  padding-top: 22px;
  padding-bottom: 12px;
  display: flex;
  flex-direction: column;
}

.service-card {
  position: relative;
  margin-top: -22px;
  border-radius: 24px 24px 0 0;
  background: var(--card-bg);
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.service-card:first-child {
  margin-top: 0;
}

.service-card:hover {
  transform: translateY(-2px);
}

.service-card.is-open {
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.service-card__header {
  width: 100%;
  min-height: 132px;
  padding: 34px 32px 30px;
  border: 0;
  background: transparent;
  color: #f2f2f2;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.service-card__title {
  display: block;
  max-width: 100%;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(28px, 2.65vw, 54px);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.service-card__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s ease;
}

.service-card.is-open .service-card__content {
  grid-template-rows: 1fr;
}

.service-card__content-inner {
  overflow: hidden;
  padding: 0 32px;
}

.service-card.is-open .service-card__content-inner {
  padding-bottom: 44px;
}

.service-card__text {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 500;
}

.service-card__btn {
  width: fit-content;
  min-width: 85px;
  height: 34px;
  margin: 36px auto 38px;
  padding: 9px 18px;
  border-radius: 999px;
  display: block;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 14px;
  line-height: 1;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #2e63ff 0%, #234fd0 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 10px 20px rgba(0, 0, 0, 0.22),
    0 4px 12px rgba(46, 99, 255, 0.26);
  text-align: center;
}

.service-card__price {
  text-align: center;
  color: #ffffff;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 500;
  padding-bottom: 2px;
}

.service-card:nth-child(1) {
  z-index: 1;
}
.service-card:nth-child(2) {
  z-index: 2;
}
.service-card:nth-child(3) {
  z-index: 3;
}
.service-card:nth-child(4) {
  z-index: 4;
}
.service-card:nth-child(5) {
  z-index: 5;
}
.service-card:nth-child(6) {
  z-index: 6;
  border-radius: 28px;
}

.services-accordion__container .project-team__title {
  font-weight: 700;
}

@media (max-width: 1024px) {
  .services-accordion {
    padding: 18px 0 28px;
  }

  .services-accordion__container {
    width: calc(100% - 12px);
  }

  .services-accordion__eyebrow {
    margin-bottom: 26px;
    font-size: 22px;
    letter-spacing: 0.08em;
  }

  .services-accordion__plus {
    display: none;
  }

  .services-accordion__stack {
    padding-top: 10px;
  }

  .service-card {
    margin-top: -16px;
    border-radius: 22px;
  }

  .service-card__header {
    min-height: 82px;
    padding: 18px 14px 16px;
  }

  .service-card__title {
    font-size: 22px;
    line-height: 0.98;
    letter-spacing: 0.06em;
  }

  .service-card__content-inner {
    padding: 0 16px;
  }

  .service-card.is-open .service-card__content-inner {
    padding-bottom: 28px;
  }

  .service-card__text {
    max-width: 300px;
    font-size: 12px;
    line-height: 1.3;
  }

  .service-card__btn {
    min-width: 74px;
    height: 32px;
    margin: 16px auto 16px;
    padding: 8px 16px;
    font-size: 12px;
    letter-spacing: 0.14em;
  }

  .service-card__price {
    font-size: 12px;
  }
}

@media (max-width: 540px) {
  .services-accordion {
    padding: 18px 0 8px;
  }

  .services-accordion__container {
    width: 100%;
  }

  .services-accordion__eyebrow {
    margin-bottom: 18px;
    font-size: 22px;
  }

  .services-accordion__stack {
    padding-top: 0;
    padding-bottom: 0;
  }

  .service-card {
    margin-top: -14px;
    border-radius: 22px 22px 0 0;
  }

  .service-card__header {
    min-height: 72px;
    padding: 16px 12px 14px;
  }

  .service-card__title {
    font-size: clamp(14px, 5vw, 19px);
    line-height: 0.95;
    letter-spacing: 0.06em;
  }

  .service-card__content-inner {
    padding: 0 12px;
  }

  .service-card.is-open .service-card__content-inner {
    padding-bottom: 20px;
  }

  .service-card__text {
    max-width: 240px;
    font-size: 10px;
    line-height: 1.32;
  }

  .service-card__btn {
    min-width: 67px;
    height: 30px;
    margin: 14px auto 14px;
    padding: 8px 14px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .service-card__price {
    font-size: 10px;
  }
}

.contacts-block {
  position: relative;

  overflow: hidden;
}

.contacts-block__cta {
  position: relative;
  z-index: 3;
  width: fit-content;
  min-width: 270px;
  height: 74px;
  margin: 0 auto -34px;
  padding: 0 34px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 28px;
  line-height: 1;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #2e63ff 0%, #234fd0 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 14px 28px rgba(0, 0, 0, 0.32),
    0 4px 12px rgba(46, 99, 255, 0.26);
  display: none;
}

.contacts-block__panel {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 610px;
  background: rgba(6, 14, 38, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 40px rgba(0, 0, 0, 0.24);
}

.contacts-block__info {
  padding: 72px 48px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contacts-block__logo {
  display: inline-flex;
  margin-bottom: 54px;
}

.contacts-block__logo img {
  display: block;
  width: 248px;
  height: auto;
}

.contacts-block__lead {
  margin-bottom: 46px;
  text-align: center;
  color: #ffffff;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 26px;
  line-height: 1.35;
  font-style: italic;
  font-weight: 400;
}

.contacts-block__actions {
  display: flex;
  gap: 18px;
  margin-bottom: 56px;
}

.contacts-block__action {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 20px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.contacts-block__action img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.contacts-block__meta {
  text-align: center;
}

.contacts-block__time {
  margin-bottom: 18px;
  color: #ffffff;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 500;
}

.contacts-block__address {
  color: #ffffff;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 22px;
  line-height: 1.32;
  font-weight: 400;
}

.contacts-block__map-wrap {
  position: relative;
  min-height: 610px;
  background: #e9e9e9;
}

.contacts-block__map {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 610px;
  border: 0;
  filter: grayscale(1) contrast(0.96) brightness(1.02);
}

.about-bottom {
  margin-top: -50px;
  border-radius: 28px 28px 0 0;
  position: relative;
}

.about-top {
  border-radius: 0 0 28px 28px;
  position: relative;
  z-index: 2;
  background: #071733;
}

.contacts-block__inner {
  margin-top: -50px;
}

/* tablet */
@media (max-width: 1024px) {
  .contacts-block__inner {
    width: calc(100% - 12px);
  }

  .contacts-block__cta {
    min-width: 208px;
    height: 58px;
    margin-bottom: -20px;
    padding: 0 24px;
    font-size: 18px;
  }

  .contacts-block__panel {
    min-height: 520px;
    border-radius: 24px;
  }

  .contacts-block__info {
    padding: 54px 28px 28px;
  }

  .contacts-block__logo {
    margin-bottom: 36px;
  }

  .contacts-block__logo img {
    width: 180px;
  }

  .contacts-block__actions {
    margin-bottom: 40px;
  }

  .contacts-block__action {
    width: 66px;
    height: 66px;
  }

  .contacts-block__action img {
    width: 28px;
    height: 28px;
  }

  .contacts-block__time {
    margin-bottom: 14px;
    font-size: 22px;
  }

  .contacts-block__address {
    font-size: 18px;
  }

  .contacts-block__map-wrap,
  .contacts-block__map {
    min-height: 520px;
  }
}

/* mobile */
@media (max-width: 768px) {
  .contacts-block {
    padding: 14px 0 0;
  }

  .contacts-block__inner {
    width: 100%;
  }

  .contacts-block__cta {
    min-width: 244px;
    height: 58px;
    margin: 0 auto -8px;
    padding: 0 24px;
    font-size: 17px;
    letter-spacing: 0.12em;
  }

  .contacts-block__panel {
    display: flex;
    flex-direction: column;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    min-height: 0;
  }

  .contacts-block__map-wrap {
    order: 1;
    min-height: 720px;
    border-radius: 0;
    overflow: hidden;
  }

  .contacts-block__map {
    min-height: 720px;
  }

  .contacts-block__info {
    order: 2;
    margin-top: -22px;
    padding: 36px 16px 28px;

    position: relative;
    z-index: 2;
  }

  .contacts-block__logo {
    display: none;
  }

  .contacts-block__lead {
    display: none;
  }

  .contacts-block__actions {
    gap: 18px;
    margin-bottom: 34px;
  }

  .contacts-block__action {
    width: 82px;
    height: 82px;
  }

  .contacts-block__action img {
    width: 34px;
    height: 34px;
  }

  .contacts-block__time {
    margin-bottom: 14px;
    font-size: 24px;
  }

  .contacts-block__address {
    max-width: 320px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.34;
  }

  .contacts-block__cta {
    display: flex;
    text-align: center;
  }

  .about-bottom {
    display: none;
  }

  .contacts-block__inner {
    margin-top: -90px;
  }

  .about-top {
    height: 120px;
  }

  .contacts-block__info {
    background: var(--grad-middle);
  }
}

@media (max-width: 480px) {
  .contacts-block__cta {
    min-width: 248px;
    height: 56px;
    font-size: 16px;
  }

  .contacts-block__map-wrap,
  .contacts-block__map {
    min-height: 710px;
  }

  .contacts-block__info {
    padding: 34px 14px 26px;
  }

  .contacts-block__action {
    width: 76px;
    height: 76px;
  }

  .contacts-block__time {
    font-size: 21px;
  }

  .contacts-block__address {
    font-size: 16px;
  }
}

/* SERVICES PAGE  */

.services-hero {
  position: relative;
  padding: 18px 0 34px;
}

.services-hero__inner {
  width: min(1540px, calc(100% - 48px));
  margin: 0 auto;
}

.services-hero__media {
  position: relative;
  min-height: 760px;
  border-radius: 34px;
  overflow: hidden;
  background: #7b7b7b;
}

.services-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) contrast(1.02);
}

.services-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(8, 12, 24, 0.72) 0%,
      rgba(8, 12, 24, 0.22) 24%,
      rgba(8, 12, 24, 0.06) 48%,
      rgba(8, 12, 24, 0.12) 100%
    ),
    linear-gradient(
      180deg,
      rgba(8, 12, 24, 0.14) 0%,
      rgba(8, 12, 24, 0.08) 100%
    );
  pointer-events: none;
}

.services-hero__title {
  position: absolute;
  z-index: 2;
  margin: 0;
  color: #f5f5f5;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.services-hero__title--desktop {
  top: 58px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(52px, 4.6vw, 88px);
  line-height: 0.92;
  text-align: center;
  white-space: nowrap;
}

.services-hero__title--mobile {
  display: none;
}

.services-hero__ghost {
  position: absolute;
  left: 50%;
  bottom: 104px;
  transform: translateX(-50%);
  z-index: 1;
  text-align: center;
  color: rgba(255, 255, 255, 0.08);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(92px, 8vw, 160px);
  line-height: 0.82;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  pointer-events: none;
  user-select: none;
}

.services-hero__text {
  position: absolute;
  left: 50%;
  bottom: 114px;
  transform: translateX(-50%);
  z-index: 2;
  margin: 0;
  max-width: 620px;
  text-align: center;
  color: #ffffff;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(22px, 1.9vw, 34px);
  line-height: 1.18;
  font-weight: 500;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.services-hero__arrow {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  z-index: 2;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  animation: servicesArrowFloat 1.8s ease-in-out infinite;
}

.services-hero__arrow img {
  width: 100%;
  height: 100%;
  display: block;
  transform: rotate(180deg);
}

@keyframes servicesArrowFloat {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

.about-accordion {
  margin-top: 60px;
}

/* tablet */
@media (max-width: 1024px) {
  .services-hero {
    padding: 12px 0 22px;
  }

  .services-hero__inner {
    width: calc(100% - 16px);
  }

  .services-hero__media {
    min-height: 660px;
    border-radius: 28px;
  }

  .services-hero__title--desktop {
    top: 46px;
    font-size: clamp(42px, 6vw, 68px);
  }

  .services-hero__ghost {
    bottom: 114px;
    font-size: clamp(70px, 10vw, 122px);
  }

  .services-hero__text {
    bottom: 116px;
    max-width: 520px;
    font-size: 22px;
  }
}

/* mobile */
@media (max-width: 768px) {
  .services-hero {
    padding: 0;
    margin-top: -56px;
    position: relative;
    z-index: 1;
  }

  .services-hero__inner {
    width: 100%;
  }

  .services-hero__media {
    min-height: 940px;
    border-radius: 0 0 24px 24px;
  }

  .services-hero__image {
    object-position: center center;
  }

  .services-hero__overlay {
    background:
      linear-gradient(
        180deg,
        rgba(8, 12, 24, 0.14) 0%,
        rgba(8, 12, 24, 0.08) 100%
      ),
      linear-gradient(
        90deg,
        rgba(8, 12, 24, 0.24) 0%,
        rgba(8, 12, 24, 0.06) 45%,
        rgba(8, 12, 24, 0.18) 100%
      );
  }

  .services-hero__title--desktop {
    display: none;
  }

  .services-hero__title--mobile {
    display: block;
    top: 136px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 52px;
    line-height: 0.92;
    text-align: center;
  }

  .services-hero__ghost {
    left: 50%;
    right: auto;
    bottom: 116px;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    font-size: 88px;
    line-height: 0.82;
    color: rgba(255, 255, 255, 0.08);
  
  }

  .services-hero__text {
    left: 50%;
    bottom: 142px;
    width: calc(100% - 48px);
    max-width: 340px;
    transform: translateX(-50%);
    font-size: 24px;
    line-height: 1.18;
  }

  .services-hero__arrow {
    bottom: 52px;
    width: 42px;
    height: 42px;
  }

  .services-header {
    z-index: 20;
    background: transparent;
    padding: 0 0 0;
  }
}

@media (max-width: 480px) {
  .services-hero {
    margin-top: -52px;
  }

  .services-hero__media {
    min-height: 900px;
  }

  .services-hero__title--mobile {
    top: 102px;
    
    font-size: 38px;
  }

  

  .services-hero__text {
    bottom: 45%;
    max-width: 320px;
    font-size: 23px;
  }

  .services-hero__arrow {
    bottom: 30%;
    width: 38px;
    height: 38px;
  }
}

.more-services__container {
  position: relative;
  width: 100%;
  max-width: 1540px;
  margin: 0 auto;
  padding: 80px 0;

  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 95vw;
}

/* плюсы по краям */
.more-services__container img {
  width: 22px;
  height: 22px;
  opacity: 0.42;
}

/* кнопка */
.services-btn {
  position: relative;
  margin: 0 auto;

  min-width: 420px;
  height: 64px;
  padding: 0 48px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  text-decoration: none;

  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 24px;
  line-height: 1;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  color: #ffffff;

  background: linear-gradient(180deg, #2e63ff 0%, #234fd0 100%);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 14px 28px rgba(0, 0, 0, 0.32),
    0 4px 12px rgba(46, 99, 255, 0.26);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.services-btn:hover {
  transform: translateY(-2px);
}

/* tablet */
@media (max-width: 1024px) {
  .more-services__container {
    padding: 60px 0;
  }

  .services-btn {
    min-width: 280px;
    height: 62px;
    font-size: 18px;
    letter-spacing: 0.12em;
  }
}

/* mobile */
@media (max-width: 768px) {
  .more-services__container {
    justify-content: center;
  }

  .more-services__container img {
    display: none;
  }

  .services-btn {
    min-width: 240px;
    height: 56px;
    padding: 0 28px;

    font-size: 18px;
    letter-spacing: 0.14em;
  }
}

@media (max-width: 480px) {
  .services-btn {
    min-width: 220px;
    height: 52px;
    font-size: 16px;
  }
}

/* SERVICES SINGLE */

.service-single-hero {
  position: relative;
  padding: 0 0 42px;
  overflow: hidden;
}

.service-single-hero__inner {
  position: relative;
  width: min(1720px, calc(100% - 48px));
  min-height: 860px;
  margin: 0 auto;
  padding: 88px 0 60px;
}

.service-single-hero__bg-blur {
  position: absolute;
  left: 50%;
  top: -220px;
  width: 960px;
  height: 960px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(40, 86, 218, 0.34) 0%,
    rgba(24, 56, 152, 0.2) 28%,
    rgba(10, 20, 58, 0.08) 52%,
    rgba(0, 0, 0, 0) 74%
  );
  filter: blur(26px);
  pointer-events: none;
}

.service-single-hero__radial {
  position: absolute;
  inset: 0 0 0 50%;
  width: min(1760px, 115vw);
  max-width: none;
  transform: translateX(-50%);
  opacity: 1;
  pointer-events: none;
  user-select: none;
}

.service-single-hero__side {
  position: absolute;
  top: 364px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.72);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.service-single-hero__side--left {
  left: 0;
}

.service-single-hero__side--right {
  right: 0;
}

.service-single-hero__next {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.service-single-hero__next img {
  width: 34px;
  height: 34px;
  display: block;
  transform: rotate(90deg);
}

.service-single-hero__content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 210px auto 0;
  text-align: center;
}

.service-single-hero__title {
  margin: 0 0 26px;
  color: #f5f5f5;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(62px, 5vw, 98px);
  line-height: 0.9;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-single-hero__subtitle {
  margin: 0;
  color: #ffffff;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(28px, 2vw, 42px);
  line-height: 1.14;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.service-single-hero__description {
  display: none;
}

.service-single-hero__arrow {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 2;
  width: 34px;
  height: 34px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: serviceSingleArrowFloat 1.8s ease-in-out infinite;
  text-decoration: none;
}

.service-single-hero__arrow img {
  width: 100%;
  height: 100%;
  display: block;
  transform: rotate(180deg);
}

@keyframes serviceSingleArrowFloat {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

.services-single-header {
  background: transparent;
}

.services-page {
  margin-top: -110px;
}

.service-single-description {
  display: block;
  padding: 80px 0;
}

.service-single-description__inner {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
}

.service-single-description p {
  margin: 0;

  color: #ffffff;
  font-family: "IBM Plex Sans", Arial, sans-serif;

  font-size: clamp(22px, 1.8vw, 34px);
  line-height: 1.5;
  font-weight: 400;

  opacity: 0.92;
}

/* desktop wider tuning */
@media (min-width: 1600px) {
  .service-single-hero__content {
    margin-top: 235px;
  }

  .service-single-hero__side {
    top: 378px;
  }
}

/* tablet */
@media (max-width: 1024px) {
  .service-single-hero__inner {
    width: calc(100% - 24px);
    min-height: 760px;
    padding: 60px 0 54px;
  }

  .service-single-hero__bg-blur {
    top: -170px;
    width: 760px;
    height: 760px;
  }

  .service-single-hero__radial {
    inset: -10px 0 0 50%;
    width: 1500px;
    opacity: 0.32;
  }

  .service-single-hero__content {
    max-width: 760px;
    margin-top: 220px;
  }

  .service-single-hero__title {
    font-size: clamp(50px, 6vw, 72px);
  }

  .service-single-hero__subtitle {
    font-size: 24px;
  }

  .service-single-hero__side {
    top: 316px;
    font-size: 18px;
  }

  .service-single-hero__next img {
    width: 28px;
    height: 28px;
  }
}

/* mobile */
@media (max-width: 768px) {
  .service-single-hero {
    margin-top: -58px;
    padding-bottom: 24px;
  }

  .service-single-hero__inner {
    width: 100%;
    min-height: 918px;
    padding: 0 0 40px;
  }

  .service-single-hero__bg-blur {
    left: 50%;
    top: -90px;
    width: 560px;
    height: 760px;
    transform: translateX(-50%);
    background: radial-gradient(
      circle,
      rgba(43, 92, 228, 0.26) 0%,
      rgba(24, 56, 152, 0.16) 30%,
      rgba(0, 0, 0, 0) 72%
    );
    filter: blur(18px);
  }

  .service-single-hero__radial {
    top: -50%;
    left: 50%;
    width: 4000px;
    transform: translateX(-50%);
    opacity: 1;
  }

  .service-single-hero__side {
    top: 170px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 24px;
  }

  .service-single-hero__side--right {
    display: none;
  }

  .service-single-hero__content {
    max-width: 100%;
    margin: 0 auto;
    padding: 400px 6px 0;
  }

  .service-single-hero__title {
    margin-bottom: 0;
    font-size: clamp(34px, 9vw, 56px);
    line-height: 0.93;
    text-align: center;
  }

  .service-single-hero__subtitle {
    display: none;
  }

  .service-single-hero__description {
    display: block;
    position: relative;
    z-index: 2;
    margin: 164px 0 0;
    padding: 0 16px;
    color: #ffffff;
    font-family: "IBM Plex Sans", Arial, sans-serif;
    font-size: 25px;
    line-height: 1.42;
    font-weight: 500;
    letter-spacing: -0.01em;
  }

  .service-single-hero__arrow {
    bottom: 20px;
    width: 42px;
    height: 42px;
  }

  .service-single-hero__arrow {
    display: none;
  }

  .service-single-description {
    display: none;
  }
}

.service-steps {
  padding: 82px 0 88px;
}

.service-steps__inner {
  width: min(1920px, calc(100% - 96px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 620px) 1fr minmax(320px, 620px);
  align-items: start;
  column-gap: 48px;
}

.service-step {
  max-width: 620px;
}

.service-step--right {
  justify-self: end;
  text-align: right;
}

.service-step__num {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.95);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(64px, 4.4vw, 96px);
  line-height: 0.88;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.service-step__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(22px, 1.6vw, 30px);
  line-height: 1.42;
  font-weight: 400;
}

.service-steps__plus {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 72px;
}

.service-steps__plus img {
  width: 22px;
  height: 22px;
  opacity: 0.42;
  display: block;
}

/* tablet */
@media (max-width: 1024px) {
  .service-steps {
    padding: 58px 0 64px;
  }

  .service-steps__inner {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    row-gap: 42px;
  }

  .service-steps__plus {
    display: none;
  }

  .service-step,
  .service-step--right {
    max-width: 100%;
    justify-self: start;
    text-align: left;
  }

  .service-step__num {
    margin-bottom: 18px;
    font-size: 72px;
  }

  .service-step__text {
    max-width: 720px;
    font-size: 22px;
    line-height: 1.4;
  }
}

/* mobile */
@media (max-width: 768px) {
  .service-steps {
    padding: 24px 16px 30px;
  }

  .service-steps__inner {
    width: 100%;
    row-gap: 46px;
  }

  .service-step__num {
    margin-bottom: 20px;
    font-size: 60px;
    line-height: 0.9;
  }

  .service-step__text {
    font-size: 17px;
    line-height: 1.42;
  }
}

@media (max-width: 480px) {
  .service-step__num {
    font-size: 58px;
  }

  .service-step__text {
    font-size: 16px;
  }
}

.work-showcase {
  padding: 0 0 26px;
}

.work-showcase__head {
  padding: 26px 24px 38px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.work-showcase__title {
  margin: 0;
  color: #ffffff;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(34px, 3vw, 56px);
  line-height: 0.96;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
}

.work-showcase__slider {
  overflow: hidden;
}

.work-showcase__slider .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  transform: none !important;
}

.work-showcase__slider .swiper-slide {
  width: auto !important;
  height: auto;
  flex-shrink: 0;
}

.work-card {
  position: relative;
  overflow: hidden;
  height: 844px;
}

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

/* pagination hidden on desktop */
.work-showcase__pagination {
  display: none;
}

/* tablet */
@media (max-width: 1024px) {
  .work-showcase__head {
    padding: 20px 16px 28px;
  }

  .work-showcase__title {
    font-size: 40px;
  }

  .work-card {
    height: 620px;
  }
}

/* mobile */
@media (max-width: 768px) {
  .work-showcase {
    padding: 0 0 18px;
  }

  .work-showcase__head {
    padding: 18px 0 18px;
    justify-content: center;
  }

  .work-showcase__title {
    font-size: 27px;
    line-height: 0.94;
    text-align: center;
    max-width: 260px;
  }

  .work-showcase__slider {
    overflow: hidden;
    padding-bottom: 28px;
  }

  .work-showcase__slider .swiper-wrapper {
    display: flex;
    gap: 0;
    transform: translate3d(0, 0, 0);
  }

  .work-showcase__slider .swiper-slide {
    width: 66.4% !important;
    flex-shrink: 0;
  }

  .work-card {
    height: 614px;
  }

  .work-showcase__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
    position: static;
  }

  .work-showcase__pagination .swiper-pagination-bullet {
    margin: 0 !important;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.34);
    opacity: 1;
    transition:
      transform 0.25s ease,
      background-color 0.25s ease;
  }

  .work-showcase__pagination .swiper-pagination-bullet-active {
    background: #ffffff;
    transform: scale(1.08);
  }
}

@media (max-width: 480px) {
  .work-showcase__title {
    font-size: 25px;
    max-width: 220px;
  }

  .work-showcase__slider .swiper-slide {
    width: 65.5% !important;
  }

  .work-card {
    height: 426px;
  }
}

/* blog page */

.blog-page {
  position: relative;
  padding: 26px 0 56px;
}

.blog-page__inner {
  width: min(1540px, calc(100% - 40px));
  margin: 0 auto;
}

.blog-page__plus {
  position: absolute;
  top: 44px;
  width: 22px;
  height: 22px;
  opacity: 0.42;
}

.blog-page__plus--left {
  left: 20px;
}

.blog-page__plus--right {
  right: 20px;
}

.blog-page__title {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-align: center;
}

.blog-page__title--desktop {
  font-size: clamp(40px, 3.2vw, 62px);
  line-height: 0.95;
  margin-bottom: 62px;
}

.blog-page__title--mobile {
  display: none;
}

.blog-page__filters {
  width: fit-content;
  margin: 0 auto 62px;
  display: flex;
  align-items: center;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.blog-page__filter {
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.25s ease,
    opacity 0.25s ease;
}

.blog-page__filter.is-active {
  background: rgba(255, 255, 255, 0.12);
}

.blog-list {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.blog-card {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.blog-card.is-hidden {
  display: none;
}

.blog-card__link {
  display: grid;
  grid-template-columns: 232px minmax(0, 1fr) 34px;
  gap: 18px;
  align-items: start;
  padding: 16px 0 12px;
  text-decoration: none;
}

.blog-card__media {
  width: 232px;
  height: 148px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.blog-card__content {
  min-width: 0;
  padding-top: 4px;
}

.blog-card__title {
  margin: 0 0 58px;
  color: rgba(255, 255, 255, 0.72);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(30px, 2.2vw, 46px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.blog-card__date {
  color: rgba(255, 255, 255, 0.52);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
}

.blog-card__arrow {
  display: flex;
  justify-content: flex-end;
  padding-top: 8px;
}

.blog-card__arrow img {
  width: 26px;
  height: 26px;
  display: block;
  transform: rotate(45deg);
}

.blog-page__load-more-wrap {
  display: none;
}

/* tablet */
@media (max-width: 1024px) {
  .blog-page {
    padding: 22px 0 42px;
  }

  .blog-page__inner {
    width: calc(100% - 24px);
  }

  .blog-page__plus {
    display: none;
  }

  .blog-page__title--desktop {
    font-size: 40px;
    margin-bottom: 42px;
  }

  .blog-page__filters {
    margin-bottom: 38px;
  }

  .blog-card__link {
    grid-template-columns: 180px minmax(0, 1fr) 26px;
  }

  .blog-card__media {
    width: 180px;
    height: 116px;
  }

  .blog-card__title {
    margin-bottom: 38px;
    font-size: 22px;
  }
}

/* mobile */
@media (max-width: 768px) {
  .blog-page {
    padding: 10px 0 34px;
  }

  .blog-page__inner {
    width: 100%;
  }

  .blog-page__title--desktop {
    display: none;
  }

  .blog-page__title--mobile {
    display: block;
    font-size: 76px;
    line-height: 0.88;
    margin-bottom: 28px;
  }

  .blog-page__filters {
    margin: 0 auto 26px;
    min-height: 42px;
  }

  .blog-page__filter {
    min-height: 42px;
    padding: 0 18px;
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  .blog-list {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .blog-card__link {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 24px 16px 26px;
  }

  .blog-card__media {
    display: none;
  }

  .blog-card__arrow {
    display: none;
  }

  .blog-card__content {
    padding-top: 0;
  }

  .blog-card__title {
    margin: 0 0 58px;
    padding: 0 4px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 30px;
    line-height: 1.08;
    letter-spacing: -0.03em;
  }

  .blog-card__date {
    padding: 0 4px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.52);
  }

  .blog-page__load-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 34px;
  }

  .blog-page__load-more {
    min-width: 190px;
    height: 48px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, #2e63ff 0%, #234fd0 100%);
    color: #ffffff;
    font-family: "IBM Plex Sans", Arial, sans-serif;
    font-size: 15px;
    line-height: 1;
    font-style: italic;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.18),
      0 10px 20px rgba(0, 0, 0, 0.22),
      0 4px 12px rgba(46, 99, 255, 0.26);
    cursor: pointer;
  }
}

@media (max-width: 480px) {
  .blog-page__title--mobile {
    font-size: 66px;
  }

  .blog-page__title--mobile {
    margin-bottom: 26px;
  }

  .blog-page__filter {
    font-size: 11px;
    padding: 0 16px;
  }

  .blog-card__title {
    font-size: 28px;
    margin-bottom: 62px;
  }

  .blog-card__date {
    font-size: 16px;
  }

  .blog-page__load-more {
    min-width: 190px;
    height: 46px;
    font-size: 14px;
  }
}

.blog-subscribe {
  position: relative;
  padding: 46px 0 58px;
}

.blog-subscribe__inner {
  width: min(1540px, calc(100% - 40px));
  margin: 0 auto;
}

.blog-subscribe__plus {
  position: absolute;
  top: 50%;
  width: 22px;
  height: 22px;
  opacity: 0.42;
  transform: translateY(-50%);
}

.blog-subscribe__plus--left {
  left: 20px;
}

.blog-subscribe__plus--right {
  right: 20px;
}

.blog-subscribe__desktop {
  width: min(800px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 470px;
  align-items: stretch;
  border-radius: 999px;
  overflow: hidden;
}

.blog-subscribe__field {
  display: flex;
}

.blog-subscribe__field input {
  width: 100%;
  min-width: 0;
  height: 64px;
  padding: 0 24px;
  border: 0;
  outline: none;
  border-radius: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
  color: #ffffff;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
}

.blog-subscribe__field input::placeholder {
  color: rgba(255, 255, 255, 0.46);
}

.blog-subscribe__btn {
  min-width: 0;
  height: 64px;
  padding: 0 34px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(180deg, #2e63ff 0%, #234fd0 100%);
  color: #ffffff;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 26px;
  line-height: 1;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 10px 20px rgba(0, 0, 0, 0.22),
    0 4px 12px rgba(46, 99, 255, 0.26);
}

.blog-subscribe__mobile {
  display: none;
}

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

/* tablet */
@media (max-width: 1024px) {
  .blog-subscribe {
    padding: 34px 0 40px;
  }

  .blog-subscribe__inner {
    width: calc(100% - 24px);
  }

  .blog-subscribe__plus {
    display: none;
  }

  .blog-subscribe__desktop {
    width: min(720px, 100%);
    grid-template-columns: 1fr 380px;
  }

  .blog-subscribe__field input,
  .blog-subscribe__btn {
    height: 64px;
  }

  .blog-subscribe__field input {
    font-size: 20px;
  }

  .blog-subscribe__btn {
    font-size: 20px;
  }
}

/* mobile */
@media (max-width: 768px) {
  .blog-subscribe {
    padding: 30px 0 40px;
  }

  .blog-subscribe__inner {
    width: 100%;
  }

  .blog-subscribe__desktop {
    display: none;
  }

  .blog-subscribe__mobile {
    display: block;
    width: calc(100% - 40px);
    margin: 0 auto;
  }

  .blog-subscribe__title {
    margin: 0 0 22px;
    text-align: center;
    color: #ffffff;
    font-family: "IBM Plex Sans", Arial, sans-serif;
    font-size: 20px;
    line-height: 1;
    font-style: italic;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .blog-subscribe__mobile-row {
    position: relative;
    display: flex;
    align-items: center;
  }

  .blog-subscribe__field--mobile {
    width: 100%;
  }

  .blog-subscribe__field--mobile input {
    height: 60px;
    padding: 0 90px 0 18px;
    border-radius: 999px;
    font-size: 20px;
  }

  .blog-subscribe__mobile-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 76px;
    height: 60px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, #2e63ff 0%, #234fd0 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.18),
      0 10px 20px rgba(0, 0, 0, 0.22),
      0 4px 12px rgba(46, 99, 255, 0.26);
  }

  .blog-subscribe__mobile-btn img {
    width: 28px;
    height: 28px;
    display: block;
    transform: rotate(45deg);
  }
}

@media (max-width: 480px) {
  .blog-subscribe__mobile {
    width: calc(100% - 42px);
  }

  .blog-subscribe__title {
    font-size: 19px;
    margin-bottom: 18px;
  }

  .blog-subscribe__field--mobile input {
    height: 58px;
    font-size: 17px;
    padding-left: 18px;
  }

  .blog-subscribe__mobile-btn {
    width: 74px;
    height: 58px;
  }

  .blog-subscribe__mobile-btn img {
    width: 26px;
    height: 26px;
  }
}

/* blog page */

.article-single {
  position: relative;
}

.article-single__hero {
  padding: 0;
}

.article-single__hero-media {
  position: relative;
  min-height: 678px;
  border-radius: 0 0 34px 34px;
  overflow: hidden;
}

.article-single__hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(1);
}

.article-single__hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(8, 12, 24, 0.18) 0%,
      rgba(8, 12, 24, 0.26) 100%
    ),
    linear-gradient(
      90deg,
      rgba(8, 12, 24, 0.42) 0%,
      rgba(8, 12, 24, 0.08) 36%,
      rgba(8, 12, 24, 0.22) 100%
    );
}

.article-single__hero-date {
  position: absolute;
  left: 24px;
  bottom: 118px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.article-single__hero-content {
  position: absolute;
  top: 72px;
  right: 46px;
  z-index: 2;
  max-width: 720px;
  text-align: right;
}

.article-single__hero-title {
  margin: 0 0 26px;
  color: #ffffff;
  font-size: clamp(54px, 4.6vw, 84px);
  line-height: 0.92;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.article-single__hero-subtitle {
  margin: 0 0 0 auto;
  max-width: 430px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 20px;
  line-height: 1.35;
  font-weight: 500;
  text-align: left;
}

.article-single__hero-type {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.86);
  font-size: 26px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.article-single__hero-plus {
  position: absolute;
  bottom: 16px;
  width: 22px;
  height: 22px;
  opacity: 0.42;
  z-index: 2;
}

.article-single__hero-plus--left {
  left: 18px;
}

.article-single__hero-plus--right {
  right: 18px;
}

.article-single__body {
  position: relative;
  overflow: hidden;
  padding: 48px 0 56px;
}

.article-single__content {
  position: relative;
  z-index: 2;
  width: min(1540px, calc(100% - 40px));
  margin: 0 auto;
}

.article-single__rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 19% 49%,
      transparent 0 23%,
      rgba(255, 255, 255, 0.06) 23.2% 23.35%,
      transparent 23.5%
    ),
    radial-gradient(
      circle at 19% 49%,
      transparent 0 37%,
      rgba(255, 255, 255, 0.045) 37.2% 37.35%,
      transparent 37.5%
    ),
    radial-gradient(
      circle at 19% 49%,
      transparent 0 53%,
      rgba(255, 255, 255, 0.035) 53.2% 53.35%,
      transparent 53.5%
    );
  opacity: 0.9;
}

.article-single__body-plus {
  position: absolute;
  width: 22px;
  height: 22px;
  opacity: 0.42;
  z-index: 1;
}

.article-single__body-plus--left-top {
  left: 18px;
  top: 470px;
}

.article-single__body-plus--left-bottom {
  left: 18px;
  bottom: 420px;
}

.article-single__body-plus--right-bottom {
  right: 18px;
  bottom: 190px;
}

.article-single__grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(420px, 760px);
  column-gap: 80px;
}

.article-single__intro {
  margin-bottom: 82px;
}

.article-single__section {
  margin-bottom: 82px;
}

.article-single__split {
  align-items: start;
  margin-bottom: 112px;
}

.article-single__text p,
.article-single__text li {
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 400;
}

.article-single__text p {
  margin: 0 0 22px;
}

.article-single__text p:last-child {
  margin-bottom: 0;
}

.article-single__text ul {
  margin: 0 0 22px 0;
  padding-left: 18px;
}

.article-single__text li {
  margin-bottom: 6px;
}

.article-single__quote {
  position: relative;
  margin: 0;
  text-align: center;
}

.article-single__quote--center {
  margin: 0 auto 72px;
  max-width: 980px;
}

.article-single__quote--center p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(34px, 3vw, 58px);
  line-height: 0.98;
  font-style: italic;
  font-weight: 600;
  text-transform: uppercase;
}

.article-single__quote-mark {
  position: absolute;
  top: 10px;
  color: #2e63ff;
  font-size: 76px;
  line-height: 1;
  font-weight: 700;
}

.article-single__quote-mark--left {
  left: 70px;
}

.article-single__quote-mark--right {
  right: 70px;
  bottom: -18px;
  top: auto;
}

.article-single__split-title h2 {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(34px, 3vw, 56px);
  line-height: 0.98;
  font-style: italic;
  font-weight: 600;
  text-transform: uppercase;
}

.article-single__quote--bottom {
  margin: 0 0 68px;
}

.article-single__quote--bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(30px, 3vw, 52px);
  line-height: 1.08;
  font-style: italic;
  font-weight: 600;
  text-transform: uppercase;
  text-align: left;
}

.article-single__nav {
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
}

.article-single__nav-pill,
.article-single__author {
  min-height: 76px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.article-single__nav-pill {
  padding: 0 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-decoration: none;
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
}

.article-single__nav-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(180deg, #2e63ff 0%, #234fd0 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.article-single__nav-icon img {
  width: 24px;
  height: 24px;
  display: block;
}

.article-single__nav-pill--back .article-single__nav-icon img {
  transform: rotate(-90deg);
}

.article-single__nav-icon--next img {
  transform: rotate(90deg);
}

.article-single__author {
  padding: 0 10px 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.article-single__author-label {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
}

.article-single__author-person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.article-single__author-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.article-single__author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-single__author-name {
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
}

/* mobile */
@media (max-width: 768px) {
  .article-single__hero-media {
    min-height: 390px;
    border-radius: 0 0 28px 28px;
  }

  .article-single__hero-content {
    top: 110px;
    left: 8px;
    right: 8px;
    max-width: none;
    text-align: left;
  }

  .article-single__hero-title {
    margin-bottom: 14px;
    font-size: 26px;
    line-height: 0.95;
  }

  .article-single__hero-subtitle {
    margin: 0;
    max-width: 270px;
    font-size: 14px;
    line-height: 1.2;
  }

  .article-single__hero-date {
    display: none;
  }

  .article-single__hero-type {
    bottom: 56px;
    font-size: 18px;
    letter-spacing: 0.06em;
  }

  .article-single__hero-plus {
    display: none;
  }

  .article-single__body {
    padding: 28px 16px 34px;
  }

  .article-single__rings,
  .article-single__body-plus {
    display: none;
  }

  .article-single__content {
    width: calc(100% - 8px);
  }

  .article-single__grid {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .article-single__intro,
  .article-single__section,
  .article-single__split {
    margin-bottom: 34px;
  }

  .article-single__text p,
  .article-single__text li {
    font-size: 16px;
    line-height: 1.62;
  }

  .article-single__quote--center {
    margin-bottom: 34px;
    padding: 0 8px;
  }

  .article-single__quote--center p {
    font-size: 24px;
    line-height: 1.06;
  }

  .article-single__quote-mark {
    position: static;
    display: inline;
    font-size: 42px;
    line-height: 1;
  }

  .article-single__split-title {
    margin-bottom: 24px;
  }

  .article-single__split-title h2 {
    font-size: 24px;
    line-height: 1.04;
  }

  .article-single__quote--bottom {
    margin-bottom: 42px;
  }

  .article-single__quote--bottom p {
    font-size: 24px;
    line-height: 1.22;
  }

  .article-single__nav {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .article-single__author {
    order: 1;
    min-height: auto;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    justify-content: center;
    flex-direction: column;
    gap: 14px;
  }

  .article-single__author-label {
    display: none;
  }

  .article-single__author-person {
    flex-direction: column;
    gap: 12px;
  }

  .article-single__author-avatar {
    width: 78px;
    height: 78px;
  }

  .article-single__author-name {
    min-height: 40px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
  }

  .article-single__nav-pill {
    min-height: 52px;
    font-size: 14px;
  }

  .article-single__nav-icon {
    width: 40px;
    height: 40px;
  }

  .article-single__nav-icon img {
    width: 18px;
    height: 18px;
  }

  .article-single__nav-pill--next {
    order: 2;
  }

  .article-single__nav-pill--back {
    order: 3;
  }
}

.blog-single-header {
  background: transparent;
  z-index: 20;
}

.blog-single-page {
  margin-top: -110px;
}


header.projects-header.projects-header--mobile.upturnlab-global-header-mobile {
    padding-top: 10px;
}

.legal-header{
  background: transparent;
}