@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --color-bg: #050816;
  --color-bg-soft: #080d1f;
  --color-bg-card: rgba(12, 18, 38, 0.72);
  --color-bg-card-strong: rgba(15, 23, 48, 0.9);
  --color-border: rgba(148, 163, 184, 0.18);
  --color-border-strong: rgba(96, 165, 250, 0.35);
  --color-text: #f8fafc;
  --color-text-muted: #a8b3c7;
  --color-text-soft: #cbd5e1;
  --color-primary: #7c3aed;
  --color-primary-light: #a855f7;
  --color-blue: #38bdf8;
  --color-cyan: #22d3ee;
  --color-indigo: #6366f1;
  --color-success: #22c55e;
  --color-warning: #facc15;
  --gradient-main: linear-gradient(135deg, #7c3aed 0%, #2563eb 45%, #38bdf8 100%);
  --gradient-purple-blue: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
  --gradient-card: linear-gradient(145deg, rgba(15, 23, 42, 0.92), rgba(8, 13, 31, 0.82));
  --gradient-hero-glow:
    radial-gradient(circle at 75% 25%, rgba(124, 58, 237, 0.35), transparent 34%),
    radial-gradient(circle at 90% 45%, rgba(56, 189, 248, 0.22), transparent 30%),
    radial-gradient(circle at 20% 10%, rgba(59, 130, 246, 0.16), transparent 32%);
  --container: 1240px;
  --radius-sm: 12px;
  --radius-md: 14px;
  --radius-card: 22px;
  --radius-xl: 28px;
  --shadow-card: 0 24px 80px rgba(0, 0, 0, 0.28);
  --shadow-hover: 0 30px 90px rgba(59, 130, 246, 0.18);
  --header-height: 78px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(124, 58, 237, 0.16), transparent 32%),
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.12), transparent 35%),
    linear-gradient(180deg, #050816 0%, #040711 100%);
  color: var(--color-text-soft);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
}

::selection {
  background: rgba(56, 189, 248, 0.28);
  color: var(--color-text);
}

.container {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 0 32px;
}

.site-main {
  position: relative;
  isolation: isolate;
}

.section {
  position: relative;
  padding: 88px 0;
}

.section--compact {
  padding: 64px 0;
}

.portfolio-listing {
  padding-top: 54px;
}

.section--soft {
  background:
    radial-gradient(circle at 15% 15%, rgba(56, 189, 248, 0.08), transparent 28%),
    radial-gradient(circle at 85% 30%, rgba(124, 58, 237, 0.1), transparent 32%);
}

.section-glow {
  background: var(--gradient-hero-glow);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 2000;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--color-text);
  color: var(--color-bg);
  font-weight: 800;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.icon {
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 auto;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(5, 8, 22, 0.72);
  backdrop-filter: blur(20px);
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(5, 8, 22, 0.88);
  border-color: rgba(96, 165, 250, 0.2);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.26);
}

.site-header__inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.site-header__brand {
  position: relative;
  z-index: 1002;
}

