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

/* ============================================================
   RESET а
============================================================ */

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

html {
  scroll-behavior: smooth;
}

/* ============================================================
   DESIGN TOKENS
============================================================ */

:root {
  /* Gradients */
  --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 */
  --text-main: #fff;
  --text-soft: rgba(255, 255, 255, 0.76);
  --text-muted: rgba(255, 255, 255, 0.56);

  /* UI surfaces */
  --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);
  --card-bg: rgba(255, 255, 255, 0.04);

  /* Shadows */
  --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);
  --shadow-social:
    inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ============================================================
   BASE
============================================================ */

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

/* ============================================================
   UTILITY
============================================================ */

.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;
}

/* ============================================================
   LOCK SCROLL STATES
============================================================ */

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

/* ============================================================
   HERO — Homepage
============================================================ */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(to bottom, #00112c 0%, #001b4a 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  margin-bottom: -80px;
  z-index: 10;
}

/* alina start */
.hero-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(18px + env(safe-area-inset-top)) 32px 18px;
}
/* alina end  */

.hero-policy {
  font-size: 16px;
  letter-spacing: 0.12em;
  color: #f1f1f1;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-scroll-top {
  border: 0;
  background: none;
  width: 36px;
  height: 36px;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scrollArrow 1.8s ease-in-out infinite;
}

@keyframes scrollArrow {
  0% {
    transform: translateY(12px);
    opacity: 0.4;
  }
  40% {
    transform: translateY(0);
    opacity: 1;
  }
  60% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(12px);
    opacity: 0.4;
  }
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 32px;
  padding: 0 24px;
  margin-top: -40px;
}

.hero-title {
  font-size: clamp(32px, 5.5vw, 80px);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: #fff;
  text-transform: uppercase;
}

.hero-sub {
  font-size: clamp(14px, 1.3vw, 18px);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  max-width: 620px;
}

.hero-sub strong {
  color: #fff;
  font-weight: 700;
}

.hero-btn {
  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;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.45),
    0 6px 14px rgba(34, 85, 221, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.hero-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 32px;
}

.hero-logo,
.hero-socials {
  flex-shrink: 0;
}

.hero-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.hero-logo img {
  display: block;
  width: clamp(120px, 12vw, 200px);
  height: auto;
}

.hero-nav-links {
  display: flex;
  align-items: stretch;
  min-width: 0;
  max-width: 100%;
  border-radius: 999px;
  overflow: hidden;
}

.hero-nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.4vw, 28px);
  flex: 1 1 auto;
  min-width: 0;
  padding: 14px 24px;
  background: linear-gradient(
    90deg,
    rgba(18, 40, 85, 0.45) 0%,
    rgba(12, 30, 65, 0.6) 100%
  );
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-right: none;
}

.hero-nav-menu a {
  white-space: nowrap;
  font-size: clamp(10px, 0.8vw, 12px);
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 600;
}

.hero-nav-cta {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  white-space: nowrap;
  padding: 14px 24px;
  font-size: clamp(10px, 0.8vw, 12px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: #fff;
  background: var(--pill-bg-strong);
  border-radius: 0 999px 999px 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 6px 20px rgba(0, 0, 0, 0.35);
}

.hero-socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-socials a {
  display: flex;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.hero-socials a:hover {
  color: #fff;
}

.hero-copy {
  margin-left: 8px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  white-space: nowrap;
}

/* Decorative corner labels */
.corner {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.18);
  letter-spacing: 0.08em;
  line-height: 1.3;
}

/* alina start  */
.corner-tl {
  top: calc(env(safe-area-inset-top) + 56px);
  left: 10%;
}
.corner-tr {
  top: calc(env(safe-area-inset-top) + 56px);
  right: 10%;
}

.corner-bl {
  bottom: calc(env(safe-area-inset-bottom) + 80px);
  left: 15%;
}
.corner-br {
  bottom: calc(env(safe-area-inset-bottom) + 80px);
  right: 15%;
}

/* alina :end */

.corner-tl::before,
.corner-tr::before,
.corner-bl::before,
.corner-br::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border-color: rgba(255, 255, 255, 0.15);
  border-style: solid;
  position: absolute;
}

.corner-tl::before {
  top: -6px;
  left: -6px;
  border-width: 1px 0 0 1px;
}
.corner-tr::before {
  top: -6px;
  right: -6px;
  border-width: 1px 1px 0 0;
}
.corner-bl::before {
  bottom: -6px;
  left: -6px;
  border-width: 0 0 1px 1px;
}
.corner-br::before {
  bottom: -6px;
  right: -6px;
  border-width: 0 1px 1px 0;
}

/* ============================================================
   MOBILE TOPBAR & MENU — Homepage
============================================================ */

.mobile-topbar,
.mobile-menu {
  display: none;
}

.mobile-bottom {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(24px + env(safe-area-inset-bottom));
  z-index: 35;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 16px;
}

.mobile-bottom__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  flex-shrink: 0;
}

.mobile-bottom__logo img {
  display: block;
  width: 34px;
  height: auto;
}

.mobile-bottom__cta {
  min-width: 0;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    90deg,
    rgba(18, 40, 85, 0.45) 0%,
    rgba(12, 30, 65, 0.6) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f1f1f1;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.mobile-bottom__burger {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  background: linear-gradient(
    90deg,
    rgba(18, 40, 85, 0.45) 0%,
    rgba(12, 30, 65, 0.6) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  flex-shrink: 0;
}

.mobile-bottom__burger span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: #f1f1f1;
}

.mobile-menu-open {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.mobile-topbar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: #2255dd;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-style: italic;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

/* Mobile slide-in menu panel */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}

.mobile-menu.is-open {
  pointer-events: auto;
}

.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 18, 0.58);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.mobile-menu.is-open .mobile-menu__backdrop {
  opacity: 1;
}

.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(78vw, 340px);
  height: 100%;
  padding: 20px 22px 26px;
  display: flex;
  flex-direction: column;
  background: #2450cd;
  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.35);
}

.mobile-menu.is-open .mobile-menu__panel {
  transform: translateX(0);
}

.mobile-menu__top {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 44px;
}

.mobile-menu__socials {
  display: flex;
  gap: 10px;
}

