:root {
  --bg: #060910;
  --bg2: #0e141d;
  --card: rgba(255, 255, 255, 0.07);
  --card-strong: rgba(255, 255, 255, 0.1);
  --stroke: rgba(255, 255, 255, 0.14);
  --stroke-strong: rgba(255, 255, 255, 0.22);
  --text: #eef5ff;
  --muted: rgba(238, 245, 255, 0.72);
  --muted2: rgba(238, 245, 255, 0.55);
  --accent: #5fb7ff;
  --accent2: #2f86ff;
  --green: #23c768;
  --amber: #f2c94c;
  --radius: 20px;
  --radius2: 28px;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.56);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background: #030508;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;
}

body.noScroll {
  overflow: hidden;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

svg {
  display: block;
}

.bgMedia {
  position: fixed;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(180deg, rgba(3, 5, 8, 0.1), rgba(3, 5, 8, 0.75)),
    url("https://images.unsplash.com/photo-1542362567-b07e54358753?auto=format&fit=crop&w=2200&q=82")
      center / cover no-repeat;
  filter: saturate(0.9) contrast(1.08);
}

.bgTexture {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(130deg, rgba(25, 78, 110, 0.34), transparent 45%),
    linear-gradient(320deg, rgba(35, 199, 104, 0.16), transparent 40%),
    rgba(3, 5, 8, 0.62);
  backdrop-filter: blur(2px);
}

.wrap {
  width: min(1060px, 92vw);
  margin: 0 auto;
  padding: 14px 0 110px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 2px 16px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
  text-decoration: none;
}

.logoMark {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border: 1px solid var(--stroke);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(95, 183, 255, 0.34), rgba(47, 134, 255, 0.1)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.38);
}

.logoMark svg {
  width: 24px;
  height: 24px;
  fill: rgba(238, 245, 255, 0.96);
}

.brandText {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
}

.brandTitle {
  overflow: hidden;
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: 0.6px;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.brandSub {
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.nav a,
.feedContact {
  min-height: 38px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(238, 245, 255, 0.88);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.4px;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 0.16s ease,
    border-color 0.16s ease,
    transform 0.16s ease;
}

.nav a:hover,
.feedContact:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.nav a:active,
.feedContact:active {
  transform: translateY(2px);
}

.hero {
  position: relative;
  min-height: 740px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(5, 10, 18, 0.66);
  box-shadow: var(--shadow);
}

.heroMedia {
  position: absolute;
  inset: 0;
  background:
    url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1900&q=82")
      center 36% / cover no-repeat;
  filter: saturate(1.02) contrast(1.04);
  transform: scale(1.02);
}

.heroShade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 9, 16, 0.92), rgba(5, 9, 16, 0.4) 56%, rgba(5, 9, 16, 0.58)),
    linear-gradient(180deg, rgba(5, 9, 16, 0.05), rgba(5, 9, 16, 0.93));
}

.heroInner {
  position: relative;
  display: grid;
  min-height: 740px;
  padding: 26px 22px 20px;
  grid-template-columns: minmax(0, 1.05fr) minmax(240px, 0.62fr);
  grid-template-rows: 1fr auto;
  gap: 22px;
}

.heroCopy {
  align-self: center;
  max-width: 630px;
}

.heroKicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(35, 199, 104, 0.34);
  border-radius: 999px;
  background: rgba(35, 199, 104, 0.11);
  color: rgba(238, 245, 255, 0.9);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.dotPulse {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 rgba(35, 199, 104, 0.55);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(35, 199, 104, 0.52);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(35, 199, 104, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(35, 199, 104, 0);
  }
}

.heroTitle {
  max-width: 650px;
  margin: 0;
  color: #f5f9ff;
  font-size: 68px;
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 18px 45px rgba(0, 0, 0, 0.48);
}

.heroName {
  margin-top: 14px;
  color: rgba(238, 245, 255, 0.85);
  font-size: 22px;
  font-weight: 850;
}

.heroDesc {
  max-width: 560px;
  margin: 16px 0 0;
  color: rgba(238, 245, 255, 0.75);
  font-size: 17px;
  line-height: 1.55;
}

.heroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 9px;
  padding: 13px 17px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 14px;
  font-weight: 950;
  text-decoration: none;
  transition:
    transform 0.16s ease,
    border-color 0.16s ease,
    background 0.16s ease;
}

.btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.btn.primary {
  border-color: rgba(95, 183, 255, 0.4);
  background: linear-gradient(180deg, rgba(95, 183, 255, 0.98), rgba(47, 134, 255, 0.86));
  box-shadow: 0 18px 36px rgba(47, 134, 255, 0.25);
}

.btn:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background-color: rgba(255, 255, 255, 0.12);
}