.custom-logo-link,
.custom-logo-link img {
  display: block;
  max-width: 200px;
  max-height: 44px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list > li {
  position: relative;
}

.nav-list a,
.nav-industry summary {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  color: #d8e1f2;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}

.nav-list a:hover,
.nav-list a:focus-visible,
.nav-industry summary:hover,
.nav-industry summary:focus-visible {
  color: #fff;
}

.nav-list a::after,
.nav-industry summary::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 3px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7c3aed, #38bdf8);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.24s ease;
}

.nav-list .current-menu-item > a::after,
.nav-list a.is-active::after,
.nav-list a:hover::after,
.nav-industry[open] summary::after {
  transform: scaleX(1);
}

.nav-industry {
  position: relative;
}

.nav-industry summary {
  list-style: none;
}

.nav-industry summary::-webkit-details-marker {
  display: none;
}

.nav-industry__panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: min(820px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 22px;
  padding: 22px;
  border: 1px solid rgba(96, 165, 250, 0.24);
  border-radius: 22px;
  background: rgba(5, 8, 22, 0.96);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(20px);
  transform: translateX(-50%);
}

.nav-industry__intro {
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background:
    radial-gradient(circle at 20% 10%, rgba(124, 58, 237, 0.2), transparent 34%),
    rgba(255, 255, 255, 0.03);
}

.nav-industry__intro span {
  display: block;
  margin-bottom: 10px;
  color: var(--color-blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-industry__intro strong {
  display: block;
  color: #fff;
  font-size: 17px;
  line-height: 1.25;
}

.nav-industry__intro p {
  margin: 10px 0 0;
  color: var(--color-text-muted);
  font-size: 13px;
  line-height: 1.55;
}

.nav-industry__groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: max-content;
  align-items: start;
  gap: 14px;
}

.nav-industry__group {
  display: grid;
  align-content: start;
  align-self: start;
  gap: 4px;
}

.nav-industry__group span {
  padding: 0 8px 4px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.nav-industry__group a {
  min-height: 0;
  padding: 7px 8px;
  border-radius: 10px;
  color: var(--color-text-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
}

.nav-industry__group a::after {
  display: none;
}

.nav-industry__group a:hover {
  background: rgba(56, 189, 248, 0.08);
  color: #fff;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 13px 20px;
  border-radius: 14px;
  background: var(--gradient-main);
  box-shadow: 0 12px 34px rgba(59, 130, 246, 0.28);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(56, 189, 248, 0.34);
}

.nav-toggle {
  position: relative;
  z-index: 1002;
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  cursor: pointer;
}

.nav-toggle__icon--close {
  display: none;
}

body.nav-open .nav-toggle__icon--open {
  display: none;
}

body.nav-open .nav-toggle__icon--close {
  display: block;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 16px 24px;
  border: 0;
  border-radius: 14px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.btn--primary {
  border: 0;
  background: var(--gradient-main);
  box-shadow: 0 16px 45px rgba(56, 189, 248, 0.2);
  color: #fff;
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.28);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  box-shadow: 0 20px 50px rgba(56, 189, 248, 0.25);
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
  border-color: rgba(56, 189, 248, 0.55);
  background: rgba(56, 189, 248, 0.08);
}

.btn__icon,
.btn .icon {
  width: 18px;
  height: 18px;
  transition: transform 0.22s ease;
}

.btn:hover .icon,
.text-link:hover .icon {
  transform: translateX(4px);
}

.btn--footer {
  width: 100%;
  margin-top: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-blue);
  font-size: 14px;
  font-weight: 800;
}

.text-link .icon {
  width: 17px;
  height: 17px;
  transition: transform 0.22s ease;
}

.hero {
  position: relative;
  padding: 86px 0 64px;
  overflow: hidden;
}

.hero--home {
  min-height: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(circle at 55% 30%, black, transparent 70%);
  opacity: 0.45;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  align-items: center;
  gap: 64px;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero__title,
.single-realization h1 {
  margin: 0;
  color: var(--color-text);
  font-size: 64px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 620px;
  margin: 22px 0 0;
  color: #b8c4d9;
  font-size: 18px;
  line-height: 1.8;
}

.gradient-text {
  background: linear-gradient(135deg, #a855f7 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.mini-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.mini-benefit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.mini-benefit span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(124, 58, 237, 0.24);
  border-radius: 12px;
  background: rgba(124, 58, 237, 0.12);
  color: var(--color-blue);
}

.hero__visual {
  position: relative;
  min-height: 560px;
}

.orbit {
  position: absolute;
  inset: 10% 4%;
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 50%;
  transform: rotate(-8deg);
  opacity: 0.35;
  animation: orbitRotate 22s linear infinite;
  pointer-events: none;
}

.orbit--two {
  inset: 20% -2% 18% 12%;
  border-color: rgba(124, 58, 237, 0.28);
  animation-duration: 28s;
  animation-direction: reverse;
}

@keyframes orbitRotate {
  to {
    transform: rotate(352deg);
  }
}

.ui-composition {
  position: relative;
  min-height: 560px;
}

.ui-window,
.ui-phone,
.about-card,
.mockup {
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.94), rgba(4, 8, 20, 0.86));
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(18px);
}

.ui-window {
  position: absolute;
  border-radius: 22px;
  overflow: hidden;
}

.ui-window__top,
.mockup__bar {
  height: 28px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.ui-window__top span,
.mockup__bar span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.55);
}

.ui-window__top span:nth-child(1),
.mockup__bar span:nth-child(1) {
  background: #fb7185;
}

.ui-window__top span:nth-child(2),
.mockup__bar span:nth-child(2) {
  background: #facc15;
}

.ui-window__top span:nth-child(3),
.mockup__bar span:nth-child(3) {
  background: #22c55e;
}

.ui-window--site {
  left: 0;
  top: 78px;
  width: 58%;
  min-height: 250px;
}

.ui-window--dashboard {
  right: 0;
  top: 190px;
  width: 68%;
  min-height: 300px;
}

.hero--home .ui-window--site {
  animation: homeFloatA 7s ease-in-out infinite;
}

.hero--home .ui-window--dashboard {
  animation: homeFloatB 8s ease-in-out infinite;
}

.hero--home .ui-phone {
  animation: homeFloatC 6.6s ease-in-out infinite;
}

.hero--home .ui-window__cards i,
.hero--home .dashboard-nav i,
.hero--home .hero-preview__sections span,
.hero--home .hero-preview__contact,
.hero--home .ui-phone__screen i {
  animation: homePanelPulse 4.2s ease-in-out infinite;
}

.hero--home .ui-window__cards i:nth-child(2),
.hero--home .dashboard-nav i:nth-child(2),
.hero--home .hero-preview__sections span:nth-child(2),
.hero--home .ui-phone__screen i:nth-of-type(2) {
  animation-delay: 0.7s;
}

.hero--home .ui-window__cards i:nth-child(3),
.hero--home .dashboard-nav i:nth-child(3),
.hero--home .hero-preview__sections span:nth-child(3),
.hero--home .ui-phone__screen i:nth-of-type(3) {
  animation-delay: 1.35s;
}

@keyframes homeFloatA {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(8px, -10px, 0) rotate(0.4deg);
  }
}

@keyframes homeFloatB {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(-10px, 8px, 0) rotate(-0.35deg);
  }
}

@keyframes homeFloatC {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(7px, -8px, 0);
  }
}

@keyframes homePanelPulse {
  0%,
  100% {
    border-color: rgba(148, 163, 184, 0.12);
    box-shadow: none;
  }

  50% {
    border-color: rgba(56, 189, 248, 0.3);
    box-shadow: 0 0 22px rgba(56, 189, 248, 0.12);
  }
}

.ui-phone {
  position: absolute;
  left: 58px;
  bottom: 60px;
  width: 168px;
  height: 220px;
  border-radius: 28px;
  padding: 12px;
  z-index: 3;
}

.ui-phone__screen {
  height: 100%;
  border-radius: 20px;
  padding: 22px 16px;
  background:
    radial-gradient(circle at 20% 20%, rgba(124, 58, 237, 0.32), transparent 28%),
    rgba(4, 8, 20, 0.92);
}

.ui-phone__screen span {
  display: block;
  color: var(--color-blue);
  font-size: 12px;
  font-weight: 800;
}

.ui-phone__screen strong {
  display: block;
  margin: 8px 0 18px;
  color: #fff;
  line-height: 1.2;
}

.ui-phone__screen i {
  display: block;
  height: 32px;
  margin-top: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
}

.ui-window__hero {
  min-height: 154px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(2, 6, 23, 0.25), rgba(2, 6, 23, 0.7)),
    linear-gradient(135deg, rgba(124, 58, 237, 0.16), rgba(56, 189, 248, 0.1));
}