.mobile-menu__socials a {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.mobile-menu__phone {
  align-self: flex-start;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-style: italic;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: auto;
  margin-bottom: auto;
}

.mobile-menu__nav a {
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.mobile-menu__nav a.mobile-menu__muted {
  color: rgba(255, 255, 255, 0.65);
}

.mobile-menu__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 38px;
}

.mobile-menu__lang,
.mobile-menu__close {
  appearance: none;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.mobile-menu__lang {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.mobile-menu__close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   SCROLL / PHRASE SECTION — Homepage
============================================================ */

.scroll-section {
  position: relative;
  z-index: 1;
  background: linear-gradient(#00112c 100%, #00112c 50%, #00112c 100%);
}

.sticky-viewport {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phrases-stage {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phrase {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 85vw;
  max-width: 85vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  will-change: transform, opacity;
  pointer-events: none;
  backface-visibility: hidden;
}

.phrase .line {
  display: block;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 0.07em;
  line-height: 1.2;
  color: #8a9bb8;
  white-space: nowrap;
}

.process-section .phrases-stage {
  max-width: 1280px;
  margin: 0 auto;
}

.phrase--process {
  width: min(1120px, 92vw);
  max-width: none;
  gap: 0;
}

/* ============================================================
   PROCESS SECTION — Homepage
============================================================ */

.process-layout {
  position: relative;
  width: 100%;
  min-height: 520px;
  display: grid;
  grid-template-columns: 46% 54%;
  align-items: center;
}

.process-number {
  font-size: clamp(150px, 18vw, 230px);
  font-weight: 800;
  line-height: 0.9;
  text-align: center;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease,
    color 0.35s ease;
}

.process-content {
  max-width: 540px;
  padding-left: 86px;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}

.process-content h3 {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.process-content p {
  font-size: clamp(17px, 1.35vw, 24px);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
}

.process-line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4px;
  height: min(68vh, 560px);
  transform: translate(-50%, -50%);
  background: rgba(215, 227, 255, 0.9);
  border-radius: 999px;
  z-index: 3;
  pointer-events: none;
}

.process-line::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  width: 4px;
  height: 26px;
  transform: translateX(-50%);
  background: rgba(215, 227, 255, 0.9);
  border-radius: 999px;
}

.process-line::after {
  content: "";
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 12px solid rgba(215, 227, 255, 0.95);
}

.process-dot {
  position: absolute;
  left: 50%;
  width: 22px;
  height: 22px;
  transform: translateX(-50%);
  background: #d7e3ff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(215, 227, 255, 0.08);
}

.process-dot--top {
  top: 7%;
}
.process-dot--bottom {
  bottom: 7%;
}

.process-dot--middle {
  top: 50%;
  transform: translate(-50%, -50%);
  width: 34px;
  height: 34px;
}

/* ============================================================
   SERVICES SECTION — Homepage
============================================================ */

.services {
  position: relative;
  width: 100%;
  padding: 100px 0 40px;
  margin-bottom: -80px;
  z-index: 10;
}

.services-inner {
  max-width: 95vw;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* Service card */
.srv-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.srv-card.srv-visible {
  opacity: 1;
  transform: translateY(0);
}

.srv-card--lr .srv-img-wrap {
  opacity: 0;
  transform: translateX(-50px);
  transition:
    opacity 0.75s 0.15s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s 0.15s cubic-bezier(0.22, 1, 0.36, 1);
}

.srv-card--rl .srv-img-wrap {
  opacity: 0;
  transform: translateX(50px);
  transition:
    opacity 0.75s 0.15s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s 0.15s cubic-bezier(0.22, 1, 0.36, 1);
}

.srv-card.srv-visible .srv-img-wrap {
  opacity: 1;
  transform: translateX(0);
}

.srv-card--lr .srv-text {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.75s 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.srv-card--rl .srv-text {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.75s 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.srv-card.srv-visible .srv-text {
  opacity: 1;
  transform: translateX(0);
}

.srv-img-wrap {
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}

.srv-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.srv-img-wrap:hover .srv-img {
  transform: scale(1.04);
}

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

.srv-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.srv-card--rl .srv-text {
  text-align: right;
  align-items: flex-end;
}

.srv-title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1;
}

.srv-desc {
  font-size: clamp(14px, 1.1vw, 16px);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 440px;
}

.srv-more {
  display: inline-block;
  padding: 8px 24px;
  background: #2255dd;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-decoration: none;
  border-radius: 50px;
  font-style: italic;
  align-self: flex-start;
  transition:
    background 0.2s,
    transform 0.15s;
}

.srv-card--rl .srv-more {
  align-self: flex-end;
}

.srv-more:hover {
  background: #2d66ff;
  transform: scale(1.05);
}

/* More Services CTA row */
.more-services__container {
  position: relative;
  width: 100%;
  max-width: 95vw;
  margin: 0 auto;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.more-services__container img {
  width: 22px;
  height: 22px;
  opacity: 0.42;
}

/* ============================================================
   PROJECTS SLIDER — Homepage
============================================================ */

.projects {
  position: relative;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
}

.projects-slider {
  overflow: unset;
  max-width: 95vw;
}

.projects-top {
  margin: 40px auto 0;
  max-width: 95vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.projects-title {
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 600;
  letter-spacing: 0.12em;
}

.projects-nav {
  display: flex;
  gap: 12px;
}

.projects-prev,
.projects-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--pill-bg-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.projects-prev::before,
.projects-next::before {
  content: "";
  width: 18px;
  height: 18px;
  background: url("../icons/arrow-up.svg") no-repeat center/contain;
}

.projects-prev::before {
  transform: rotate(-90deg);
}
.projects-next::before {
  transform: rotate(90deg);
}

.project-card {
  width: 320px;
}

.project-card__inner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: 0.3s;
}

.project-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  opacity: 0;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(180deg, #020715 0%, #081536 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.project-arrow::before {
  content: "";
  width: 30px;
  height: 30px;
  background: url("../icons/arrow-up.svg") center/contain no-repeat;
  transform: rotate(90deg);
}

.project-tags {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.project-tags span {
  font-size: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  letter-spacing: 0.1em;
}

.project-card:hover img {
  transform: scale(1.05);
}
.project-card:hover .project-overlay {
  background: rgba(0, 0, 0, 0.4);
}
.project-card:hover .project-arrow {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ============================================================
   GET STARTED SECTION — Homepage
============================================================ */

.get-started .more-services__container {
  margin-bottom: 0;
  margin-top: 40px;
}

.get-started__plus {
  display: none;
}

.get-started__phone {
  color: #f1f1f1;
  text-decoration: underline;
  font-size: 24px;
  font-weight: 600;
  font-style: italic;
}

.get-started__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.get-started__arrow {
  display: none;
}

@keyframes getStartedArrowDown {
  0% {
    transform: rotate(180deg) translateY(0);
    opacity: 0.45;
  }
  50% {
    transform: rotate(180deg) translateY(-6px);
    opacity: 1;
  }
  100% {
    transform: rotate(180deg) translateY(0);
    opacity: 0.45;
  }
}

/* ============================================================
   GET STARTED OVERLAY (fullscreen modal)
============================================================ */

.gs-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(to bottom, #020715 0%, #081536 100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.gs-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gs-screen {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.gs-screen--step-2 {
  display: none;
}

.gs-screen--step-2.active {
  display: flex;
}

.gs-screen--step-1:not(.active) {
  display: none;
}

.gs-topbar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 34px 34px 0;
}

.gs-back-home {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  display: inline-flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}

.gs-back-home__icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--pill-bg-strong);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 10px 22px rgba(0, 0, 0, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gs-back-home__icon img {
  width: 22px;
  height: 22px;
  transform: rotate(-90deg);
}

.gs-back-home__text {
  font-size: 18px;
  line-height: 1;
}

.gs-step-counter {
  color: rgba(255, 255, 255, 0.92);
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.02em;
}

.gs-content {
  flex: 1;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 42px 32px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.gs-title {
  margin: 30px 0 26px;
  text-align: center;
  font-size: clamp(42px, 5vw, 80px);
  line-height: 1.02;
  letter-spacing: 0.05em;
  font-weight: 600;
  text-transform: uppercase;
  color: #f4f4f4;
  max-width: 1400px;
}

.gs-subtitle {
  margin-bottom: 54px;
  text-align: center;
  font-size: clamp(22px, 1.8vw, 30px);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.2;
}

.gs-grid {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 84px;
}

.gs-card {
  appearance: none;
  border: 0;
  min-height: 380px;
  border-radius: 22px;
  cursor: pointer;
  padding: 28px;
  color: #f4f4f4;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #020715 0%, #081536 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 16px 28px rgba(0, 0, 0, 0.22);
  outline: 2px solid transparent;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    outline-color 0.22s ease,
    background 0.22s ease;
}

.gs-card span {
  font-size: clamp(26px, 1.8vw, 40px);
  line-height: 1.1;
  letter-spacing: 0.04em;
  font-weight: 600;
  text-transform: uppercase;
}

.gs-card--advice {
  background: #636b82;
}

.gs-card:hover {
  transform: translateY(-4px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 20px 34px rgba(0, 0, 0, 0.28);
}

.gs-card.is-selected {
  outline-color: rgba(46, 99, 255, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 4px rgba(46, 99, 255, 0.12),
    0 20px 34px rgba(0, 0, 0, 0.3);
}

.gs-continue {
  appearance: none;
  border: 0;
  min-width: 280px;
  height: 84px;
  padding: 0 40px;
  border-radius: 999px;
  cursor: pointer;
  font-size: clamp(28px, 2vw, 40px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.14em;
  font-style: italic;
  text-transform: uppercase;
  color: #f4f4f4;
  background: var(--pill-bg-strong);
  box-shadow: var(--shadow-btn);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease,
    box-shadow 0.2s ease;
}

.gs-continue:hover:not(:disabled) {
  transform: translateY(-2px);
}

.gs-continue:disabled {
  opacity: 0.58;
  cursor: not-allowed;
}

/* Step 2 — contact form */
.gs-contact {
  flex: 1;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gs-contact__title {
  margin: 18px 0 22px;
  text-align: center;
  font-size: clamp(42px, 5vw, 74px);
  line-height: 1.02;
  letter-spacing: 0.05em;
  font-weight: 600;
  text-transform: uppercase;
  color: #f4f4f4;
}

.gs-contact__subtitle {
  margin-bottom: 48px;
  text-align: center;
  font-size: clamp(22px, 2vw, 30px);
  color: rgba(255, 255, 255, 0.82);
}

.gs-form {
  width: 100%;
  max-width: 700px;
}

.gs-input {
  width: 100%;
  height: 58px;
  border: 0;
  outline: none;
  border-radius: 999px;
  padding: 0 26px;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 18px;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.12)
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 10px 24px rgba(0, 0, 0, 0.28);
}

.gs-input::placeholder,
.gs-attach__textarea::placeholder {
  color: rgba(255, 255, 255, 0.46);
}

.gs-phone-row {
  display: flex;
  gap: 0;
  margin-bottom: 18px;
}

.gs-country {
  position: relative;
  width: 108px;
  flex-shrink: 0;
}

.gs-country__selected {
  width: 100%;
  height: 58px;
  border: 0;
  border-radius: 999px 0 0 999px;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.12)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 10px 24px rgba(0, 0, 0, 0.28);
}

.gs-country__selected img {
  width: 28px;
  height: 18px;
  object-fit: cover;
  border-radius: 2px;
}

.gs-country__arrow {
  color: #fff;
  font-size: 12px;
  opacity: 0.85;
}

.gs-country__dropdown {
  position: absolute;
  top: 64px;
  left: 0;
  width: 54px;
  padding: 8px 0;
  border-radius: 10px;
  background: rgba(23, 32, 62, 0.96);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
  display: none;
  flex-direction: column;
  gap: 6px;
  z-index: 4;
}

.gs-country.open .gs-country__dropdown {
  display: flex;
}

.gs-country__option {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: flex;
  justify-content: center;
}

.gs-country__option img {
  width: 28px;
  height: 18px;
  object-fit: cover;
  border-radius: 2px;
}

.gs-input--phone {
  border-radius: 0 999px 999px 0;
  margin-bottom: 0;
}

.gs-attach {
  width: 100%;
  min-height: 166px;
  border-radius: 26px;
  overflow: hidden;
  margin-bottom: 22px;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.12)
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 10px 24px rgba(0, 0, 0, 0.28);
}

.gs-attach__top {
  min-height: 58px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  padding-left: 24px;
  position: relative;
}

.gs-attach__placeholder {
  color: rgba(255, 255, 255, 0.46);
  font-size: 18px;
  line-height: 1.2;
  padding-right: 130px;
}

.gs-attach__files {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right: 58px;
}

.gs-file-chip {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.22);
  position: relative;
  flex-shrink: 0;
}

.gs-file-chip button {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 14px;
  height: 14px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #222;
  font-size: 10px;
  line-height: 1;
  cursor: pointer;
}

.gs-attach__pin {
  position: absolute;
  top: 0;
  right: 0;
  width: 56px;
  height: 58px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.06);
}

.gs-attach__pin img {
  width: 22px;
  height: 22px;
  opacity: 0.8;
}

.gs-attach__input {
  display: none;
}

.gs-attach__textarea {
  width: 100%;
  min-height: 108px;
  resize: none;
  border: 0;
  outline: none;
  background: transparent;
  color: #fff;
  font-size: 18px;
  line-height: 1.45;
  padding: 16px 24px 18px;
}

.gs-check {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 44px;
  cursor: pointer;
}

.gs-check input {
  display: none;
}

.gs-check__box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gs-check__tick {
  opacity: 0;
  font-size: 26px;
  line-height: 1;
  transform: translateY(-1px);
}

.gs-check input:checked + .gs-check__box .gs-check__tick {
  opacity: 1;
}

.gs-check__text {
  color: #fff;
  font-size: 18px;
}

.gs-check__text a {
  color: #fff;
  text-underline-offset: 4px;
}

.gs-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.gs-prev {
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.32);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gs-prev img {
  width: 20px;
  height: 20px;
  transform: rotate(-90deg);
}

.gs-submit {
  appearance: none;
  border: 0;
  min-width: 190px;
  height: 58px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.14em;
  font-style: italic;
  text-transform: uppercase;
  color: #f4f4f4;
  background: var(--pill-bg-strong);
  box-shadow: var(--shadow-btn);
}

.gs-submit.is-success {
  min-width: 210px;
}

/* ============================================================
   SHARED FOOTER — footer-desktop / footer-mobile
   (used across projects-page, inner-page, blog pages)
============================================================ */

.footer-desktop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(1540px, calc(100% - 48px));
  margin: 0 auto;
}

.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;
}

/* ============================================================
   SHARED BUTTON — services-btn
============================================================ */

.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-size: 24px;
  line-height: 1;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--pill-bg-strong);
  box-shadow: var(--shadow-btn);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

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

.services-btn a {
  color: inherit;
  text-decoration: none;
}

/* ============================================================
   PROJECTS PAGE — Hero & Layout
============================================================ */

.projects-page {
  min-height: 100vh;
}

.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;
}

/* Desktop header */
.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;
}

.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;
}

/* Hero content */
.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;
  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);
}

/* ============================================================
   PROJECTS PAGE — 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);
  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);
}

/* ============================================================
   PROJECTS PAGE — Footer section
============================================================ */

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

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

/* ============================================================
   PROJECTS PAGE — Mobile Drawer
============================================================ */

.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.is-open .projects-drawer__backdrop {
  opacity: 1;
}

.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__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-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-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-size: 18px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.12em;
}