.btn:active {
  transform: translateY(2px);
}

.badgeRow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  gap: 9px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(238, 245, 255, 0.9);
  font-size: 13px;
  font-weight: 900;
}

.check,
.badgeCheck {
  display: inline-grid;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  place-items: center;
  border-radius: 999px;
  background: rgba(35, 199, 104, 0.16);
}

.check svg,
.badgeCheck svg {
  width: 15px;
  height: 15px;
  fill: var(--green);
}

.heroStats {
  align-self: end;
  display: grid;
  gap: 10px;
  justify-self: end;
  width: min(275px, 100%);
}

.statItem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(5, 10, 18, 0.54);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.statItem span {
  font-size: 26px;
  font-weight: 1000;
}

.statItem small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.35px;
  text-transform: uppercase;
}

.heroFooter {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 10px;
  grid-column: 1 / -1;
}

.heroSocial {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 14px;
  font-weight: 950;
  text-decoration: none;
  backdrop-filter: blur(10px);
}

.heroSocial svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.heroSocial small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.heroSocial.tg {
  background: rgba(38, 166, 229, 0.2);
}

.heroSocial.wa {
  background: rgba(35, 199, 104, 0.16);
}

.section {
  margin-top: 20px;
}

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

.card,
.workCard {
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04)),
    rgba(5, 10, 18, 0.55);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
}

.cardInner {
  padding: 24px;
}

.h {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: 0;
}

.p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

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

.miniList {
  display: grid;
  gap: 12px;
}

.miniItem {
  display: flex;
  align-items: center;
  min-height: 70px;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.miniIcon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(95, 183, 255, 0.96), rgba(47, 134, 255, 0.84));
  color: #fff;
  font-size: 15px;
  font-weight: 1000;
}

.miniText {
  min-width: 0;
}

.miniTitle {
  color: #fff;
  font-size: 15px;
  font-weight: 950;
}

.miniSub {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.3;
}

.feedHead {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 2px 16px;
}

.feedTitle {
  font-size: 30px;
  font-weight: 1000;
  line-height: 1;
}

.feedNote {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.45px;
  text-transform: uppercase;
}

.workList {
  display: grid;
  gap: 18px;
}

.workCard {
  overflow: hidden;
}

.workTop {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 18px 14px;
}

.workName {
  font-size: 18px;
  font-weight: 1000;
}

.workSub {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  gap: 6px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(238, 245, 255, 0.82);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.35px;
  text-transform: uppercase;
}

.badge.blue {
  border-color: rgba(95, 183, 255, 0.26);
  background: rgba(95, 183, 255, 0.13);
}

.badge.ok,
.badge.client {
  border-color: rgba(35, 199, 104, 0.25);
  background: rgba(35, 199, 104, 0.12);
}

.badgeCheck {
  width: 18px;
  height: 18px;
  flex-basis: 18px;
}

.badgeCheck svg {
  width: 12px;
  height: 12px;
}

.workMedia {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: 14px;
  padding: 0 18px 16px;
}

.workMedia.one {
  grid-template-columns: 1fr;
}

.slider,
.videoBox {
  overflow: hidden;
  min-height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.22);
}

.sliderViewport {
  position: relative;
  height: 330px;
  cursor: zoom-in;
  background: rgba(0, 0, 0, 0.28);
}

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

.sliderViewport.vertical img {
  object-fit: contain;
  background: rgba(0, 0, 0, 0.52);
}

.sliderControls {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  pointer-events: none;
}

.sBtn {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  pointer-events: auto;
  transition:
    background 0.16s ease,
    transform 0.16s ease;
}

.sBtn:hover {
  background: rgba(0, 0, 0, 0.62);
}

.sBtn:active {
  transform: scale(0.96);
}

.dots,
.lbDots {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  gap: 7px;
  padding: 9px;
}

.dot,
.lbDot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.dot.active,
.lbDot.active {
  width: 18px;
  background: var(--accent);
}

.videoBox {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 330px;
  padding: 0;
  border-color: rgba(95, 183, 255, 0.2);
  color: #fff;
  cursor: pointer;
}

.videoBox img,
.videoBox video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.4);
}

.videoBox video {
  display: none;
}

.videoBox.isPlaying img,
.videoBox.isPlaying .videoOverlay {
  display: none;
}

.videoBox.isPlaying video {
  display: block;
}

.videoOverlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.44)),
    rgba(0, 0, 0, 0.1);
}

.play {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(10px);
}

.play svg {
  width: 28px;
  height: 28px;
  margin-left: 3px;
  fill: currentColor;
}

.workBottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 18px 18px;
}

.workText {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.actionRow {
  display: flex;
  flex: 0 0 auto;
  gap: 9px;
}

.actionBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
}