.ui-window__hero strong {
  max-width: 280px;
  color: #fff;
  font-size: 22px;
  line-height: 1.15;
}

.ui-window__hero span {
  width: max-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.2);
  color: #e0e7ff;
  font-size: 12px;
  font-weight: 800;
}

.ui-window__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 16px;
}

.ui-window__cards i,
.stats-row span,
.dashboard-nav i,
.line-chart,
.ui-searchbar,
.product-thumbs i {
  border: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.ui-window__cards i {
  min-height: 44px;
  border-radius: 12px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  padding: 18px;
}

.dashboard-nav {
  display: grid;
  gap: 10px;
}

.dashboard-nav i {
  height: 30px;
  border-radius: 10px;
}

.dashboard-main {
  min-width: 0;
}

.hero-preview {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.hero-preview__status,
.hero-preview__contact {
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 18px;
  background:
    radial-gradient(circle at 14% 20%, rgba(56, 189, 248, 0.16), transparent 36%),
    rgba(255, 255, 255, 0.055);
}

.hero-preview__status {
  min-height: 104px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 20px;
}

.hero-preview__status span,
.hero-preview__contact span {
  color: var(--color-blue);
  font-size: 12px;
  font-weight: 800;
}

.hero-preview__status strong,
.hero-preview__contact strong {
  display: block;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
}

.hero-preview__sections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.hero-preview__sections span {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text-soft);
  font-size: 12px;
  font-weight: 800;
}

.hero-preview__contact {
  display: grid;
  gap: 7px;
  padding: 16px;
}

.hero-preview__contact i {
  display: block;
  width: 58%;
  height: 9px;
  margin-top: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.9), rgba(56, 189, 248, 0.95));
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.ui-composition--home .dashboard-main .stats-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ui-composition--home .dashboard-main .stats-row span:nth-child(3) {
  grid-column: 1 / -1;
}

.stats-row span {
  min-height: 54px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.line-chart {
  position: relative;
  height: 112px;
  margin-top: 14px;
  border-radius: 16px;
  overflow: hidden;
}

.line-chart::before {
  content: "";
  position: absolute;
  inset: 20px 18px;
  background:
    linear-gradient(135deg, transparent 18%, rgba(124, 58, 237, 0.8) 19%, rgba(56, 189, 248, 0.85) 21%, transparent 22%),
    linear-gradient(160deg, transparent 48%, rgba(99, 102, 241, 0.65) 49%, rgba(56, 189, 248, 0.75) 51%, transparent 52%);
}

.donut,
.product-orbit {
  border-radius: 50%;
  background: conic-gradient(from 40deg, #7c3aed, #38bdf8, rgba(255, 255, 255, 0.12), #7c3aed);
}

.donut {
  position: absolute;
  right: 28px;
  bottom: 24px;
  width: 72px;
  height: 72px;
  mask: radial-gradient(circle, transparent 45%, black 47%);
}

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--gradient-card);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(18px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(56, 189, 248, 0.12), transparent 34%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.36);
  box-shadow: var(--shadow-hover);
}

.card:hover::before {
  opacity: 1;
}

.icon-badge {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(124, 58, 237, 0.28);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, 0.14);
  box-shadow: 0 0 28px rgba(124, 58, 237, 0.22);
  color: #a78bfa;
}

.icon-badge--small {
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

.proof-grid,
.service-grid,
.stats-grid,
.advantage-grid,
.industry-grid,
.direction-grid,
.project-grid,
.approach-grid,
.audience-grid {
  display: grid;
  gap: 22px;
}

.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-card,
.advantage-card,
.value-card,
.audience-card {
  min-height: 150px;
  padding: 28px;
}

.proof-card h2,
.advantage-card h2,
.value-card h3,
.audience-card h3,
.service-card h3,
.direction-card h3,
.project-card h3 {
  margin: 18px 0 8px;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
}

.proof-card p,
.advantage-card p,
.value-card p,
.audience-card p,
.service-card p,
.direction-card p,
.project-card p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.65;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading--row,
.section-heading--portfolio {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading h1,
.section-heading h2,
.approach-card h2,
.cta-banner h2,
.tech-layout h2 {
  margin: 0;
  color: var(--color-text);
  font-size: 44px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--color-text-muted);
  font-size: 18px;
}

.portfolio-listing .section-heading {
  margin-bottom: 26px;
}

.portfolio-listing .section-heading h1 {
  max-width: 720px;
}

.portfolio-listing .section-heading p {
  max-width: 660px;
  margin-top: 12px;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.service-card__media,
.direction-card__media,
.project-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.service-card__media .mockup,
.direction-card__media .mockup,
.project-card__media .mockup,
.portfolio-aside .mockup {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: scale(1);
  transition: transform 0.32s ease;
}

.service-card:hover .mockup,
.direction-card:hover .mockup,
.project-card:hover .mockup {
  transform: scale(1.04);
}

.service-card__body {
  padding: 24px;
}

.service-card .text-link {
  margin-top: 18px;
}

.mockup {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: 20px;
}

.mockup::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 16%, rgba(56, 189, 248, 0.22), transparent 28%),
    radial-gradient(circle at 20% 80%, rgba(124, 58, 237, 0.28), transparent 28%);
  pointer-events: none;
}

.mockup__grid {
  position: relative;
  display: grid;
  grid-template-columns: 26% 1fr;
  gap: 14px;
  height: calc(100% - 28px);
  min-height: 192px;
  padding: 16px;
}

.mockup__sidebar {
  display: grid;
  gap: 10px;
  align-content: start;
}

.mockup__sidebar span,
.mockup__hero-line,
.mockup__cards span {
  display: block;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(255, 255, 255, 0.07);
}

.mockup__sidebar span {
  height: 20px;
}

.mockup__hero-line {
  height: 58px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.22), rgba(56, 189, 248, 0.1));
}

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

.mockup__cards span {
  height: 38px;
}