/* ============================================================
   PROJECT SINGLE — Hero device mockup
============================================================ */

.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-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-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;
}

.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;
}

.project-device__screen--laptop {
  top: 6.2%;
  left: 50.5%;
  width: 75.7%;
  height: 85.8%;
  border-radius: 8px;
  transform: translateX(-50%);
}

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

.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 SINGLE — Case study cards
============================================================ */

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

.project-case__container {
  position: relative;
  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-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-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.42;
  font-weight: 400;
}

.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;
}

.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;
}

/* ============================================================
   PROJECT SINGLE — Metrics
============================================================ */

.project-metrics {
  position: relative;
}

.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-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-size: clamp(16px, 1vw, 24px);
  line-height: 1.18;
  font-weight: 400;
  text-transform: uppercase;
  white-space: nowrap;
}

.project-metrics__mobile {
  display: none;
}

/* ============================================================
   PROJECT SINGLE — Team
============================================================ */

.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;
}

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

.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;
}

.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;
}

.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;
}

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

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

/* ============================================================
   PROJECT SINGLE — Next project
============================================================ */

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

.project-next__top-card {
  background: var(--grad-top);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.18);
  position: relative;
  min-height: 234px;
  border-radius: 0 0 34px 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.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);
}

.project-next__middle-card {
  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-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);
}

/* ============================================================
   ABOUT PAGE — 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;
  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-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-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-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-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;
}

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

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

/* ============================================================
   ABOUT PAGE — Services accordion
============================================================ */

.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-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-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-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;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  line-height: 1;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--pill-bg-strong);
  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);
}

.service-card__price {
  text-align: center;
  color: #ffffff;
  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;
}

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

/* ============================================================
   ABOUT PAGE — Contacts block
============================================================ */

.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: none;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--pill-bg-strong);
  box-shadow: var(--shadow-btn);
}

.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-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: var(--shadow-social);
  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-size: 28px;
  line-height: 1.1;
  font-weight: 500;
}

.contacts-block__address {
  color: #ffffff;
  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);
}

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

/* ============================================================
   SERVICES PAGE — Hero
============================================================ */

.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-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-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-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);
  }
}

.services-header {
  background: var(--grad-top);
}

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

/* ============================================================
   SERVICE SINGLE — Hero
============================================================ */

.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%);
  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-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-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-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;
  text-decoration: none;
  animation: serviceSingleArrowFloat 1.8s ease-in-out infinite;
}

.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;
}

.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-size: clamp(22px, 1.8vw, 34px);
  line-height: 1.5;
  font-weight: 400;
  opacity: 0.92;
}

/* ============================================================
   SERVICE SINGLE — Steps
============================================================ */

.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-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-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;
}

/* ============================================================
   SERVICE SINGLE — Work showcase
============================================================ */

.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-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);
  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;
}

.work-showcase__pagination {
  display: none;
}

/* ============================================================
   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-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-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-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;
}

/* Blog subscribe */
.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;
  justify-content: center;
}

.blog-subscribe__field {
  display: flex;
}

.blog-subscribe__field input {
  width: 100%;
  min-width: 0;
  height: 64px;
  padding: 0 24px;
  border: 0;
  outline: none;
  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;
  background: var(--pill-bg-strong);
  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;
}

/* ============================================================
   BLOG SINGLE
============================================================ */

.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,
.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;
  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;
  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: var(--pill-bg-strong);
  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;
}

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

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

/* ============================================================
   INNER PAGE (legal, 404, loading)
============================================================ */

.inner-page {
  min-height: 100vh;
}

.inner-page__top {
  position: relative;
  background: var(--grad-top);
  padding: 48px 0 54px;
}