.actionBtn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.actionBtn.tg {
  background: rgba(38, 166, 229, 0.18);
}

.actionBtn.wa {
  background: rgba(35, 199, 104, 0.14);
}

.contacts {
  margin-bottom: 4px;
}

.contactRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 14px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.contactRow + .contactRow {
  margin-top: 10px;
}

.contactLeft {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
}

.cIcon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 14px;
  background: rgba(38, 166, 229, 0.18);
}

.cIcon.wa {
  background: rgba(35, 199, 104, 0.16);
}

.cIcon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.contactLabel {
  font-size: 15px;
  font-weight: 950;
}

.contactLink {
  overflow-wrap: anywhere;
  color: rgba(238, 245, 255, 0.86);
  font-size: 14px;
  font-weight: 850;
  text-align: right;
}

.footerNote {
  margin-top: 14px;
  color: var(--muted2);
  font-size: 12px;
  line-height: 1.55;
}

.infoBar {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  max-width: min(620px, calc(100vw - 36px));
  gap: 14px;
  padding: 13px 14px 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  background: rgba(7, 12, 20, 0.9);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(18px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
}

.infoBar.hide {
  visibility: hidden;
  opacity: 0;
  transform: translateY(18px);
}

.infoClose {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
}

.infoClose svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.infoBarText {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.infoBarText strong {
  overflow: hidden;
  font-size: 14px;
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.infoBarText span {
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.infoBarActions {
  display: flex;
  gap: 8px;
}

.infoBtn {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
}

.infoBtn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.infoBtn.tg {
  background: #229ed9;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  padding: 18px;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(10px);
}

.lightbox.show {
  display: grid;
  place-items: center;
}

.lbPanel {
  width: min(1080px, 100%);
  max-height: calc(100vh - 36px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(7, 12, 20, 0.95);
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.65);
}

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

.lbBadge {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(238, 245, 255, 0.8);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.lbClose {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  cursor: pointer;
}

.lbClose svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.lbStage {
  position: relative;
  display: grid;
  min-height: 300px;
  place-items: center;
  background: rgba(0, 0, 0, 0.36);
}

.lbImg {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 160px);
  object-fit: contain;
}

.lbNav {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  pointer-events: none;
}

.lbBtn {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.48);
  color: #fff;
  cursor: pointer;
  pointer-events: auto;
}

.lbBtn svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

@media (max-width: 860px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
    width: 100%;
  }

  .hero,
  .heroInner {
    min-height: 700px;
  }

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

  .heroStats {
    align-self: auto;
    justify-self: stretch;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .statItem {
    align-items: start;
    flex-direction: column;
    gap: 5px;
  }

  .heroTitle {
    font-size: 48px;
  }

  .grid2,
  .workMedia {
    grid-template-columns: 1fr;
  }

  .workBottom {
    align-items: stretch;
    flex-direction: column;
  }

  .actionRow {
    flex-wrap: wrap;
  }
}

@media (max-width: 620px) {
  .wrap {
    width: min(100% - 24px, 1060px);
    padding-bottom: 145px;
  }

  .nav a {
    flex: 1 1 auto;
    text-align: center;
  }

  .hero {
    border-radius: 22px;
  }

  .hero,
  .heroInner {
    min-height: 680px;
  }

  .heroInner {
    padding: 18px 14px 16px;
  }

  .heroTitle {
    font-size: 40px;
    line-height: 1;
  }

  .heroName {
    font-size: 19px;
  }

  .heroDesc {
    font-size: 15px;
  }

  .heroActions,
  .badgeRow,
  .heroFooter {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .heroSocial,
  .pill {
    width: 100%;
  }

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

  .statItem {
    flex-direction: row;
  }

  .cardInner {
    padding: 18px;
  }

  .h {
    font-size: 24px;
  }

  .feedHead {
    align-items: flex-start;
    flex-direction: column;
  }

  .feedContact {
    width: 100%;
    text-align: center;
  }

  .workTop {
    padding: 16px 14px 12px;
  }

  .workMedia {
    padding: 0 14px 14px;
  }

  .slider,
  .videoBox,
  .sliderViewport,
  .videoBox img,
  .videoBox video {
    min-height: 300px;
  }

  .sliderViewport {
    height: 300px;
  }

  .workBottom {
    padding: 0 14px 14px;
  }

  .actionBtn {
    width: 100%;
  }

  .contactRow {
    align-items: flex-start;
    flex-direction: column;
  }

  .contactLink {
    text-align: left;
  }

  .infoBar {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .infoClose {
    position: absolute;
    top: 10px;
    right: 10px;
  }

  .infoBarText {
    padding-right: 42px;
  }

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

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