.mockup__chart {
  height: 64px;
  display: flex;
  align-items: end;
  gap: 8px;
  margin-top: 12px;
}

.mockup__chart i {
  flex: 1;
  min-height: 18px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.8), rgba(124, 58, 237, 0.3));
}

.mockup__chart i:nth-child(2) {
  height: 48px;
}

.mockup__chart i:nth-child(3) {
  height: 32px;
}

.mockup__chart i:nth-child(4) {
  height: 58px;
}

.mockup__chart i:nth-child(5) {
  height: 42px;
}

.industry-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

#branze .industry-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.industry-card {
  position: relative;
  min-height: 128px;
  display: grid;
  align-content: end;
  gap: 4px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background:
    linear-gradient(180deg, transparent 0%, rgba(5, 8, 22, 0.95) 88%),
    linear-gradient(135deg, rgba(124, 58, 237, 0.18), rgba(56, 189, 248, 0.11));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, transparent 0 36%, rgba(255, 255, 255, 0.12) 37% 38%, transparent 39%),
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.16), transparent 24%);
  opacity: 0.75;
}

.industry-card--food { background-color: rgba(132, 77, 23, 0.18); }
.industry-card--beauty { background-color: rgba(190, 24, 93, 0.16); }
.industry-card--dental { background-color: rgba(14, 165, 233, 0.14); }
.industry-card--building { background-color: rgba(100, 116, 139, 0.16); }
.industry-card--photo { background-color: rgba(79, 70, 229, 0.15); }
.industry-card--estate { background-color: rgba(34, 197, 94, 0.1); }
.industry-card--event { background-color: rgba(168, 85, 247, 0.18); }
.industry-card--local { background-color: rgba(14, 165, 233, 0.12); }

.industry-card:hover,
.industry-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.36);
  box-shadow: var(--shadow-hover);
}

.industry-card__icon {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(124, 58, 237, 0.28);
  border-radius: 12px;
  background: rgba(124, 58, 237, 0.2);
  color: #d8b4fe;
}

.industry-card strong,
.industry-card small {
  position: relative;
  z-index: 1;
}

.industry-card strong {
  color: #fff;
  font-size: 17px;
  line-height: 1.2;
}

.industry-card small {
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 700;
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 20px;
  height: 2px;
  background: linear-gradient(90deg, #7c3aed, #38bdf8);
}

.process-step {
  position: relative;
}

.process-step__number {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 2px solid var(--color-blue);
  border-radius: 50%;
  background: #06122a;
  color: #fff;
  font-weight: 800;
}

.process-step__card {
  min-height: 208px;
  margin-top: 16px;
  padding: 22px;
}

.process-step__card h3 {
  margin: 14px 0 8px;
  color: #fff;
  font-size: 17px;
  line-height: 1.25;
}

.process-step__card p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 14px;
}

.direction-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.direction-card {
  padding-bottom: 18px;
}

.direction-card h3,
.direction-card .tag-list {
  padding: 0 18px;
}

.direction-card h3 {
  margin-top: 18px;
  font-size: 18px;
}

.direction-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.32s ease;
}

.direction-card:hover .direction-card__media img {
  transform: scale(1.04);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 7px 10px;
  border: 1px solid rgba(129, 140, 248, 0.18);
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.12);
  color: #c7d2fe;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 26px;
  align-items: stretch;
}

.argument-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.argument-item {
  min-height: 112px;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 8px 14px;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.argument-item .icon {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  color: var(--color-blue);
}

.argument-item strong {
  color: #fff;
  line-height: 1.25;
}

.argument-item span {
  color: var(--color-text-muted);
  font-size: 13px;
}

.why-metrics {
  display: flex;
  align-items: end;
}

.why-result-card {
  position: relative;
  width: 100%;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(14, 24, 49, 0.98), rgba(9, 14, 31, 0.92)),
    rgba(255, 255, 255, 0.035);
}

.why-result-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(56, 189, 248, 0.1), transparent 42%),
    linear-gradient(180deg, rgba(124, 58, 237, 0.12), transparent 46%);
  opacity: 0.9;
}

.why-result-card > * {
  position: relative;
  z-index: 1;
}

.why-result-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--color-blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.why-result-card h3 {
  max-width: 560px;
  margin: 0;
  color: #fff;
  font-size: 28px;
  line-height: 1.18;
  letter-spacing: 0;
}

.why-result-card p {
  max-width: 580px;
  margin: 16px 0 0;
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.why-result-card__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.why-result-card__grid div {
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--color-text-soft);
  font-size: 13px;
  font-weight: 800;
}

.why-result-card__grid span {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(56, 189, 248, 0.1);
  color: var(--color-blue);
}

.cta-banner {
  position: relative;
  min-height: 250px;
  display: grid;
  grid-template-columns: 180px 1fr 220px;
  align-items: center;
  gap: 28px;
  overflow: hidden;
  padding: 42px;
  border: 1px solid rgba(96, 165, 250, 0.28);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(124, 58, 237, 0.28), rgba(56, 189, 248, 0.12)),
    radial-gradient(circle at 82% 18%, rgba(124, 58, 237, 0.35), transparent 34%),
    rgba(8, 13, 31, 0.86);
  box-shadow: var(--shadow-card);
}

.cta-banner__rocket {
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  border-radius: 30px;
  background:
    radial-gradient(circle, rgba(56, 189, 248, 0.22), transparent 62%),
    radial-gradient(circle at 28% 24%, rgba(168, 85, 247, 0.28), transparent 48%);
  color: #67e8f9;
  filter:
    drop-shadow(0 0 10px rgba(56, 189, 248, 0.95))
    drop-shadow(0 0 30px rgba(124, 58, 237, 0.6));
  animation: rocketGlow 2.8s ease-in-out infinite;
}

.cta-banner__rocket .icon {
  width: 130px;
  height: 130px;
  stroke-width: 1.2;
}