.inner-page__middle {
  background: var(--grad-middle);
  padding: 0 0 48px;
}

.inner-page__bottom {
  background: var(--grad-bottom);
  padding: 24px 0 42px;
}

/* Back navigation */
.inner-header {
  width: min(1480px, calc(100% - 96px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.inner-back {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--text-soft);
  font-size: 18px;
}

.inner-back__icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--pill-bg-strong);
  display: flex;
  align-items: center;
  justify-content: center;
}

.inner-back__icon img {
  width: 20px;
  height: 20px;
  transform: rotate(-90deg);
}

.inner-logo img {
  display: block;
  height: auto;
}

.inner-logo--desktop img {
  width: 150px;
}

.inner-logo--mobile {
  display: none;
}

.inner-page__plus {
  position: absolute;
  top: 14vh;
  width: 22px;
  height: 22px;
  opacity: 0.42;
}

.inner-page__plus--left {
  left: 60px;
}
.inner-page__plus--right {
  right: 60px;
}

.inner-title-wrap {
  width: min(1480px, calc(100% - 96px));
  margin: 78px auto 0;
}

.inner-title {
  text-align: center;
  font-size: clamp(42px, 4vw, 78px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* Legal content */
.legal-content {
  width: min(1200px, calc(100% - 96px));
  margin: 0 auto;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.55;
}

.legal-content p {
  margin-bottom: 22px;
}

.legal-content h2 {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--text-main);
  margin: 34px 0 16px;
}

.inner-scroll-top {
  margin: 40px auto 0;
  width: 34px;
  height: 34px;
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.inner-scroll-top img {
  width: 18px;
  height: 18px;
}

/* Inner page footer */
.inner-footer {
  width: min(1480px, calc(100% - 96px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 24px;
}

.inner-footer__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.inner-footer__nav--left {
  justify-content: flex-start;
}
.inner-footer__nav--right {
  justify-content: flex-end;
}

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

.inner-footer__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.inner-footer__socials 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;
}

.inner-footer__socials img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* 404 page */
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to top, #020715 0%, #081536 100%);
}

.page-404__inner {
  text-align: center;
}

.page-404__logo {
  width: 140px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.page-404__code {
  font-size: clamp(140px, 20vw, 320px);
  font-weight: 700;
  line-height: 0.8;
  color: #ffffff;
  margin-bottom: 30px;
}

.page-404__text {
  font-size: 20px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
}

.page-404__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 32px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 18px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--pill-bg-strong);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 10px 20px rgba(0, 0, 0, 0.3),
    0 4px 12px rgba(46, 99, 255, 0.3);
  transition: transform 0.25s ease;
}

.page-404__btn:hover {
  transform: translateY(-2px);
}

.page-404__meta {
  position: absolute;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
}

.page-404__meta--tl {
  top: 40px;
  left: 40px;
}
.page-404__meta--tr {
  top: 40px;
  right: 40px;
}
.page-404__meta--bl {
  bottom: 40px;
  left: 40px;
  transform: rotate(90deg);
}
.page-404__meta--br {
  bottom: 40px;
  right: 40px;
  transform: rotate(-90deg);
}

/* Loading screen */
.loading-screen {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to top, #020715 0%, #081536 100%);
  display: flex;
  justify-content: center;
}

.loading-screen::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 620px;
  height: 620px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(24, 65, 188, 0.18) 0%,
    rgba(24, 65, 188, 0.08) 34%,
    rgba(24, 65, 188, 0.02) 56%,
    rgba(24, 65, 188, 0) 72%
  );
  pointer-events: none;
}

.loading-screen__inner {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loading-screen__logo {
  width: 210px;
  height: auto;
  margin-top: 34px;
  display: block;
  flex-shrink: 0;
}

.loading-screen__spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 92px;
  height: 92px;
  transform: translate(-50%, -50%);
}

.loading-screen__spinner span {
  --i: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;
  border-radius: 50%;
  background: #ffffff;
  opacity: 0.22;
  transform: rotate(calc(var(--i) * 30deg)) translateY(-34px) scale(0.72);
  animation: loadingOrbitPulse 1.35s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.09s);
}

.loading-screen__spinner span:nth-child(1) {
  --i: 0;
}
.loading-screen__spinner span:nth-child(2) {
  --i: 1;
}
.loading-screen__spinner span:nth-child(3) {
  --i: 2;
}
.loading-screen__spinner span:nth-child(4) {
  --i: 3;
}
.loading-screen__spinner span:nth-child(5) {
  --i: 4;
}
.loading-screen__spinner span:nth-child(6) {
  --i: 5;
}
.loading-screen__spinner span:nth-child(7) {
  --i: 6;
}
.loading-screen__spinner span:nth-child(8) {
  --i: 7;
}
.loading-screen__spinner span:nth-child(9) {
  --i: 8;
}
.loading-screen__spinner span:nth-child(10) {
  --i: 9;
}
.loading-screen__spinner span:nth-child(11) {
  --i: 10;
}
.loading-screen__spinner span:nth-child(12) {
  --i: 11;
}

@keyframes loadingOrbitPulse {
  0% {
    opacity: 0.18;
    transform: rotate(calc(var(--i) * 30deg)) translateY(-34px) scale(0.72);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 0 0 rgba(46, 99, 255, 0);
  }
  35% {
    opacity: 1;
    transform: rotate(calc(var(--i) * 30deg)) translateY(-34px) scale(1.18);
    background: #ffffff;
    box-shadow:
      0 0 10px rgba(255, 255, 255, 0.26),
      0 0 24px rgba(46, 99, 255, 0.28);
  }
  65% {
    opacity: 0.68;
    transform: rotate(calc(var(--i) * 30deg)) translateY(-34px) scale(0.9);
    background: #2e63ff;
    box-shadow:
      0 0 8px rgba(46, 99, 255, 0.24),
      0 0 18px rgba(46, 99, 255, 0.2);
  }
  100% {
    opacity: 0.18;
    transform: rotate(calc(var(--i) * 30deg)) translateY(-34px) scale(0.72);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 0 0 rgba(46, 99, 255, 0);
  }
}

.loading-screen__text {
  position: absolute;
  left: 50%;
  bottom: 58px;
  transform: translateX(-50%);
  margin: 0;
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.loading-screen__meta {
  position: absolute;
  display: inline-flex;
  opacity: 0.32;
}

.loading-screen__meta img {
  display: block;
  width: auto;
  height: auto;
  max-width: 58px;
  max-height: 58px;
}

.loading-screen__meta--tl {
  top: 34px;
  left: 34px;
}
.loading-screen__meta--tr {
  top: 34px;
  right: 34px;
}
.loading-screen__meta--bl {
  left: 34px;
  bottom: 34px;
}
.loading-screen__meta--br {
  right: 34px;
  bottom: 34px;
}

/* ============================================================
   ANIMATIONS / KEYFRAMES (global, non-inline)
============================================================ */

@keyframes logoFloat {
  0% {
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
  }
  20% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  80% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-10px);
    opacity: 0;
  }
}

/* ============================================================
   RESPONSIVE — ≥1600px (service single wide tuning)
============================================================ */

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

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

/* ============================================================
   RESPONSIVE — ≤1024px (tablet)
============================================================ */