@keyframes rocketGlow {
  0%,
  100% {
    transform: translateY(0);
    filter:
      drop-shadow(0 0 10px rgba(56, 189, 248, 0.9))
      drop-shadow(0 0 28px rgba(124, 58, 237, 0.55));
  }

  50% {
    transform: translateY(-4px);
    filter:
      drop-shadow(0 0 16px rgba(56, 189, 248, 1))
      drop-shadow(0 0 44px rgba(124, 58, 237, 0.76));
  }
}

.cta-banner__content {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-size: 42px;
}

.cta-banner p {
  max-width: 680px;
  margin: 12px 0 0;
  color: var(--color-text-soft);
  font-size: 18px;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.cta-banner__orbits {
  position: absolute;
  right: -8%;
  top: -30%;
  width: 440px;
  height: 360px;
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.cta-banner__orbits::before,
.cta-banner__orbits::after {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(124, 58, 237, 0.22);
  border-radius: 50%;
}

.cta-banner__orbits::after {
  inset: 78px;
  border-color: rgba(56, 189, 248, 0.16);
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stats-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stats-grid--about {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat-card {
  min-height: 118px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 4px 16px;
  align-content: center;
  padding: 24px;
}

.stat-card > span {
  grid-row: span 2;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(124, 58, 237, 0.18);
  color: #a78bfa;
}

.stat-card strong {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.stat-card p {
  margin: 0;
  color: var(--color-text-soft);
  font-size: 15px;
  line-height: 1.35;
}

.ui-composition--portfolio .ui-window--top {
  top: 0;
  right: 42px;
  width: 62%;
  min-height: 220px;
}

.portfolio-panel {
  padding: 18px;
}

.ui-window--estate {
  left: 10px;
  bottom: 76px;
  width: 56%;
  min-height: 238px;
}

.ui-window--product {
  right: 0;
  bottom: 36px;
  width: 48%;
  min-height: 246px;
  padding: 28px;
}

.ui-window--product strong {
  display: block;
  margin-top: 92px;
  color: #fff;
  font-size: 22px;
  line-height: 1.2;
}

.product-orbit {
  position: absolute;
  top: 28px;
  right: 46px;
  width: 108px;
  height: 108px;
  opacity: 0.9;
  mask: radial-gradient(circle, transparent 50%, black 52%);
}

.product-thumbs {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.product-thumbs i {
  height: 38px;
  border-radius: 12px;
}

.ui-searchbar {
  display: grid;
  grid-template-columns: 1fr 1fr 78px;
  gap: 8px;
  margin: 18px;
  padding: 8px;
  border-radius: 14px;
}

.ui-searchbar i,
.ui-searchbar b {
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.ui-searchbar b {
  background: var(--gradient-main);
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.filter-pill {
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--color-text-soft);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.filter-pill:hover,
.filter-pill:focus-visible,
.filter-pill.is-active {
  border-color: rgba(124, 58, 237, 0.72);
  background: rgba(124, 58, 237, 0.16);
  color: #fff;
  box-shadow: 0 0 24px rgba(124, 58, 237, 0.18);
}

.project-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.project-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.32s ease;
}

.project-card:hover .project-card__image {
  transform: scale(1.035);
}

.project-card__label {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 8px 11px;
  border: 1px solid rgba(167, 139, 250, 0.38);
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.36);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.project-card__body {
  padding: 24px;
}

.project-card h3 {
  margin-top: 0;
  font-size: 22px;
}

.project-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
}

.approach-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 34px;
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.approach-step h3 {
  margin: 14px 0 8px;
  color: #fff;
  font-size: 17px;
  line-height: 1.25;
}

.approach-step p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 14px;
}

.hero--about .hero__grid {
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
}

.about-card {
  position: relative;
  /* min-height: 520px; */
  padding: 28px;
  overflow: hidden;
  border-radius: 22px;
}

.about-card__portrait {
  position: relative;
  height: 330px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 20%, rgba(124, 58, 237, 0.35), transparent 34%),
    radial-gradient(circle at 70% 45%, rgba(56, 189, 248, 0.18), transparent 38%),
    rgba(255, 255, 255, 0.04);
}

.about-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-placeholder {
  width: 170px;
  height: 170px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(56, 189, 248, 0.32);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(124, 58, 237, 0.22), rgba(56, 189, 248, 0.1)),
    rgba(5, 8, 22, 0.8);
  color: #fff;
  font-size: 54px;
  font-weight: 800;
  box-shadow: 0 0 80px rgba(124, 58, 237, 0.28);
}

.about-card__caption {
  position: relative;
  z-index: 1;
  /* padding-top: 24px; */
}

.about-card__caption h2 {
  margin: 0;
  color: #fff;
  font-size: 28px;
  line-height: 1.15;
}

.about-card__caption p {
  margin: 8px 0 16px;
  color: var(--color-text-soft);
}

.advantage-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.advantage-card {
  min-height: 176px;
}

.advantage-card h2 {
  font-size: 18px;
}

.tech-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 42px;
  align-items: end;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(138px, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.tech-tile {
  width: 100%;
  min-height: 128px;
  display: grid;
  place-items: center;
  gap: 10px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.tech-tile:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 189, 248, 0.38);
  box-shadow: 0 24px 70px rgba(56, 189, 248, 0.14);
}

.tech-tile__icon-frame {
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.tech-tile__icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.tech-tile--js .tech-tile__icon-frame {
  background: rgba(250, 204, 21, 0.14);
}

.tech-tile strong {
  color: #fff;
  font-size: 14px;
}

.help-card {
  padding: 32px;
}

.help-card h3 {
  margin: 0 0 22px;
  color: #fff;
  font-size: 22px;
}

.check-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  color: var(--color-text-soft);
  line-height: 1.5;
}

.check-list .icon {
  color: var(--color-primary-light);
}

.approach-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.numbered-card {
  min-height: 260px;
  padding: 30px;
}

.numbered-card h3 {
  margin: 16px 0 10px;
  color: #fff;
  font-size: 20px;
  line-height: 1.25;
}

.numbered-card p {
  margin: 0;
  color: var(--color-text-muted);
}

.value-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 30px;
  align-items: stretch;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.value-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 30px;
}

.value-card h3 {
  max-width: 320px;
  font-size: 24px;
}

.value-card p {
  max-width: 420px;
  font-size: 16px;
}

.portfolio-aside {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-color: rgba(124, 58, 237, 0.44);
}

.portfolio-aside .mockup {
  min-height: 180px;
  height: 180px;
  border-radius: 16px;
  margin-bottom: 24px;
}

.portfolio-aside h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 28px;
  line-height: 1.15;
}

.portfolio-aside p {
  margin: 0 0 24px;
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.65;
}

.portfolio-aside .btn {
  margin-top: auto;
}

.audience-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.audience-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 8px 18px;
}

.audience-card .icon-badge {
  grid-row: span 2;
}

.audience-card h3 {
  margin: 0;
}

.single-realization {
  padding: 88px 0;
}

.single-realization__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 34px;
  align-items: stretch;
}

.single-realization__intro {
  max-width: 980px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--color-blue);
  font-weight: 800;
}

.back-link .icon {
  transform: rotate(180deg);
}

.single-realization__media {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  background: var(--gradient-card);
  box-shadow: var(--shadow-card);
}

.single-realization__intro .tag-list {
  margin-top: 24px;
}

.single-realization__intro .btn {
  margin-top: 28px;
}

.single-realization__image {
  display: block;
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.single-realization__media .mockup {
  min-height: 420px;
  border: 0;
  border-radius: 0;
}

.single-realization__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  margin-top: 42px;
}

.single-realization__content--wide {
  display: block;
}

.entry-content {
  padding: 34px;
}

.default-content h1,
.entry-content h1 {
  margin: 0 0 22px;
  color: #fff;
  font-size: 44px;
  line-height: 1.12;
}

.entry-content h2,
.entry-content h3 {
  color: #fff;
}

.entry-content a:not(.btn) {
  color: var(--color-blue);
  font-weight: 700;
}

.entry-content .btn,
.footer-column .btn,
.footer-column .btn span {
  color: #fff;
}

.footer-column .btn .icon,
.footer-contact .btn .icon {
  color: currentColor;
}

.case-grid {
  display: grid;
  gap: 18px;
}

.case-card {
  padding: 24px;
}

.case-card h2 {
  margin: 14px 0 8px;
  color: #fff;
  font-size: 18px;
}

.case-card p {
  margin: 0;
  color: var(--color-text-muted);
}

.ui-composition--services .ui-window--site {
  left: 0;
  top: 44px;
  width: 76%;
  min-height: 260px;
}

.ui-composition--services .ui-window--dashboard {
  right: 0;
  top: 188px;
  width: 82%;
  min-height: 300px;
}

.ui-composition--services .ui-window .mockup {
  height: 100%;
  min-height: inherit;
  border-radius: inherit;
}

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.service-detail-card {
  padding: 28px;
}

.service-detail-card .tag {
  width: max-content;
  margin-top: 20px;
}

.service-detail-card h3,
.included-card h3,
.contact-form-card h2,
.contact-orb-card h2,
.seo-content-card h2 {
  margin: 18px 0 10px;
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
}

.service-detail-card p,
.included-card p,
.contact-form-card p,
.contact-orb-card p,
.seo-content-card p {
  margin: 0;
  color: var(--color-text-muted);
}

.check-list--compact {
  margin-top: 20px;
  gap: 12px;
}

.check-list--compact li {
  font-size: 14px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 34px;
  align-items: start;
}

.services-process-actions {
  margin-top: 26px;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.included-card {
  min-height: 190px;
  padding: 24px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 0;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: 10px;
  color: var(--color-blue);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-answer {
  height: auto;
  overflow: hidden;
  opacity: 1;
  transition: height 0.32s ease, opacity 0.24s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--color-text-muted);
}

.contact-orb-card {
  max-width: 430px;
  margin: 60px auto 0;
  padding: 32px;
}

.contact-orb-card .tag-list {
  margin-top: 20px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.contact-form-card {
  padding: 34px;
}

.contact-sidebar,
.brief-grid,
.next-steps {
  display: grid;
  gap: 18px;
}

.contact-option {
  padding: 24px;
}

.contact-option span {
  display: block;
  margin-top: 14px;
  color: var(--color-blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-option a,
.contact-option strong {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 17px;
  line-height: 1.35;
}

.brief-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.next-step {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  padding: 22px;
}

.next-step > span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(56, 189, 248, 0.32);
  border-radius: 16px;
  background: rgba(56, 189, 248, 0.08);
  color: var(--color-blue);
  font-weight: 800;
}

.next-step h3 {
  margin: 0 0 6px;
  color: #fff;
}

.next-step p {
  margin: 0;
  color: var(--color-text-muted);
}

.wpcf7 {
  margin-top: 26px;
}

.wpcf7 form {
  display: grid;
  gap: 16px;
}

.wpcf7 p {
  margin: 0;
}

.wpcf7 label {
  display: grid;
  gap: 8px;
  color: var(--color-text-soft);
  font-size: 14px;
  font-weight: 700;
}

.wpcf7-form-control-wrap {
  display: block;
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7 .wpcf7-list-item label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--color-text-muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.wpcf7 input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin: 3px 0 0;
  accent-color: var(--color-primary);
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="number"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  outline: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.wpcf7 select option {
  background: var(--color-bg-soft);
  color: #fff;
}

.wpcf7 textarea {
  min-height: 150px;
  resize: vertical;
}

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
  color: rgba(203, 213, 225, 0.58);
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  border-color: rgba(56, 189, 248, 0.58);
  background: rgba(56, 189, 248, 0.06);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.1);
}

.wpcf7 input[type="submit"],
.wpcf7 .wpcf7-submit {
  min-height: 52px;
  padding: 16px 24px;
  border: 0;
  border-radius: 14px;
  background: var(--gradient-main);
  box-shadow: 0 16px 45px rgba(56, 189, 248, 0.2);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.wpcf7 input[type="submit"]:hover,
.wpcf7 .wpcf7-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(56, 189, 248, 0.25);
}

.wpcf7-spinner {
  margin: 0 0 0 10px;
}

.wpcf7-not-valid-tip {
  margin-top: 7px;
  color: #fca5a5;
  font-size: 13px;
  font-weight: 700;
}

.wpcf7 form .wpcf7-response-output {
  margin: 6px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(56, 189, 248, 0.32);
  border-radius: 14px;
  background: rgba(56, 189, 248, 0.08);
  color: var(--color-text-soft);
  font-weight: 700;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: rgba(250, 204, 21, 0.45);
  background: rgba(250, 204, 21, 0.09);
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: rgba(34, 197, 94, 0.42);
  background: rgba(34, 197, 94, 0.1);
}

.industry-hero-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 24px;
  background: var(--gradient-card);
  box-shadow: var(--shadow-card);
}

.industry-hero-media img,
.industry-hero-media .mockup {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border: 0;
  border-radius: 0;
}

.industry-hero-media__caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 18px;
  background: rgba(5, 8, 22, 0.82);
  backdrop-filter: blur(16px);
}