@media (max-width: 1024px) {
  /* Hero */
  .hero {
    min-height: 100svh;
  }
  .hero-topbar,
  .hero-nav {
    display: none;
  }
  .mobile-topbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 16px;
  }
  .mobile-logo {
    display: flex;
    align-items: center;
    max-width: 200px;
    flex-shrink: 0;
    text-decoration: none;
  }
  .mobile-logo img {
    display: block;
    width: clamp(120px, 24vw, 200px);
    height: auto;
  }
  .hero-content {
    margin-top: 0;
    padding: 110px 20px 36px;
    gap: 28px;
  }
  .hero-title {
    font-size: clamp(42px, 9vw, 72px);
    line-height: 0.96;
    letter-spacing: 0.02em;
  }
  .hero-sub {
    max-width: 500px;
    font-size: 15px;
  }
  .hero-btn {
    min-height: 48px;
    padding: 0 24px;
    font-size: 20px;
  }
  .mobile-menu {
    display: block;
  }
  .mobile-bottom {
    display: flex;
  }
  .mobile-bottom__burger span {
    width: 32px;
    height: 1px;
  }

  /* Inner page */
  .inner-header,
  .inner-title-wrap,
  .legal-content,
  .inner-footer {
    width: calc(100% - 40px);
  }
  .inner-page__plus--left {
    left: 18px;
  }
  .inner-page__plus--right {
    right: 18px;
  }
  .legal-content {
    font-size: 15px;
    line-height: 1.48;
  }
  .legal-content h2 {
    font-size: 18px;
  }
  .inner-footer {
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
    gap: 24px;
  }
  .inner-footer__nav--left,
  .inner-footer__nav--right {
    justify-content: center;
  }

  /* Projects page */
  .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-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;
  }
  .projects-hero__decor {
    margin: 28px auto 26px;
  }
  .projects-hero__subtitle {
    font-size: 26px;
    line-height: 1.34;
    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;
    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;
  }
  .projects-drawer {
    display: block;
  }

  /* Get started */
  .gs-topbar {
    padding: 8px 10px 0;
  }
  .gs-back-home {
    gap: 8px;
  }
  .gs-back-home__icon {
    width: 44px;
    height: 44px;
  }
  .gs-back-home__icon img {
    width: 16px;
    height: 16px;
  }
  .gs-back-home__text {
    font-size: 10px;
  }
  .gs-step-counter {
    font-size: 14px;
  }
  .gs-content {
    padding: 14px 24px 20px;
  }
  .gs-title {
    max-width: 360px;
    margin: 26px 0 12px;
    font-size: 36px;
  }
  .gs-subtitle {
    margin-bottom: 26px;
    font-size: 18px;
  }
  .gs-grid {
    max-width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 56px;
  }
  .gs-card {
    min-height: 205px;
    padding: 18px;
  }
  .gs-card span {
    font-size: 22px;
  }
  .gs-continue {
    min-width: 248px;
    height: 64px;
    font-size: 28px;
    letter-spacing: 0.12em;
  }

  /* Blog subscribe */
  .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;
  }

  /* Blog page */
  .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;
  }

  /* About hero */
  .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;
  }

  /* Services accordion */
  .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;
    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;
  }
  .service-card__btn {
    min-width: 74px;
    height: 32px;
    margin: 16px auto;
    padding: 8px 16px;
    font-size: 12px;
  }
  .service-card__price {
    font-size: 12px;
  }

  /* Services page */
  .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;
  }

  /* More services button */
  .more-services__container {
    padding: 60px 0;
  }
  .services-btn {
    min-width: 280px;
    height: 62px;
    font-size: 18px;
    letter-spacing: 0.12em;
  }

  /* Service single */
  .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;
  }

  /* Service steps */
  .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;
  }

  /* Work showcase */
  .work-showcase__head {
    padding: 20px 16px 28px;
  }
  .work-showcase__title {
    font-size: 40px;
  }
  .work-card {
    height: 620px;
  }

  /* Project case */
  .project-case {
    padding: 66px 16px 78px;
  }
  .project-case__container {
    width: calc(100% - 32px);
    gap: 30px;
  }
  .project-case__card {
    padding: 24px;
    border-radius: 24px;
  }

  /* Project next */
  .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;
  }

  /* Contacts */
  .contacts-block__panel {
    grid-template-columns: 1fr;
    min-height: auto;
    flex-direction: column;
  }
  .contacts-block__map-wrap,
  .contacts-block__map {
    min-height: 720px;
  }
  .contacts-block__info {
    order: 2;
    margin-top: -22px;
    padding: 36px 16px 28px;
    position: relative;
    z-index: 2;
    background: var(--grad-middle);
  }
  .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;
  }
  .contacts-block__inner {
    margin-top: -90px;
  }
  .about-bottom {
    display: none;
  }
  .about-top {
    height: 120px;
  }

  /* Process section */
  .process-section .sticky-viewport {
    min-height: 100svh;
    min-height: 100dvh;
  }
  .process-section .phrases-stage {
    width: 100%;
    max-width: none;
    padding: 0 20px;
  }
  .phrase--process {
    width: calc(100vw - 40px);
    max-width: 420px;
  }
  .process-layout {
    min-height: 100svh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 32px 0;
    text-align: center;
  }
  .process-line {
    display: none;
  }
  .process-number {
    width: 100%;
    text-align: center;
    padding-left: 0;
    margin-bottom: 0;
    font-size: clamp(96px, 34vw, 170px);
    line-height: 0.88;
  }
  .process-content {
    width: 100%;
    max-width: 420px;
    padding-left: 0;
    text-align: center;
  }
  .process-content h3 {
    font-size: clamp(26px, 8vw, 40px);
    line-height: 0.95;
    margin-bottom: 14px;
  }
  .process-content p {
    max-width: 100%;
    margin: 0 auto;
    font-size: 14px;
  }
}

/* ============================================================
   RESPONSIVE — ≤768px (mobile)
============================================================ */

@media (max-width: 768px) {
  /* Hero phrases */
  .phrase .line {
    white-space: normal;
    word-break: break-word;
    text-align: center;
    font-size: clamp(22px, 7vw, 48px) !important;
    line-height: 1.15;
  }
  .scroll-section .phrase {
    width: min(88vw, 480px);
    padding: 0 8px;
    transition:
      opacity 0.18s ease,
      transform 0.18s ease;
  }

  /* Services homepage */
  .services {
    padding: 72px 0 24px;
    margin-bottom: -40px;
  }
  .services-inner {
    padding: 0 16px;
    gap: 48px;
  }
  .srv-card,
  .srv-card--lr,
  .srv-card--rl {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .srv-card--rl .srv-text {
    text-align: left;
    align-items: flex-start;
  }
  .srv-card + .srv-card {
    padding-top: 48px;
  }
  .srv-title {
    font-size: clamp(26px, 8vw, 40px);
  }
  .srv-desc {
    max-width: none;
    font-size: 15px;
    line-height: 1.6;
  }

  /* Projects slider */
  .projects-top {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .projects-slider {
    padding-left: 16px;
  }
  .project-card {
    width: 260px;
  }
  .projects-nav {
    display: none;
  }
  .projects-title {
    text-align: center;
  }
  .get-started__plus {
    display: block !important;
  }
  .get-started__logo,
  .get-started__phone {
    display: none;
  }

  .get-started__arrow {
    display: block;
    width: 20px;
    height: 20px;
    opacity: 0.75;
    transform: rotate(180deg);
    animation: getStartedArrowDown 1.6s ease-in-out infinite;
  }

  /* Shared footer toggle */
  .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;
    align-content: start;
    max-width: 60%;
  }
  .footer-desktop__right a {
    font-size: 12px;
    line-height: 1.2;
    white-space: nowrap;
  }
  .footer-desktop__left {
    display: none;
  }

  /* Inner page */
  .inner-page__top {
    padding: 12px 0 18px;
  }
  .inner-page__middle {
    padding-bottom: 18px;
  }
  .inner-page__bottom {
    padding: 18px 0 24px;
  }
  .inner-back {
    gap: 8px;
    font-size: 8px;
  }
  .inner-back__icon {
    width: 18px;
    height: 18px;
  }
  .inner-back__icon img {
    width: 8px;
    height: 8px;
  }
  .inner-logo--desktop {
    display: none;
  }
  .inner-logo--mobile {
    display: block;
  }
  .inner-logo--mobile img {
    width: 16px;
  }
  .inner-page__plus {
    top: 26px;
    width: 10px;
    height: 10px;
    opacity: 0.32;
  }
  .inner-page__plus--left {
    left: 10px;
  }
  .inner-page__plus--right {
    right: 10px;
  }
  .inner-title-wrap {
    margin-top: 18px;
  }
  .inner-title {
    font-size: 20px;
    letter-spacing: 0.08em;
  }
  .legal-content {
    width: calc(100% - 24px);
    font-size: 8px;
    line-height: 1.34;
  }
  .legal-content p {
    margin-bottom: 9px;
  }
  .legal-content h2 {
    font-size: 9px;
    margin: 14px 0 8px;
  }
  .inner-scroll-top {
    margin-top: 18px;
    width: 20px;
    height: 20px;
  }
  .inner-scroll-top img {
    width: 10px;
    height: 10px;
  }
  .footer-desktop {
    display: none;
  }
  .footer-mobile {
    display: flex;
    padding: 0 16px;
  }

  /* 404 */
  .page-404__logo {
    width: 100px;
    margin-bottom: 24px;
  }
  .page-404__code {
    font-size: 120px;
  }
  .page-404__text {
    font-size: 16px;
    padding: 0 20px;
  }
  .page-404__btn {
    height: 48px;
    font-size: 14px;
    padding: 0 22px;
  }
  .page-404__meta {
    display: none;
  }

  /* Loading screen */
  .loading-screen__logo {
    width: 144px;
    margin-top: 24px;
  }
  .loading-screen__spinner {
    width: 74px;
    height: 74px;
  }
  .loading-screen__spinner span {
    width: 8px;
    height: 8px;
    margin: -4px 0 0 -4px;
    transform: rotate(calc(var(--i) * 30deg)) translateY(-28px) scale(0.72);
  }
  .loading-screen__text {
    bottom: 36px;
    font-size: 18px;
  }
  .loading-screen__meta {
    opacity: 0.22;
  }
  .loading-screen__meta--tl,
  .loading-screen__meta--tr {
    top: 24px;
  }
  .loading-screen__meta--bl,
  .loading-screen__meta--br {
    bottom: 24px;
  }
  .loading-screen__meta--tl,
  .loading-screen__meta--bl {
    left: 18px;
  }
  .loading-screen__meta--tr,
  .loading-screen__meta--br {
    right: 18px;
  }
  .loading-screen__meta img {
    max-width: 40px;
    max-height: 40px;
  }
  .loading-screen::before {
    width: 420px;
    height: 420px;
  }

  @keyframes loadingOrbitPulse {
    0% {
      opacity: 0.18;
      transform: rotate(calc(var(--i) * 30deg)) translateY(-28px) scale(0.72);
      background: rgba(255, 255, 255, 0.92);
      box-shadow: 0 0 0 rgba(46, 99, 255, 0);
    }
    35% {
      opacity: 1;
      transform: rotate(calc(var(--i) * 30deg)) translateY(-28px) scale(1.18);
      background: #ffffff;
      box-shadow:
        0 0 10px rgba(255, 255, 255, 0.26),
        0 0 22px rgba(46, 99, 255, 0.24);
    }
    65% {
      opacity: 0.68;
      transform: rotate(calc(var(--i) * 30deg)) translateY(-28px) scale(0.9);
      background: #2e63ff;
      box-shadow:
        0 0 8px rgba(46, 99, 255, 0.24),
        0 0 18px rgba(46, 99, 255, 0.18);
    }
    100% {
      opacity: 0.18;
      transform: rotate(calc(var(--i) * 30deg)) translateY(-28px) scale(0.72);
      background: rgba(255, 255, 255, 0.92);
      box-shadow: 0 0 0 rgba(46, 99, 255, 0);
    }
  }

  /* About hero */
  .about-hero {
    margin-top: -96px;
    min-height: 760px;
  }
  .about-hero__container {
    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;
  }
  .about-hero__meta {
    width: auto;
    margin-top: 18px;
    justify-content: flex-start;
    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;
  }
  .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;
  }

  /* Services accordion */
  .services-accordion {
    padding: 18px 0 8px;
  }
  .services-accordion__container {
    width: 100%;
  }
  .services-accordion__eyebrow {
    margin-bottom: 18px;
  }
  .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);
  }
  .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;
  }
  .service-card__btn {
    min-width: 67px;
    height: 30px;
    margin: 14px auto;
    padding: 8px 14px;
    font-size: 10px;
  }
  .service-card__price {
    font-size: 10px;
  }

  /* Services page hero */
  .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__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: 24px;
    right: 24px;
    bottom: 116px;
    transform: none;
    font-size: 88px;
  }
  .services-hero__text {
    left: 50%;
    bottom: 142px;
    width: calc(100% - 48px);
    max-width: 340px;
    transform: translateX(-50%);
    font-size: 24px;
  }
  .services-hero__arrow {
    bottom: 52px;
    width: 42px;
    height: 42px;
  }
  .services-header {
    z-index: 20;
    background: transparent;
    padding: 6px 0 0;
  }

  /* More services button */
  .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;
  }

  /* Service single */
  .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);
    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-size: 25px;
    line-height: 1.42;
    font-weight: 500;
  }
  .service-single-hero__arrow {
    display: none;
  }
  .service-single-description {
    display: none;
  }

  /* Service steps */
  .service-steps {
    padding: 24px 16px 30px;
  }
  .service-steps__inner {
    width: 100%;
    row-gap: 46px;
  }
  .service-step__num {
    margin-bottom: 20px;
    font-size: 60px;
  }
  .service-step__text {
    font-size: 17px;
  }

  /* Work showcase */
  .work-showcase {
    padding: 0 0 18px;
  }
  .work-showcase__head {
    padding: 18px 0;
    justify-content: center;
  }
  .work-showcase__title {
    font-size: 27px;
    max-width: 260px;
  }
  .work-showcase__slider {
    padding-bottom: 28px;
  }
  .work-showcase__slider .swiper-wrapper {
    display: flex;
    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);
  }

  /* Project hero device */
  .project-hero-device {
    padding: 12px 0 34px;
  }
  .project-hero-device__container {
    width: calc(100% - 12px);
  }
  .project-hero-device__title {
    font-size: 48px;
    line-height: 0.92;
    max-width: 340px;
    margin: 0 auto;
  }
  .project-hero-device__stage {
    margin-top: 10px;
    min-height: auto;
    flex-direction: column;
  }
  .project-device--laptop {
    display: none;
  }
  .project-device--phone {
    display: block;
    width: min(320px, 82vw);
    margin-top: 8px;
    left: 50%;
    transform: translateX(-50%);
  }
  .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;
    justify-content: space-between;
  }
  .project-hero-device__tag {
    min-height: 38px;
    padding: 0 16px;
    font-size: 14px;
  }
  .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 case */
  .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;
  }
  .project-case__text {
    max-width: none;
    margin: 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.88);
  }
  .project-case__rings,
  .project-case__plus,
  .project-case__bg {
    display: none;
  }

  /* Project metrics */
  .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;
    height: 100dvh;
    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-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-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%;
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  .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;
  }

  /* Project team */
  .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;
    border-radius: 28px;
    display: flex;
    flex-direction: column;
  }
  .team-card--mobile .team-card__role {
    font-size: 34px;
    line-height: 0.95;
    margin-bottom: 10px;
  }
  .team-card--mobile .team-card__name {
    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;
  }
  .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;
  }
  .project-team__pagination .swiper-pagination-bullet-active {
    width: 18px;
    height: 18px;
    background: #ffffff;
  }

  /* Project next */
  .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;
  }
  .project-next__bottom-card {
    border-radius: 24px 24px 0 0;
    padding: 18px 18px 22px;
  }
  .project-next__title {
    font-size: 38px;
    max-width: 220px;
  }
  .project-next__arrow-wrap {
    width: 72px;
    height: 72px;
  }
  .project-next__arrow {
    width: 26px;
    height: 26px;
  }

  /* Blog page */
  .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;
  }
  .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;
  }
  .blog-card__date {
    padding: 0 4px;
    font-size: 18px;
  }
  .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: var(--pill-bg-strong);
    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;
  }

  /* Blog subscribe */
  .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-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: var(--pill-bg-strong);
    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);
  }

  /* Article single */
  .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;
    margin-top: 35px;
  }
  .article-single__hero-subtitle {
    margin: 0;
    max-width: 270px;
    font-size: 14px;
  }
  .article-single__hero-date {
    display: none;
  }
  .article-single__hero-type {
    bottom: 56px;
    font-size: 18px;
  }
  .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;
  }
  .article-single__quote-mark {
    position: static;
    display: inline;
    font-size: 42px;
  }
  .article-single__split-title {
    margin-bottom: 24px;
  }
  .article-single__split-title h2 {
    font-size: 24px;
  }
  .article-single__quote--bottom {
    margin-bottom: 42px;
  }
  .article-single__quote--bottom p {
    font-size: 24px;
  }
  .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;
  }

  /* Get started step 2 */
  .gs-contact {
    max-width: 360px;
    padding: 14px 14px 26px;
    align-items: stretch;
  }
  .gs-contact__title {
    margin: 30px 0 10px;
    font-size: 34px;
    text-align: left;
  }
  .gs-contact__subtitle {
    margin-bottom: 28px;
    font-size: 18px;
    text-align: left;
  }
  .gs-form {
    max-width: 100%;
  }
  .gs-input {
    height: 44px;
    padding: 0 18px;
    margin-bottom: 10px;
    font-size: 16px;
  }
  .gs-country {
    width: 62px;
  }
  .gs-country__selected {
    height: 44px;
  }
  .gs-country__selected img,
  .gs-country__option img {
    width: 24px;
    height: 16px;
  }
  .gs-country__dropdown {
    top: 50px;
    width: 46px;
  }
  .gs-attach {
    min-height: 118px;
    border-radius: 20px;
    margin-bottom: 14px;
  }
  .gs-attach__top {
    min-height: 44px;
    padding-left: 14px;
  }
  .gs-attach__placeholder {
    font-size: 14px;
    padding-right: 58px;
  }
  .gs-attach__files {
    gap: 6px;
    padding-right: 44px;
  }
  .gs-file-chip {
    width: 20px;
    height: 20px;
  }
  .gs-file-chip button {
    width: 11px;
    height: 11px;
    top: -4px;
    right: -4px;
    font-size: 8px;
  }
  .gs-attach__pin {
    width: 42px;
    height: 44px;
  }
  .gs-attach__pin img {
    width: 18px;
    height: 18px;
  }
  .gs-attach__textarea {
    min-height: 72px;
    padding: 10px 14px 12px;
    font-size: 16px;
  }
  .gs-check {
    gap: 10px;
    margin-bottom: 28px;
  }
  .gs-check__box {
    width: 30px;
    height: 30px;
    border-radius: 8px;
  }
  .gs-check__tick {
    font-size: 21px;
  }
  .gs-check__text {
    font-size: 14px;
  }
  .gs-actions {
    justify-content: flex-start;
    gap: 12px;
    padding-left: 44px;
  }
  .gs-prev {
    width: 42px;
    height: 42px;
  }
  .gs-prev img {
    width: 16px;
    height: 16px;
  }
  .gs-submit {
    min-width: 154px;
    height: 42px;
    font-size: 20px;
    letter-spacing: 0.12em;
  }
  .gs-submit.is-success {
    min-width: 170px;
  }

  /* Contacts */
  .contacts-block__map-wrap,
  .contacts-block__map {
    min-height: 720px;
  }

  .work-card::after {
    display: none;
  }
}