.industry-hero-media__caption span {
  color: var(--color-blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.industry-hero-media__caption strong {
  display: block;
  margin-top: 6px;
  color: #fff;
  line-height: 1.35;
}

.seo-list,
.seo-content-card {
  padding: 30px;
}

.seo-list__item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.seo-list__item:last-child {
  border-bottom: 0;
}

.seo-list__item .icon {
  color: var(--color-blue);
}

.seo-list__item p {
  margin: 0;
  color: var(--color-text-soft);
}

.industry-link-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.industry-link-chips a {
  padding: 10px 14px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text-soft);
  font-size: 13px;
  font-weight: 800;
}

.industry-link-chips a:hover,
.industry-link-chips a:focus-visible {
  border-color: rgba(56, 189, 248, 0.42);
  color: #fff;
}

.industry-grid--related {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.default-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.default-card__media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.default-card__media img,
.default-content__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.default-card__media--placeholder {
  position: relative;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 28% 22%, rgba(124, 58, 237, 0.34), transparent 32%),
    radial-gradient(circle at 76% 70%, rgba(56, 189, 248, 0.24), transparent 34%),
    linear-gradient(145deg, rgba(15, 23, 48, 0.95), rgba(5, 8, 22, 0.88));
}

.default-card__media--placeholder::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 92%);
  mask-image: linear-gradient(180deg, #000, transparent 92%);
}

.blog-placeholder__icon {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(168, 85, 247, 0.34);
  border-radius: 18px;
  background: rgba(124, 58, 237, 0.17);
  color: var(--color-blue);
  box-shadow: 0 0 38px rgba(56, 189, 248, 0.24);
}

.blog-placeholder__lines {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 34px;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.blog-placeholder__lines i {
  height: 8px;
  border-radius: 999px;
  background: rgba(203, 213, 225, 0.16);
}

.blog-placeholder__lines i:nth-child(2) {
  width: 72%;
}

.blog-placeholder__lines i:nth-child(3) {
  width: 48%;
}

.blog-placeholder__label {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 1;
  padding: 7px 10px;
  border: 1px solid rgba(129, 140, 248, 0.22);
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.16);
  color: #dbeafe;
  font-size: 12px;
  font-weight: 800;
}

.default-card__body .default-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: var(--color-text-muted);
  font-size: 13px;
  font-weight: 700;
}

.default-card__body .default-card__meta span {
  color: var(--color-blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.default-card__body {
  padding: 24px;
}

.default-card__body h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 21px;
  line-height: 1.25;
}

.default-card__body p {
  margin: 0 0 16px;
  color: var(--color-text-muted);
}

.default-content__thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin: 24px 0;
  border-radius: 18px;
}

.pagination-wrap {
  margin-top: 32px;
}

.pagination-wrap .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pagination-wrap a,
.pagination-wrap span {
  min-width: 42px;
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text-soft);
  font-weight: 800;
}

.pagination-wrap .current {
  border-color: rgba(56, 189, 248, 0.4);
  color: #fff;
}

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  background:
    radial-gradient(circle at 15% 0%, rgba(124, 58, 237, 0.1), transparent 32%),
    #050816;
  padding: 64px 0 28px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.9fr 1fr;
  gap: 44px;
}

.site-footer__brand p {
  max-width: 320px;
  margin: 14px 0 20px;
  color: var(--color-text-muted);
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text-soft);
  transition: border-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(56, 189, 248, 0.42);
  color: var(--color-blue);
}

.social-links .icon {
  width: 17px;
  height: 17px;
}

.footer-column h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 16px;
}