/* ============================================================
   RESPONSIVE — ≤640px
============================================================ */

@media (max-width: 640px) {
  .mobile-topbar-cta {
    display: none;
  }
  .mobile-logo img {
    width: clamp(110px, 34vw, 180px);
  }
  .hero-title {
    font-size: clamp(34px, 12vw, 54px);
  }
  .hero-sub {
    max-width: 320px;
    font-size: 14px;
  }
  .hero-btn {
    font-size: 16px;
    letter-spacing: 0.08em;
  }
  .mobile-menu__panel {
    width: min(82vw, 320px);
  }
}

/* ============================================================
   RESPONSIVE — ≤540px
============================================================ */

@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__menus {
    gap: 22px;
  }
  .footer-mobile a {
    font-size: 8px;
    line-height: 1.2;
  }
  .projects-hero__title {
    font-size: 48px;
  }
  .services-accordion {
    padding: 18px 0 8px;
  }
  .services-accordion__eyebrow {
    font-size: 22px;
  }
}

/* ============================================================
   RESPONSIVE — ≤480px
============================================================ */

@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;
  }

  .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-hero {
    margin-top: -52px;
  }
  .services-hero__media {
    min-height: 900px;
  }

  .services-hero__ghost {
    left: 28px;
    bottom: 106px;
    font-size: 72px;
  }
  .services-hero__text {
    bottom: 138px;
    max-width: 320px;
    font-size: 23px;
  }
  .services-hero__arrow {
    bottom: 46px;
    width: 38px;
    height: 38px;
  }
  .services-btn {
    min-width: 220px;
    height: 52px;
    font-size: 16px;
  }

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

  .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;
  }

  .blog-page__title--mobile {
    font-size: 66px;
    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 {
    height: 46px;
    font-size: 14px;
  }

  .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;
  }
  .blog-subscribe__mobile-btn {
    width: 74px;
    height: 58px;
  }
  .blog-subscribe__mobile-btn img {
    width: 26px;
    height: 26px;
  }

  .gs-card span {
    font-size: 16px;
  }
}

/* ============================================================
   RESPONSIVE — Drawer only on tablet/mobile
============================================================ */

@media (min-width: 1025px) {
  .projects-drawer {
    display: none;
  }
}

.projects-lang {
  position: relative;
  display: flex;
  align-items: center;
}

.projects-lang__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  color: #fff;
  font: inherit;
  font-size: 14px;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.projects-lang__arrow {
  font-size: 10px;
  transition: transform 0.25s ease;
}

/* dropdown */
.projects-lang__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);

  display: flex;
  flex-direction: column;
  align-items: center;

  min-width: 60px;
  padding: 10px 0;

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: all 0.25s ease;
}

/* стрелочка */
.projects-lang__dropdown::after {
  content: "";
  position: absolute;
  bottom: 96%;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);

  width: 10px;
  height: 10px;

  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.projects-lang__dropdown a {
  padding: 8px 16px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.08em;
  transition: 0.2s;
}

.projects-lang__dropdown a:hover,
.projects-lang__dropdown a.is-active {
  color: #fff;
}

/* ACTIVE */
.projects-lang.active .projects-lang__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.projects-lang.active .projects-lang__arrow {
  transform: rotate(180deg);
}

.projects-lang__dropdown {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.projects-drawer-lang {
  position: relative;
  display: flex;
  align-items: center;
}

.projects-drawer-lang__toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.projects-drawer-lang__arrow {
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.projects-drawer-lang.is-open .projects-drawer-lang__arrow {
  transform: rotate(180deg);
}

.projects-drawer-lang__dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;

  min-width: 78px;
  padding: 8px 0;

  display: flex;
  flex-direction: column;
  gap: 2px;

  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;
  z-index: 20;
}

.projects-drawer-lang.is-open .projects-drawer-lang__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.projects-drawer-lang__dropdown::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 22px;
  width: 12px;
  height: 12px;
  transform: rotate(45deg);

  background: rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.projects-drawer-lang__dropdown a {
  display: block;
  padding: 10px 14px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 12px;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.projects-drawer-lang__dropdown a:hover,
.projects-drawer-lang__dropdown a.is-active {
  background: rgba(255, 255, 255, 0.08);
}

.blog-subscribe__desktop {
  display: flex;
  align-items: center;
  gap: 0;
}

.blog-subscribe__field input {
  height: 56px;
  padding: 0 20px;
  font-size: 16px;

  border-radius: 999px 0 0 999px;
}

.blog-subscribe__btn {
  height: 56px;
  padding: 0 28px;

  font-size: 14px;
  letter-spacing: 0.08em;

  white-space: nowrap;

  border-radius: 0 999px 999px 0;

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

  flex: 0 0 auto;
}

.work-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

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

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 21, 54, 0.8);
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.work-card:hover::after {
  opacity: 0;
}

/* ============================================================
   CONTACTS PAGE
============================================================ */

.contacts-page {
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  padding: 56px 24px 48px;
  background: var(--grad-middle);
  border-radius: 0 0 28px 28px;
  margin-bottom: -40px;
  z-index: 1;
}

.contacts-page__container {
  position: relative;
  z-index: 2;
  width: min(1240px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contacts-page__title {
  position: relative;
  z-index: 3;
  margin-bottom: 78px;
  text-align: center;
  font-size: clamp(42px, 4.9vw, 72px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f4f4f4;
  max-width: 1200px;
}

.contacts-page__bg-word {
  position: absolute;
  left: 50%;
  bottom: -32px;
  transform: translateX(-50%);
  z-index: 1;
  font-size: clamp(120px, 24vw, 340px);
  line-height: 0.8;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

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

.contacts-page__plus img {
  display: block;
  width: 100%;
  height: 100%;
}

.contacts-page__plus--left {
  left: 0;
}

.contacts-page__plus--right {
  right: 0;
}

.contacts-page__arcs {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

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

.contacts-page__arc--1 {
  top: 8px;
  width: min(1120px, 100%);
  height: 700px;
}

.contacts-page__arc--2 {
  top: 96px;
  width: min(780px, 78%);
  height: 500px;
}

.contacts-page__arc--3 {
  top: 170px;
  width: min(520px, 54%);
  height: 340px;
}

.contacts-card {
  position: relative;
  z-index: 3;
  width: min(1090px, 100%);
  min-height: 445px;
  padding: 92px 32px 26px;
  border-radius: 0 0 32px 32px;

  background: linear-gradient(
    180deg,
    rgba(8, 21, 54, 0) 0%,
    /* прозрачный старт */ rgba(8, 21, 54, 0.6) 40%,
    rgba(8, 21, 54, 0.9) 100%
  );

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.contacts-card__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.contacts-card__social {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-social);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.contacts-card__social img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.contacts-card__social:hover {
  transform: translateY(-3px);
}

.contacts-card__social--accent {
  background: var(--pill-bg-strong);
  box-shadow: var(--shadow-btn);
}

.contacts-card__email {
  display: inline-block;
  margin-bottom: 12px;
  color: #f4f4f4;
  text-decoration: none;
  font-size: clamp(28px, 3.1vw, 44px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.contacts-card__email:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
}

.contacts-card__divider {
  width: min(424px, 100%);
  height: 1px;
  margin-bottom: auto;
  background: rgba(255, 255, 255, 0.34);
}

.contacts-card__hours {
  margin-top: 82px;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

/* ============================================================
   CONTACTS PAGE — Responsive
============================================================ */

@media (max-width: 1024px) {
  .contacts-page {
    padding: 40px 16px 32px;
  }

  .contacts-page__title {
    margin-bottom: 34px;
    font-size: 58px;
  }

  .contacts-page__arc--1 {
    width: 96%;
    height: 520px;
  }

  .contacts-page__arc--2 {
    top: 70px;
    width: 72%;
    height: 390px;
  }

  .contacts-page__arc--3 {
    top: 138px;
    width: 48%;
    height: 250px;
  }

  .contacts-card {
    min-height: 360px;
    padding: 56px 24px 24px;
  }

  .contacts-card__social {
    width: 84px;
    height: 84px;
  }

  .contacts-card__social img {
    width: 32px;
    height: 32px;
  }

  .contacts-card__email {
    font-size: 28px;
  }

  .contacts-card__hours {
    margin-top: 56px;
    font-size: 24px;
  }
}

@media (max-width: 540px) {
  .contacts-page {
    min-height: auto;
    padding: 30px 10px 24px;
  }

  .contacts-page__plus {
    display: none;
  }

  .contacts-page__bg-word {
    font-size: 108px;
    bottom: -10px;
    opacity: 0.9;
  }

  .contacts-page__title {
    margin-bottom: 26px;
    font-size: 26px;
    line-height: 1.06;
    max-width: 240px;
  }

  .contacts-page__arc--1 {
    top: 16px;
    width: 108%;
    height: 330px;
  }

  .contacts-page__arc--2 {
    top: 74px;
    width: 82%;
    height: 230px;
  }

  .contacts-page__arc--3 {
    display: none;
  }

  .contacts-card {
    width: 100%;
    min-height: auto;
    padding: 26px 16px 18px;
    border-radius: 0;
  }

  .contacts-card__socials {
    gap: 10px;
    margin-bottom: 20px;
  }

  .contacts-card__social {
    width: 52px;
    height: 52px;
  }

  .contacts-card__social img {
    width: 22px;
    height: 22px;
  }

  .contacts-card__email {
    margin-bottom: 8px;
    font-size: 16px;
    text-align: center;
  }

  .contacts-card__divider {
    width: 100%;
  }

  .contacts-card__hours {
    margin-top: 56px;
    font-size: 14px;
    letter-spacing: 0.04em;
  }
}

.contacts-map {
  position: relative;
  margin-top: -8px;
  padding: 0 0 48px;
  background: var(--grad-middle);
}

.contacts-map__wrap {
  position: relative;
  width: 100%;
  height: 760px;
  overflow: hidden;
  border-radius: 0 0 34px 34px;
  box-shadow: 0 -10px 26px rgba(0, 0, 0, 0.22);
}

.contacts-map__frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) brightness(1.03) contrast(0.94);
}

.contacts-map__badge {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  min-height: 48px;
  padding: 0 38px;
  border-radius: 999px;
  background: linear-gradient(180deg, #020715 0%, #081536 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: clamp(20px, 1vw, 26px);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: 0.01em;
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  white-space: nowrap;
  z-index: 3;
}

@media (max-width: 768px) {
  .contacts-map__wrap {
    height: 420px;
    border-radius: 0 0 24px 24px;
  }

  .contacts-map__badge {
    bottom: 16px;
    min-height: 52px;
    padding: 0 18px;
    font-size: 14px;
    max-width: calc(100% - 24px);
    white-space: normal;
    border-radius: 18px;
  }
}

/* blog single 2 */

.article-single__hero-content2 {
  position: absolute;
  top: 20%;
  left: 46px;
  z-index: 2;
  max-width: 960px;
  text-align: left;
}

.blog-single-page2 {
  margin-top: -110px;
  background: #fff;
  color: #00112c;
}

.blog-subscribe__desktop {
  display: none;
}
/* ============================================================
   ARTICLE SINGLE BODY
============================================================ */

.article-single__body {
  position: relative;
  padding: 86px 0 92px;
  background: #f6f6f4;
  color: #081536;
}

.article-single__container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.article-single__content {
  max-width: 860px;
  margin: 0 auto;
}

.article-single__content h2,
.article-single__content h3 {
  margin: 56px 0 22px;
  color: #081536;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.article-single__content h2 {
  font-size: clamp(34px, 3vw, 54px);
}

.article-single__content h3 {
  font-size: clamp(24px, 2vw, 34px);
}

.article-single__content p,
.article-single__content li {
  font-size: clamp(18px, 1.3vw, 22px);
  line-height: 1.8;
  color: rgba(8, 21, 54, 0.82);
}

.article-single__content p + p {
  margin-top: 22px;
}

.article-single__lead {
  position: relative;
  margin-bottom: 42px;
  padding: 0 0 28px;
  font-size: clamp(24px, 1.9vw, 32px) !important;
  line-height: 1.55 !important;
  color: #081536 !important;
  font-weight: 500;
}

.article-single__lead::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, #081536 0%, rgba(8, 21, 54, 0.12) 100%);
}

.article-single__quote {
  position: relative;
  margin: 42px 0;
  padding: 34px 38px 34px 42px;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(8, 21, 54, 0.04) 0%,
    rgba(8, 21, 54, 0.02) 100%
  );
  border: 1px solid rgba(8, 21, 54, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 16px 32px rgba(8, 21, 54, 0.06);
  font-size: clamp(22px, 1.8vw, 30px);
  line-height: 1.5;
  color: #081536;
  font-weight: 500;
}

.article-single__quote::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 0;
  width: 6px;
  height: calc(100% - 56px);
  border-radius: 999px;
  background: linear-gradient(180deg, #020715 0%, #2255dd 100%);
}

.article-single__list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.article-single__list li {
  position: relative;
  padding-left: 28px;
}

.article-single__list li::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, #020715 0%, #2255dd 100%);
  box-shadow: 0 0 0 6px rgba(34, 85, 221, 0.08);
}

.article-single__note {
  margin: 42px 0 10px;
  padding: 28px 30px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(8, 21, 54, 0.08);
  box-shadow: 0 12px 28px rgba(8, 21, 54, 0.06);
}

.article-single__note-label {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, #020715 0%, #081536 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-single__note p {
  color: rgba(8, 21, 54, 0.84);
}

.article-single__bottom {
  margin-top: 78px;
  padding-top: 34px;
  border-top: 1px solid rgba(8, 21, 54, 0.12);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.article-single__nav2 {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #081536;
  min-height: 54px;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.article-single__nav:hover {
  transform: translateY(-1px);
}

.article-single__nav--next {
  justify-self: end;
}

.article-single__nav-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(180deg, #020715 0%, #081536 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 10px 22px rgba(8, 21, 54, 0.14);
  flex-shrink: 0;
}

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

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

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

.article-single__nav-text {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-single__author {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.article-single__author-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(8, 21, 54, 0.45);
}

.article-single__author-name {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
  color: #081536;
}

/* ============================================================
   ARTICLE SINGLE BODY — Responsive
============================================================ */

@media (max-width: 768px) {
  .article-single__body {
    padding: 48px 0 54px;
  }

  .article-single__container {
    width: min(100% - 20px, 100%);
  }

  .article-single__content h2,
  .article-single__content h3 {
    margin: 40px 0 18px;
    line-height: 1.04;
  }

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

  .article-single__lead {
    font-size: 21px !important;
    line-height: 1.55 !important;
  }

  .article-single__quote {
    margin: 34px 0;
    padding: 24px 22px 24px 24px;
    border-radius: 20px;
    font-size: 20px;
  }

  .article-single__note {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .article-single__bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 20px;
  }

  .article-single__nav--next {
    justify-self: center;
  }

  .article-single__nav2 {
    width: 100%;
    justify-content: center;
  }

  .article-single__author {
    order: -1;
  }
}

@media screen and (max-width: 540px) {
  .article-single__hero-content2 {
    left: 16px;
  }
}