.footer-column ul,
.footer-menu {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column a,
.footer-column span {
  color: var(--color-text-muted);
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #fff;
}

.footer-contact li a,
.footer-contact li span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.footer-contact .icon {
  width: 17px;
  height: 17px;
  color: var(--color-blue);
}

.footer-contact .btn,
.footer-contact .btn span,
.footer-contact .btn .icon,
.footer-column .btn,
.footer-column .btn span,
.footer-column .btn .icon {
  color: #fff;
}

.footer-contact .btn {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  color: rgba(203, 213, 225, 0.72);
  font-size: 13px;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom nav {
  display: flex;
  gap: 24px;
}

.site-footer__bottom a:hover {
  color: #fff;
}

:focus-visible {
  outline: 2px solid rgba(56, 189, 248, 0.88);
  outline-offset: 4px;
}

@media (max-width: 1279px) {
  .container {
    padding: 0 24px;
  }

  .hero__title,
  .single-realization h1 {
    font-size: 54px;
  }

  .section-heading h1,
  .section-heading h2,
  .approach-card h2,
  .cta-banner h2,
  .tech-layout h2 {
    font-size: 38px;
  }

  .hero__grid,
  .hero--about .hero__grid {
    gap: 42px;
  }

  .direction-grid,
  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tech-grid {
    grid-template-columns: repeat(3, minmax(138px, 1fr));
  }
}

@media (max-width: 1023px) {
  :root {
    --header-height: 68px;
  }

  .site-header__inner {
    min-height: var(--header-height);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--header-height);
    max-height: calc(100vh - var(--header-height));
    display: grid;
    align-content: start;
    gap: 18px;
    padding: 20px 24px 28px;
    overflow: auto;
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
    background: rgba(5, 8, 22, 0.96);
    backdrop-filter: blur(20px);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.28s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-list {
    display: grid;
    width: min(100%, 720px);
    margin: 0 auto;
  }

  .nav-list a,
  .nav-industry summary {
    width: 100%;
    min-height: 54px;
    padding: 16px 0;
    font-size: 18px;
  }

  .nav-list a::after,
  .nav-industry summary::after {
    left: 0;
    right: 0;
  }

  .nav-industry__panel {
    position: static;
    width: 100%;
    grid-template-columns: 1fr;
    margin: 8px 0 16px;
    transform: none;
  }

  .header-cta {
    width: min(100%, 720px);
    margin: 0 auto;
  }

  .hero,
  .hero--home {
    min-height: 0;
    padding: 62px 0 56px;
  }

  .hero__grid,
  .hero--about .hero__grid,
  .single-realization__hero,
  .single-realization__content,
  .tech-layout,
  .why-grid,
  .approach-card,
  .value-layout,
  .contact-layout,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero__visual,
  .ui-composition {
    min-height: 500px;
  }

  .proof-grid,
  .service-grid,
  .industry-grid,
  .stats-grid,
  .advantage-grid,
  .approach-grid,
  .audience-grid,
  .project-grid,
  .services-detail-grid,
  .brief-grid,
  .industry-grid--related,
  .default-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #branze .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .process-timeline::before {
    left: 19px;
    right: auto;
    top: 20px;
    bottom: 20px;
    width: 2px;
    height: auto;
  }

  .process-step {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 16px;
  }

  .process-step__card {
    margin-top: 0;
  }

  .approach-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-banner {
    grid-template-columns: 120px 1fr;
    padding: 34px;
  }

  .cta-banner__orbits {
    display: none;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0 18px;
  }

  .section,
  .section--compact {
    padding: 56px 0;
  }

  .wordmark {
    font-size: 22px;
  }

  .hero__title,
  .single-realization h1 {
    font-size: 26px;
    line-height: 1.08;
  }

  .hero__lead {
    font-size: 16px;
  }

  .hero__actions,
  .cta-banner__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  .mini-benefits {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__visual,
  .ui-composition {
    min-height: 390px;
  }

  .ui-window--site {
    width: 78%;
    top: 32px;
  }

  .ui-window--dashboard {
    width: 82%;
    top: 150px;
  }

  .ui-phone {
    left: 10px;
    bottom: 14px;
    width: 126px;
    height: 170px;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-nav,
  .donut {
    display: none;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .proof-grid,
  .service-grid,
  .industry-grid,
  .direction-grid,
  .stats-grid,
  .advantage-grid,
  .approach-grid,
  .audience-grid,
  .project-grid,
  .value-grid,
  .tech-grid,
  .argument-list,
  .why-result-card__grid,
  .approach-steps,
  .services-detail-grid,
  .included-grid,
  .brief-grid,
  .industry-grid--related,
  .default-grid {
    grid-template-columns: 1fr;
  }

  .why-metrics {
    align-items: stretch;
  }

  .why-result-card {
    min-height: 0;
    padding: 26px;
  }

  .why-result-card h3 {
    font-size: 24px;
  }

  #branze .industry-grid {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .section-heading--row,
  .section-heading--portfolio {
    display: grid;
    align-items: start;
  }

  .section-heading h1,
  .section-heading h2,
  .approach-card h2,
  .cta-banner h2,
  .tech-layout h2 {
    font-size: 32px;
  }

  .filter-pills {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    margin: 0 -18px;
    padding: 0 18px 6px;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .filter-pill {
    flex: 0 0 auto;
  }

  .project-card__footer {
    display: grid;
  }

  .about-card {
    min-height: 0;
    padding: 18px;
  }

  .about-card__portrait {
    height: 260px;
  }

  .tech-tile {
    min-height: 112px;
  }

  .audience-card {
    grid-template-columns: 1fr;
  }

  .audience-card .icon-badge {
    grid-row: auto;
  }

  .ui-composition--portfolio .ui-window--top,
  .ui-window--estate,
  .ui-window--product {
    width: 84%;
  }

  .ui-composition--portfolio .ui-window--top {
    right: 0;
  }

  .ui-window--estate {
    left: 0;
    bottom: 80px;
  }

  .ui-window--product {
    right: 0;
    bottom: 10px;
    min-height: 160px;
    padding: 18px;
  }

  .ui-window--product strong {
    margin-top: 52px;
    font-size: 17px;
  }

  .product-orbit {
    width: 70px;
    height: 70px;
  }

  .product-thumbs {
    grid-template-columns: repeat(4, 1fr);
    left: 18px;
    right: 18px;
    bottom: 14px;
  }

  .cta-banner {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .cta-banner__rocket {
    width: 94px;
    height: 94px;
  }

  .cta-banner__rocket .icon {
    width: 92px;
    height: 92px;
  }

  .single-realization__image,
  .single-realization__media .mockup {
    min-height: 260px;
  }

  .entry-content {
    padding: 24px;
  }

  .site-footer__grid,
  .site-footer__bottom {
    grid-template-columns: 1fr;
    display: grid;
  }

  .site-footer__bottom nav {
    flex-wrap: wrap;
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
