/* src/styles.css */
:root {
  color-scheme: dark;
  --emerald: #0f6f5c;
  --emerald-dark: #073f36;
  --mint: #6ed3b1;
  --mint-soft: #dff7ee;
  --bg: #f8faf9;
  --graphite: #18211f;
  --muted: #68736f;
  --line: rgba(15, 111, 92, 0.14);
  --white: #ffffff;
  --wood: #b99562;
  --shadow: 0 24px 70px rgba(8, 35, 30, 0.12);
  --shadow-soft: 0 16px 40px rgba(8, 35, 30, 0.08);
  --radius: 8px;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--graphite);
  background:
    linear-gradient(
      180deg,
      rgba(248, 250, 249, 0.86),
      rgba(248, 250, 249, 1) 42%),
    var(--bg);
}
body.menu-open {
  overflow: hidden;
}
body.modal-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
img,
video {
  display: block;
  max-width: 100%;
}
.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.siteHeader {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(248, 250, 249, 0.78);
  backdrop-filter: blur(22px);
}
.headerInner {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  text-transform: uppercase;
  letter-spacing: 0;
  transition: opacity 180ms ease, transform 180ms ease;
}
.logo:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}
.logoImageWrap {
  position: relative;
  display: inline-flex;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 50% 48%,
      rgba(110, 211, 177, 0.16),
      transparent 52%),
    #050807;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 12px 32px rgba(0, 0, 0, 0.28);
}
.logoImage {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: scale(1.72);
  filter: contrast(1.08) saturate(1.08);
}
.logo strong,
.logo small {
  display: block;
  line-height: 0.95;
}
.logo strong {
  font-size: 15px;
  font-weight: 800;
}
.logo small {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--emerald);
}
.desktopNav {
  display: flex;
  justify-content: center;
  gap: 30px;
  color: rgba(24, 33, 31, 0.72);
  font-size: 14px;
  font-weight: 650;
}
.desktopNav a,
.footerNav a {
  transition: color 180ms ease, transform 180ms ease;
}
.desktopNav .navLinkWithChevron {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.desktopNav .navLinkWithChevron svg {
  opacity: 0.75;
  transition: transform 180ms ease, opacity 180ms ease;
}
.desktopNav .navLinkWithChevron:hover svg {
  opacity: 1;
  transform: translateY(1px);
}
.desktopNav a:hover,
.footerNav a:hover {
  color: var(--emerald);
}
.stickyCatalogDock {
  position: relative;
  max-height: 0;
  overflow: hidden;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  background: rgba(5, 26, 22, 0);
  box-shadow: 0 18px 60px rgba(15, 111, 92, 0);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    max-height 260ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    opacity 220ms ease,
    transform 220ms ease;
}
.stickyCatalogDock.is-visible {
  max-height: 68px;
  border-top-color: rgba(110, 211, 177, 0.14);
  border-bottom-color: rgba(110, 211, 177, 0.18);
  background: rgba(5, 26, 22, 0.72);
  box-shadow: 0 18px 60px rgba(15, 111, 92, 0.16);
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.stickyCatalogDock::before {
  content: "";
  position: absolute;
  right: 8%;
  bottom: -12px;
  left: 8%;
  height: 34px;
  border-radius: 999px;
  background:
    radial-gradient(
      ellipse at center,
      rgba(110, 211, 177, 0.28),
      rgba(110, 211, 177, 0.06) 48%,
      transparent 74%);
  filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}
.stickyCatalogDock.is-visible::before {
  opacity: 0.52;
}
.stickyCatalogDockInner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 30px);
  min-height: 66px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
}
.stickyCatalogDockInner::-webkit-scrollbar {
  display: none;
}
.stickyCatalogDockItem {
  display: grid;
  min-width: 70px;
  justify-items: center;
  gap: 3px;
  color: rgba(248, 250, 249, 0.68);
  font-size: 10px;
  font-weight: 780;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  transition: color 180ms ease, transform 180ms ease;
}
.stickyCatalogDockIcon {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(110, 211, 177, 0.07);
  transition: filter 180ms ease, transform 180ms ease;
}
.stickyCatalogDockIcon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(8, 35, 30, 0.2));
}
@media (hover: hover) and (pointer: fine) {
  .stickyCatalogDockItem:hover {
    color: var(--mint);
    transform: translateY(-2px);
  }
  .stickyCatalogDockItem:hover .stickyCatalogDockIcon {
    filter: drop-shadow(0 0 12px rgba(110, 211, 177, 0.5));
  }
}
.headerActions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}
.phoneLink {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 750;
  color: var(--emerald-dark);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(
      135deg,
      var(--emerald),
      #0a5f50);
  box-shadow: 0 18px 36px rgba(15, 111, 92, 0.24);
  font-weight: 780;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(15, 111, 92, 0.3);
}
.buttonSmall {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 14px;
}
.buttonGhost {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(14px);
}
.buttonGhost:hover {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.58);
}
.buttonDark {
  background: var(--graphite);
  box-shadow: 0 18px 36px rgba(24, 33, 31, 0.18);
}
.menuButton {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 111, 92, 0.16);
  border-radius: var(--radius);
  color: var(--emerald-dark);
  background: #fff;
}
.mobilePanel {
  display: none;
}
.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  color: #fff;
  background: #0a1714;
}
.heroVideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.heroOverlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 74% 18%,
      rgba(110, 211, 177, 0.18),
      transparent 30%),
    linear-gradient(
      90deg,
      rgba(5, 19, 17, 0.84),
      rgba(5, 24, 20, 0.58) 42%,
      rgba(5, 19, 17, 0.2)),
    linear-gradient(
      180deg,
      rgba(5, 19, 17, 0.4),
      rgba(5, 19, 17, 0.88));
}
.heroInner {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(230px, 340px);
  align-items: center;
  gap: 48px;
  padding: 96px 0 44px;
}
.heroContent {
  max-width: 800px;
}
.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow {
  padding: 10px 14px;
  color: #dff7ee;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}
.kicker {
  color: var(--emerald);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2 {
  letter-spacing: 0;
}
h1 {
  max-width: 880px;
  margin: 18px 0 14px;
  font-size: clamp(42px, 5.6vw, 68px);
  line-height: 0.98;
  font-weight: 850;
}
.heroContent > p {
  max-width: 720px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.55;
}
.heroBenefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.heroBenefits span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
  font-size: 14px;
  font-weight: 700;
}
.heroBenefits svg {
  color: var(--mint);
  flex: 0 0 auto;
}
.heroCtas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.heroCard {
  align-self: end;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18), 0 26px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(20px);
}
.heroCardIcon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--mint);
  background: rgba(110, 211, 177, 0.15);
}
.heroCard strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}
.heroCard p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}
.sectionCompact {
  padding: 34px 0 0;
}
.trustGrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}
.trustItem {
  position: relative;
  min-height: 118px;
  padding: 24px;
  border: 1px solid transparent;
  border-radius: 7px;
  background:
    linear-gradient(
      180deg,
      #fff,
      #f4f8f6);
  overflow: hidden;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}
.trustItem::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 18% 0%,
      rgba(110, 211, 177, 0.18),
      transparent 36%),
    linear-gradient(
      135deg,
      rgba(15, 111, 92, 0.12),
      transparent 58%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}
.trustItem:hover {
  transform: translateY(-4px);
  border-color: rgba(110, 211, 177, 0.42);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18), 0 0 34px rgba(15, 111, 92, 0.14);
}
.trustItem:hover::before {
  opacity: 1;
}
.trustItem strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 8px;
  color: transparent;
  background:
    linear-gradient(
      90deg,
      var(--mint),
      var(--emerald),
      #e9fff8,
      var(--mint));
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1;
  text-shadow: 0 0 20px rgba(110, 211, 177, 0.18);
  animation: premiumNumberGlow 5.6s ease-in-out infinite, premiumNumberShimmer 7s ease-in-out infinite;
}
@keyframes premiumNumberGlow {
  0%, 100% {
    text-shadow: 0 0 18px rgba(110, 211, 177, 0.14);
  }
  50% {
    text-shadow: 0 0 30px rgba(110, 211, 177, 0.32);
  }
}
@keyframes premiumNumberShimmer {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.trustItem span {
  position: relative;
  z-index: 1;
  color: var(--muted);
  line-height: 1.4;
}
.section {
  padding: 112px 0;
}
.sectionHead {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 42px;
}
.sectionHead .kicker {
  grid-column: 1 / -1;
  margin-bottom: -20px;
}
h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1;
  font-weight: 820;
}
.sectionHead p,
.benefitsIntro p,
.requestText p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.categoryGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.categoryCard {
  min-height: 286px;
}
.categoryCard:nth-child(1),
.categoryCard:nth-child(4) {
  grid-column: span 2;
}
.categoryCard a {
  position: relative;
  display: block;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  background: #0e1715;
  isolation: isolate;
}
.categoryCard img,
.projectCard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease, filter 700ms ease;
}
.categoryCard:hover img,
.projectCard:hover img {
  transform: scale(1.045);
  filter: saturate(1.05);
}
.categoryShade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(8, 22, 19, 0.06),
      rgba(8, 22, 19, 0.84)),
    linear-gradient(
      90deg,
      rgba(8, 22, 19, 0.36),
      transparent 68%);
}
.categoryContent {
  position: absolute;
  left: 24px;
  right: 72px;
  bottom: 24px;
  z-index: 2;
  color: #fff;
}
.categoryContent strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.08;
}
.categoryContent small {
  display: block;
  max-width: 440px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.5;
}
.arrowBubble {
  position: absolute;
  right: 22px;
  bottom: 24px;
  z-index: 2;
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--graphite);
  background: #fff;
  transition: transform 180ms ease, background 180ms ease;
}
.categoryCard:hover .arrowBubble {
  transform: translateX(4px);
  background: var(--mint);
}
.turnkey {
  background:
    linear-gradient(
      180deg,
      rgba(15, 111, 92, 0.05),
      rgba(15, 111, 92, 0)),
    #fff;
}
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.processFacts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -16px 0 30px;
}
.processFacts span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid rgba(15, 111, 92, 0.18);
  border-radius: 999px;
  color: var(--emerald);
  background: rgba(110, 211, 177, 0.12);
  font-size: 13px;
  font-weight: 780;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 4%;
  right: 4%;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(15, 111, 92, 0.28),
      transparent);
}
.stepCard {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 270px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}
.stepCard::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      circle at 22% 0%,
      rgba(110, 211, 177, 0.18),
      transparent 38%),
    linear-gradient(
      145deg,
      rgba(15, 111, 92, 0.12),
      transparent 58%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}
.stepCard > * {
  position: relative;
  z-index: 1;
}
.stepCard:hover {
  transform: translateY(-5px);
  border-color: rgba(110, 211, 177, 0.46);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}
.stepCard:hover::before,
.stepCard.is-accent::before {
  opacity: 1;
}
.stepCard.is-accent {
  border-color: rgba(110, 211, 177, 0.46);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(15, 111, 92, 0.18),
    0 0 44px rgba(15, 111, 92, 0.18);
}
.stepBadge {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  padding: 7px 9px;
  border-radius: 999px;
  color: #06110f;
  background: var(--mint);
  font-size: 10px;
  font-weight: 860;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.stepNumber {
  display: block;
  margin-bottom: 18px;
  color: rgba(15, 111, 92, 0.42);
  font-size: 13px;
  font-weight: 850;
}
.stepIcon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border-radius: 50%;
  color: var(--emerald);
  background: var(--mint-soft);
  box-shadow: 0 0 0 8px #fff;
}
.stepCard h3,
.benefitCard h3,
.projectCard h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.16;
}
.stepCard p,
.benefitCard p,
.projectCard p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}
.projects {
  background: var(--bg);
}
.projectGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.projectCard {
  overflow: hidden;
  border: 1px solid rgba(15, 111, 92, 0.1);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.projectCard > img {
  height: 270px;
}
.projectBody {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 26px;
}
.projectMeta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--emerald);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.projectBody a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  color: var(--emerald);
  font-weight: 780;
}
.caseShowcase {
  background:
    linear-gradient(
      180deg,
      rgba(6, 47, 41, 0.04),
      rgba(248, 250, 249, 0)),
    var(--bg);
}
.caseGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.caseCard {
  min-height: 430px;
}
.caseCard.is-featured {
  grid-column: span 2;
}
.caseCard a {
  position: relative;
  display: block;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
  border-radius: var(--radius);
  background: #081613;
  box-shadow: 0 24px 70px rgba(8, 35, 30, 0.13);
  isolation: isolate;
}
.caseCard img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.01);
  filter: saturate(0.98) contrast(1.02);
  transition: transform 900ms ease, filter 900ms ease;
}
.caseCard a:hover img {
  transform: scale(1.075);
  filter: saturate(1.08) contrast(1.05);
}
.caseOverlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(5, 19, 17, 0.08),
      rgba(5, 19, 17, 0.88)),
    linear-gradient(
      90deg,
      rgba(5, 19, 17, 0.62),
      rgba(5, 19, 17, 0.08));
  transition: background 350ms ease;
}
.caseCard a:hover .caseOverlay {
  background:
    linear-gradient(
      180deg,
      rgba(5, 19, 17, 0.02),
      rgba(5, 19, 17, 0.8)),
    linear-gradient(
      90deg,
      rgba(5, 19, 17, 0.48),
      rgba(5, 19, 17, 0.06));
}
.caseTopline,
.caseContent,
.caseAction {
  position: absolute;
  z-index: 2;
}
.caseTopline {
  top: 22px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: calc(100% - 44px);
  padding: 10px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.caseContent {
  left: 26px;
  right: 26px;
  bottom: 74px;
  color: #fff;
}
.caseContent strong {
  display: block;
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(20px, 2vw, 31px);
  line-height: 1.05;
  font-weight: 830;
}
.caseContent small {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 780;
}
.caseContent small span {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}
.caseAction {
  left: 26px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--mint);
  font-weight: 800;
  transition: transform 180ms ease;
}
.caseCard a:hover .caseAction {
  transform: translateX(4px);
}
.caseShowcaseFooter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
}
.textLink,
.backLink {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  color: var(--emerald);
  font-weight: 820;
}
.innerHero {
  padding: 116px 0 76px;
  background:
    linear-gradient(
      135deg,
      rgba(110, 211, 177, 0.14),
      transparent 34%),
    linear-gradient(
      180deg,
      #fff,
      var(--bg));
}
.innerHeroGrid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 50px;
  align-items: end;
}
.innerHeroText h1,
.projectHero h1 {
  margin: 18px 0 22px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
  font-weight: 850;
}
.innerHeroText p,
.projectHero p,
.projectCta p {
  max-width: 740px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.innerHeroStats {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}
.innerHeroStats strong {
  display: block;
  margin-bottom: 10px;
  color: var(--emerald);
  font-size: 64px;
  line-height: 1;
}
.innerHeroStats span {
  color: var(--muted);
  line-height: 1.5;
}
.allCasesGrid .caseCard.is-featured {
  grid-column: auto;
}
.projectHero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: #fff;
  background: #071d19;
}
.projectIndexPage .innerHero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(
      circle at 16% 12%,
      rgba(110, 211, 177, 0.15),
      transparent 34%),
    radial-gradient(
      circle at 82% 0%,
      rgba(15, 111, 92, 0.24),
      transparent 34%),
    linear-gradient(
      180deg,
      #07110f,
      #0a1210 58%,
      #071d19);
}
.projectIndexPage .innerHero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px);
  background-size: 72px 72px;
  mask-image:
    linear-gradient(
      180deg,
      transparent,
      #000 18%,
      #000 82%,
      transparent);
}
.projectIndexPage .innerHeroGrid {
  position: relative;
  z-index: 1;
}
.projectIndexPage .accentTitle {
  color: #fff;
  text-shadow: 0 0 28px rgba(110, 211, 177, 0.14), 0 16px 60px rgba(0, 0, 0, 0.32);
}
.projectIndexPage .innerHeroText p {
  color: rgba(255, 255, 255, 0.72);
}
.projectIndexPage .innerHeroStats {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 28px 90px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
}
.projectIndexPage .innerHeroStats span {
  color: rgba(255, 255, 255, 0.64);
}
.projectHero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.projectHeroOverlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 82% 12%,
      rgba(110, 211, 177, 0.18),
      transparent 30%),
    linear-gradient(
      90deg,
      rgba(5, 19, 17, 0.86),
      rgba(5, 19, 17, 0.46) 54%,
      rgba(5, 19, 17, 0.18)),
    linear-gradient(
      180deg,
      rgba(5, 19, 17, 0.26),
      rgba(5, 19, 17, 0.88));
}
.projectHeroContent {
  position: relative;
  z-index: 1;
  min-height: 680px;
  display: flex;
  align-items: end;
  padding-top: 110px;
  padding-bottom: 70px;
}
.projectHero .backLink {
  margin-bottom: 28px;
  color: var(--mint);
}
.projectHero .eyebrow {
  margin-bottom: 4px;
}
.projectHero p {
  color: rgba(255, 255, 255, 0.78);
}
.projectFacts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.projectFacts span {
  min-width: 160px;
  padding: 18px 20px;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}
.projectFacts strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  text-transform: none;
}
.projectGallerySection {
  background: var(--bg);
}
.masonryGallery {
  column-count: 3;
  column-gap: 18px;
}
.galleryItemWrap {
  display: inline-block;
  width: 100%;
  margin: 0 0 18px;
  break-inside: avoid;
}
.galleryItem {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: #071d19;
  box-shadow: var(--shadow-soft);
  cursor: zoom-in;
  padding: 0;
}
.galleryItem img {
  width: 100%;
  height: auto;
  transform: scale(1.01);
  transition: transform 700ms ease, filter 700ms ease;
}
.galleryItem:hover img {
  transform: scale(1.045);
  filter: brightness(0.86);
}
.galleryItem span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--graphite);
  background: rgba(255, 255, 255, 0.88);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}
.galleryItem:hover span {
  opacity: 1;
  transform: translateY(0);
}
body.lightbox-open {
  overflow: hidden;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 64px 80px;
  background: rgba(3, 13, 11, 0.92);
  backdrop-filter: blur(12px);
}
.lightbox img {
  width: auto;
  height: auto;
  max-width: 90vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
}
.lightboxClose,
.lightboxArrow {
  position: fixed;
  z-index: 61;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}
.lightboxClose {
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
}
.lightboxArrow {
  top: 50%;
  width: 54px;
  height: 54px;
  transform: translateY(-50%);
}
.lightboxArrow:hover,
.lightboxClose:hover {
  background: rgba(110, 211, 177, 0.32);
}
.lightboxPrev {
  left: 24px;
}
.lightboxNext {
  right: 24px;
}
.projectNavLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.projectNavLinks .backLink {
  margin-bottom: 0;
}
.projectHomeLink {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}
.projectGalleryShowcase {
  position: relative;
  margin-bottom: 18px;
}
.projectSliderStage {
  position: relative;
  display: block;
  width: 100%;
  height: clamp(430px, 58vw, 690px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(110, 211, 177, 0.12),
      transparent 30%),
    #050807;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.34);
  cursor: zoom-in;
  padding: 0;
}
.projectSliderStage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.01);
  transition: transform 700ms ease, filter 700ms ease;
}
.projectSliderStage:hover img {
  transform: scale(1.035);
  filter: brightness(0.92);
}
.projectGalleryCounter,
.projectGalleryExpand {
  position: absolute;
  z-index: 2;
  color: #fff;
  background: rgba(5, 12, 11, 0.62);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}
.projectGalleryCounter {
  left: 22px;
  bottom: 22px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
}
.projectGalleryExpand {
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.projectGalleryControls {
  position: absolute;
  right: 22px;
  top: 22px;
  z-index: 2;
  display: flex;
  gap: 10px;
}
.projectGalleryControls button {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(5, 12, 11, 0.62);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}
.projectGalleryControls button:hover {
  background: rgba(110, 211, 177, 0.3);
  transform: translateY(-1px);
}
.projectPhotoGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.projectPhotoGrid .galleryItemWrap {
  display: block;
  width: 100%;
  margin: 0;
}
.projectPhotoGrid .galleryItem {
  aspect-ratio: 4 / 3;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
}
.projectPhotoGrid .galleryItem.is-active {
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.28), inset 0 0 0 2px rgba(110, 211, 177, 0.72);
}
.projectPhotoGrid .galleryItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lightboxFrame {
  position: relative;
  display: grid;
  width: auto;
  height: auto;
  max-width: 90vw;
  max-height: 86vh;
  place-items: center;
}
.lightboxFrame img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 86vh;
  object-fit: contain;
}
.lightboxFrame span {
  position: absolute;
  left: 50%;
  bottom: -42px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 750;
}
.projectCta {
  padding: 86px 0;
  color: #fff;
  background:
    linear-gradient(
      135deg,
      rgba(15, 111, 92, 0.96),
      rgba(7, 63, 54, 0.98)),
    #073f36;
}
.projectCtaInner {
  display: grid;
  grid-template-columns: 0.9fr 0.8fr;
  gap: 54px;
  align-items: end;
}
.projectCta .kicker {
  color: var(--mint);
}
.projectCta h2 {
  margin-top: 18px;
}
.projectCta p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
}
.benefits {
  background: #fff;
}
.benefitsLayout {
  display: grid;
  grid-template-columns: 0.62fr 1fr;
  gap: 54px;
  align-items: start;
}
.benefitsIntro {
  position: sticky;
  top: 112px;
}
.benefitsIntro h2 {
  margin: 18px 0 22px;
}
.benefitsIntro .button {
  margin-top: 34px;
}
.benefitGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.benefitCard {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(
      140deg,
      rgba(110, 211, 177, 0.09),
      transparent 44%),
    #fff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}
.benefitCard::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      circle at 18% 0%,
      rgba(110, 211, 177, 0.18),
      transparent 36%),
    linear-gradient(
      135deg,
      rgba(15, 111, 92, 0.12),
      transparent 58%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}
.benefitCard > * {
  position: relative;
  z-index: 1;
}
.benefitCard:hover {
  transform: translateY(-5px);
  border-color: rgba(110, 211, 177, 0.5);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}
.benefitCard:hover::before {
  opacity: 1;
}
.benefitCard svg {
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  padding: 11px;
  border-radius: 50%;
  color: var(--emerald);
  background: var(--mint-soft);
  transition:
    color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}
.benefitCard:hover svg {
  color: #fff;
  background: rgba(15, 111, 92, 0.92);
  box-shadow: 0 12px 34px rgba(15, 111, 92, 0.32);
}
.requestSection {
  padding-top: 120px;
  background:
    linear-gradient(
      135deg,
      rgba(7, 63, 54, 0.94),
      rgba(24, 33, 31, 0.96)),
    #071d19;
  color: #fff;
}
.requestLayout {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 64px;
  align-items: center;
}
.requestText .kicker {
  color: var(--mint);
}
.requestText h2 {
  margin: 18px 0 22px;
}
.requestText p {
  color: rgba(255, 255, 255, 0.74);
}
.requestContacts {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}
.requestContacts a,
.requestContacts span,
.footerContacts a,
.footerContacts span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.requestContacts svg {
  color: var(--mint);
}
.formCard {
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12), 0 34px 90px rgba(0, 0, 0, 0.24);
}
form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border-radius: 7px;
  background: #fff;
  color: var(--graphite);
}
.leadForm {
  gap: 11px;
  padding: 0;
  background: transparent;
  color: #fff;
}
label span {
  display: block;
  margin-bottom: 8px;
  color: var(--emerald-dark);
  font-size: 13px;
  font-weight: 800;
}
.leadForm label > span {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}
input,
textarea {
  width: 100%;
  border: 1px solid rgba(15, 111, 92, 0.16);
  border-radius: var(--radius);
  outline: 0;
  background: #f8faf9;
  color: var(--graphite);
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}
.checkField {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
}
.checkField input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--emerald);
}
.checkField span {
  margin: 0;
  color: rgba(24, 33, 31, 0.74);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.45;
}
.leadForm .checkField span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  line-height: 1.35;
}
.formMessage {
  margin: 0;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.45;
}
.formMessage.success {
  color: var(--emerald);
}
.leadForm .formMessage.success {
  color: var(--mint);
}
.formMessage.error {
  color: #b44444;
}
.leadForm .formMessage.error {
  color: #ffb6b6;
}
input {
  height: 52px;
  padding: 0 16px;
}
textarea {
  resize: vertical;
  min-height: 120px;
  padding: 14px 16px;
}
.leadForm input {
  height: 46px;
  padding-inline: 14px;
}
.leadForm textarea {
  height: 84px;
  min-height: 84px;
  padding: 12px 14px;
}
.leadForm .formButton {
  min-height: 48px;
  margin-top: 2px;
}
input:focus,
textarea:focus {
  border-color: var(--emerald);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(110, 211, 177, 0.18);
}
.formButton {
  width: 100%;
  margin-top: 4px;
}
.formSuccess {
  margin: 0;
  color: var(--emerald);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}
.modalLayer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 22px;
  background:
    radial-gradient(
      circle at 72% 12%,
      rgba(110, 211, 177, 0.12),
      transparent 32%),
    rgba(2, 7, 6, 0.72);
  backdrop-filter: blur(18px);
}
.leadModal {
  position: relative;
  width: min(640px, 100%);
  max-height: 90vh;
  overflow: visible;
  padding: 30px 34px 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.045)),
    #07110f;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.44);
}
.leadModal h2 {
  margin: 10px 44px 14px 0;
  color: #fff;
  font-size: clamp(30px, 3.4vw, 38px);
  line-height: 1;
}
.modalHint {
  margin: -6px 0 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}
.modalClose {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}
.modalClose:hover {
  transform: translateY(-1px);
  border-color: rgba(110, 211, 177, 0.4);
  background: rgba(110, 211, 177, 0.12);
}
.floatingActions {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 40;
  display: grid;
  gap: 10px;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}
.floatingActions.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.floatingActions button {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(110, 211, 177, 0.18);
  border-radius: 50%;
  color: #fff;
  background: rgba(5, 12, 10, 0.72);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}
.floatingActions button:hover {
  transform: translateY(-2px);
  border-color: rgba(110, 211, 177, 0.48);
  background: rgba(15, 111, 92, 0.78);
}
.faqReviewsSection {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(
      circle at 20% 10%,
      rgba(110, 211, 177, 0.14),
      transparent 32%),
    radial-gradient(
      circle at 88% 4%,
      rgba(15, 111, 92, 0.22),
      transparent 34%),
    linear-gradient(
      180deg,
      #07110f,
      #0a1210 56%,
      #071d19);
}
.faqReviewsSection::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.024) 1px,
      transparent 1px);
  background-size: 72px 72px;
  mask-image:
    linear-gradient(
      180deg,
      transparent,
      #000 18%,
      #000 82%,
      transparent);
}
.faqReviewsGrid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 54px;
  align-items: start;
}
.faqColumn h2,
.reviewsColumn h2 {
  margin: 16px 0 14px;
  color: #fff;
}
.faqColumn > p,
.reviewsColumn > p {
  max-width: 520px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
  line-height: 1.6;
}
.faqList,
.reviewsList {
  display: grid;
  gap: 12px;
}
.faqItem,
.reviewCard {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.2);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}
.faqItem:hover,
.reviewCard:hover,
.faqItem.is-open {
  transform: translateY(-2px);
  border-color: rgba(110, 211, 177, 0.38);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.24), 0 0 34px rgba(15, 111, 92, 0.14);
}
.faqItem button {
  display: flex;
  width: 100%;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  padding: 0 20px;
  color: #fff;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-weight: 820;
}
.faqItem button svg {
  flex: 0 0 auto;
  color: var(--mint);
}
.faqAnswer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms ease;
}
.faqItem.is-open .faqAnswer {
  grid-template-rows: 1fr;
}
.faqAnswer p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 20px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.58;
}
.faqItem.is-open .faqAnswer p {
  padding-bottom: 20px;
}
.reviewCard {
  position: relative;
  padding: 24px;
  overflow: hidden;
}
.reviewQuote {
  position: absolute;
  top: 12px;
  right: 20px;
  color: rgba(110, 211, 177, 0.2);
  font-size: 78px;
  line-height: 1;
  font-weight: 850;
}
.reviewCard strong,
.reviewCard small,
.reviewCard p {
  position: relative;
  z-index: 1;
}
.reviewCard strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 20px;
}
.reviewCard small {
  display: block;
  margin-bottom: 16px;
  color: var(--mint);
  font-size: 13px;
  font-weight: 760;
}
.reviewCard p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.62;
}
.footer {
  padding: 58px 0;
  color: rgba(255, 255, 255, 0.72);
  background: #062f29;
}
.footerGrid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.9fr 0.6fr;
  gap: 42px;
}
.footer .logo {
  color: #fff;
}
.footerBrand p {
  max-width: 360px;
  margin: 22px 0 0;
  line-height: 1.62;
}
.footerNav,
.footerContacts,
.socials {
  display: grid;
  gap: 13px;
  align-content: start;
}
.footer strong {
  margin-bottom: 8px;
  color: #fff;
  font-size: 15px;
}
.footer a:hover {
  color: var(--mint);
}
.socials div,
.messengerLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.socials a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 180ms ease, background 180ms ease;
}
.socials a:hover {
  transform: translateY(-2px);
  background: rgba(110, 211, 177, 0.2);
}
.messengerLinks a span {
  font-size: 13px;
  font-weight: 900;
}
.instagramCta {
  display: inline-flex !important;
  width: auto !important;
  height: auto !important;
  min-height: 44px;
  justify-content: flex-start !important;
  gap: 10px;
  padding: 0 14px;
  border-radius: 999px !important;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.instagramCta span {
  font-size: 13px;
  font-weight: 760;
}
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 650ms ease, transform 650ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.officeZonesSection {
  position: relative;
  overflow: hidden;
  padding: 118px 0;
  color: #fff;
  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(110, 211, 177, 0.14),
      transparent 30%),
    radial-gradient(
      circle at 82% 0%,
      rgba(15, 111, 92, 0.2),
      transparent 34%),
    linear-gradient(
      180deg,
      #08100f,
      #121817 48%,
      #071d19);
}
.officeZonesSection::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px);
  background-size: 72px 72px;
  mask-image:
    linear-gradient(
      180deg,
      transparent,
      #000 20%,
      #000 78%,
      transparent);
}
.officeZonesHeader {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.62fr);
  gap: 52px;
  align-items: end;
  margin-bottom: 42px;
}
.officeZonesHeader .kicker,
.solutionHero .eyebrow,
.solutionCtaSection .kicker {
  color: var(--mint);
}
.officeZonesHeader h2 {
  margin-top: 18px;
  color: #fff;
  font-size: clamp(34px, 4.8vw, 60px);
  line-height: 1;
  letter-spacing: 0;
}
.officeZonesHeader p,
.solutionSliderHeader p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.62;
}
.solutionGrid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}
.catalogSeoText {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.catalogSeoText p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.62;
}
.solutionCard {
  min-height: 420px;
}
.solutionCard:nth-child(1),
.solutionCard:nth-child(6) {
  grid-column: auto;
}
.solutionCard a {
  position: relative;
  display: block;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: #071d19;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  isolation: isolate;
}
.solutionCard img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.01);
  filter: saturate(0.9) contrast(1.02);
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 900ms ease;
}
.solutionCard a:hover img {
  transform: scale(1.075);
  filter: saturate(1.08) contrast(1.06);
}
.solutionCardOverlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(5, 12, 11, 0.06),
      rgba(5, 12, 11, 0.88)),
    linear-gradient(
      90deg,
      rgba(5, 12, 11, 0.58),
      rgba(5, 12, 11, 0.12));
  transition: opacity 260ms ease;
}
.solutionCard a:hover .solutionCardOverlay {
  opacity: 0.86;
}
.solutionCardNumber,
.solutionCardBody,
.solutionCardArrow {
  position: absolute;
  z-index: 2;
}
.solutionCardNumber {
  top: 20px;
  left: 20px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  font-weight: 850;
}
.solutionCardBody {
  left: 22px;
  right: 22px;
  bottom: 24px;
  display: grid;
  min-height: 132px;
  grid-template-rows: 22px minmax(88px, auto) 24px;
  align-content: end;
  color: #fff;
}
.solutionCardBody small {
  display: block;
  margin: 0;
  color: var(--mint);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.solutionCardBody strong {
  display: flex;
  align-items: end;
  max-width: 520px;
  margin: 0;
  font-size: clamp(24px, 2.5vw, 42px);
  line-height: 0.98;
  font-weight: 850;
}
.solutionCardBody > span {
  display: block;
  max-width: 440px;
  align-self: end;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 220ms ease, transform 220ms ease;
}
.solutionCard a:hover .solutionCardBody > span,
.solutionCard a:focus-visible .solutionCardBody > span {
  opacity: 1;
  transform: translateY(0);
}
.solutionCardArrow {
  top: 18px;
  right: 18px;
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--graphite);
  background: rgba(255, 255, 255, 0.88);
  transform: translate(8px, -8px);
  opacity: 0;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}
.solutionCard a:hover .solutionCardArrow,
.solutionCard a:focus-visible .solutionCardArrow {
  opacity: 1;
  transform: translate(0, 0);
  background: var(--mint);
}
.solutionHero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: #fff;
  background: #071d19;
}
.solutionHero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.solutionHeroOverlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 82% 10%,
      rgba(110, 211, 177, 0.18),
      transparent 30%),
    linear-gradient(
      90deg,
      rgba(5, 12, 11, 0.9),
      rgba(5, 12, 11, 0.54) 56%,
      rgba(5, 12, 11, 0.18)),
    linear-gradient(
      180deg,
      rgba(5, 12, 11, 0.16),
      rgba(5, 12, 11, 0.86));
}
.solutionHeroInner {
  position: relative;
  z-index: 1;
  min-height: 720px;
  display: flex;
  align-items: end;
  padding-top: 110px;
  padding-bottom: 76px;
}
.solutionHero .backLink {
  margin-bottom: 30px;
  color: var(--mint);
}
.solutionHero h1 {
  max-width: 980px;
  margin: 18px 0 22px;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.92;
}
.solutionHero p {
  max-width: 720px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.6;
}
.solutionSliderSection {
  color: #fff;
  background:
    linear-gradient(
      180deg,
      #071d19,
      #101816),
    #071d19;
}
.solutionSliderHeader {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.65fr);
  gap: 52px;
  align-items: end;
  margin-bottom: 36px;
}
.solutionSliderHeader .kicker {
  color: var(--mint);
}
.solutionSliderHeader h2 {
  margin-top: 18px;
  color: #fff;
}
.imageSlider {
  display: grid;
  gap: 18px;
}
.sliderFrame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #071d19;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.28);
}
.sliderImageButton {
  position: relative;
  display: block;
  width: 100%;
  height: min(70vh, 720px);
  min-height: 460px;
  border: 0;
  padding: 0;
  overflow: hidden;
  background: #071d19;
  cursor: zoom-in;
}
.sliderImageButton img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 900ms ease, filter 900ms ease;
}
.sliderImageButton:hover img {
  transform: scale(1.045);
  filter: brightness(0.9);
}
.sliderImageButton span {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 999px;
  color: #fff;
  background: rgba(5, 12, 11, 0.48);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
  font-weight: 800;
}
.sliderArrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(5, 12, 11, 0.48);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease;
}
.sliderArrow:hover {
  background: rgba(15, 111, 92, 0.68);
}
.sliderPrev {
  left: 20px;
}
.sliderNext {
  right: 20px;
}
.sliderMeta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 850;
}
.sliderDots {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}
.sliderDots button {
  width: 28px;
  height: 3px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}
.sliderDots button.is-active {
  width: 46px;
  background: var(--mint);
}
.sliderThumbs {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
}
.sliderThumbs button {
  height: 86px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0.54;
  transition: opacity 180ms ease, border-color 180ms ease;
}
.sliderThumbs button.is-active,
.sliderThumbs button:hover {
  opacity: 1;
  border-color: var(--mint);
}
.sliderThumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.seoSection {
  background:
    linear-gradient(
      180deg,
      #fff,
      var(--bg)),
    var(--bg);
}
.seoLayout {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 58px;
  align-items: start;
}
.seoIntro {
  position: sticky;
  top: 112px;
}
.seoIntro h2 {
  margin-top: 18px;
}
.seoTextBlock {
  display: grid;
  gap: 22px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}
.seoTextBlock p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.78;
}
.solutionCtaSection {
  padding: 92px 0;
  color: #fff;
  background:
    radial-gradient(
      circle at 74% 8%,
      rgba(110, 211, 177, 0.18),
      transparent 34%),
    linear-gradient(
      135deg,
      #073f36,
      #071d19);
}
.solutionCtaInner {
  display: grid;
  grid-template-columns: 0.9fr 0.75fr;
  gap: 58px;
  align-items: end;
}
.solutionCtaInner h2 {
  margin-top: 18px;
  color: #fff;
}
.solutionCtaInner p {
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.65;
}
body {
  color: rgba(255, 255, 255, 0.88);
  background:
    radial-gradient(
      circle at 12% 0%,
      rgba(15, 111, 92, 0.22),
      transparent 34%),
    linear-gradient(
      180deg,
      #050807,
      #0a1210 42%,
      #061f1b);
}
.siteHeader {
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(5, 10, 9, 0.72);
  backdrop-filter: blur(24px);
}
.logoText {
  max-width: 120px;
  color: #fff;
  font-size: 13px;
  line-height: 1.05;
  font-weight: 850;
}
.desktopNav {
  color: rgba(255, 255, 255, 0.66);
}
.desktopNav a:hover {
  color: var(--mint);
}
.phoneLink {
  color: rgba(255, 255, 255, 0.88);
}
.heroOverlay {
  background:
    radial-gradient(
      circle at 18% 34%,
      rgba(110, 211, 177, 0.16),
      transparent 36%),
    linear-gradient(
      90deg,
      rgba(3, 9, 8, 0.5) 0%,
      rgba(3, 9, 8, 0.32) 36%,
      rgba(3, 9, 8, 0.12) 68%,
      rgba(3, 9, 8, 0.04) 100%),
    linear-gradient(
      180deg,
      rgba(3, 9, 8, 0.04),
      rgba(3, 9, 8, 0.28));
}
.heroContent {
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.48);
}
.heroContent > p {
  max-width: 600px;
}
.heroAccent,
.accentTitle {
  color: var(--mint);
  text-shadow: 0 0 34px rgba(110, 211, 177, 0.32);
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 9px;
  max-width: 100%;
  margin-bottom: 22px;
  overflow-x: auto;
  scrollbar-width: none;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  font-weight: 760;
  white-space: nowrap;
}
.breadcrumbs::-webkit-scrollbar {
  display: none;
}
.breadcrumbs > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.breadcrumbs > span:not(:last-child)::after {
  content: "\203a";
  color: rgba(110, 211, 177, 0.66);
}
.breadcrumbs a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 180ms ease;
}
.breadcrumbs a:hover {
  color: var(--mint);
}
.catalogSection {
  padding: 104px 0;
  color: #fff;
  background:
    radial-gradient(
      circle at 80% 8%,
      rgba(110, 211, 177, 0.1),
      transparent 28%),
    linear-gradient(
      180deg,
      #050807,
      #0c1312);
}
.catalogHeader {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.45fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
}
.catalogHeader .kicker {
  color: var(--mint);
}
.catalogHeader h2 {
  margin-top: 16px;
  color: #fff;
}
.catalogHeader p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
  line-height: 1.6;
}
.catalogGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.catalogCard {
  min-height: 360px;
}
.catalogCard a {
  position: relative;
  display: block;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: #071d19;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}
.catalogCard img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 800ms ease, filter 800ms ease;
}
.catalogCard a:hover img {
  transform: scale(1.07);
  filter: saturate(1.05) contrast(1.04);
}
.catalogCardOverlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(5, 8, 7, 0.04),
      rgba(5, 8, 7, 0.8)),
    linear-gradient(
      90deg,
      rgba(5, 8, 7, 0.48),
      transparent);
}
.catalogCardTitle {
  position: absolute;
  left: 22px;
  right: 72px;
  bottom: 24px;
  color: #fff;
  font-size: clamp(23px, 2.2vw, 34px);
  line-height: 1;
  font-weight: 850;
}
.catalogCardArrow {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--graphite);
  background: rgba(255, 255, 255, 0.9);
  transition: transform 180ms ease, background 180ms ease;
}
.catalogCard a:hover .catalogCardArrow {
  transform: translateX(4px);
  background: var(--mint);
}
.trust,
.turnkey,
.projects,
.benefits,
.projectGallerySection,
.seoSection {
  color: #fff;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.018),
      rgba(255, 255, 255, 0)),
    #0a1210;
}
.trustGrid,
.stepCard,
.benefitCard,
.innerHeroStats,
.seoTextBlock {
  border-color: rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}
.benefitCard svg {
  color: var(--mint);
  background: rgba(110, 211, 177, 0.12);
  box-shadow: inset 0 0 0 1px rgba(110, 211, 177, 0.18);
}
.stepIcon {
  color: var(--mint);
  background: rgba(110, 211, 177, 0.12);
  box-shadow: inset 0 0 0 1px rgba(110, 211, 177, 0.18);
}
.processFacts span {
  color: rgba(255, 255, 255, 0.86);
  border-color: rgba(110, 211, 177, 0.2);
  background: rgba(255, 255, 255, 0.055);
}
.trustItem {
  background: rgba(255, 255, 255, 0.045);
}
.trustItem strong,
.projectMeta,
.textLink,
.backLink,
.projectBody a {
  color: var(--mint);
}
.trustItem strong,
.innerHeroStats strong {
  animation: premiumNumberGlow 4.8s ease-in-out infinite;
}
.trustItem span,
.sectionHead p,
.benefitsIntro p,
.requestText p,
.stepCard p,
.benefitCard p,
.projectCard p,
.innerHeroText p,
.projectHero p,
.projectCta p,
.seoTextBlock p {
  color: rgba(255, 255, 255, 0.64);
}
.sectionHead h2,
.benefitsIntro h2,
.seoIntro h2 {
  color: #fff;
}
.portfolioShowcase {
  color: #fff;
  background:
    radial-gradient(
      circle at 22% 10%,
      rgba(15, 111, 92, 0.16),
      transparent 30%),
    linear-gradient(
      180deg,
      #080e0d,
      #050807);
}
.projectSeoSection .seoLayout {
  grid-template-columns: minmax(520px, 0.92fr) minmax(0, 1fr);
  gap: 46px;
}
.projectSeoSection .seoIntro h2 {
  max-width: 620px;
  font-size: clamp(40px, 3.8vw, 54px);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}
@media (max-width: 1120px) {
  .projectSeoSection .seoLayout {
    grid-template-columns: 1fr;
  }
  .projectSeoSection .seoIntro h2 {
    max-width: 100%;
  }
}
@media (max-width: 760px) {
  .projectSeoSection .seoIntro h2 {
    font-size: clamp(28px, 8.4vw, 36px);
    line-height: 1.06;
    overflow-wrap: break-word;
  }
}
.catalogCategoryShowroomInner {
  grid-template-columns: minmax(0, 1fr) 340px;
}
.catalogCategoryHeroContent {
  width: min(100%, 680px);
  max-width: 680px;
  min-width: 0;
}
.catalogCategoryHeroContent h1 {
  width: min(100%, 50vw);
  max-width: 680px;
  font-size: clamp(56px, 5vw, 84px);
  line-height: 0.96;
}
.catalogCategoryHeroTitleLine {
  max-width: 100%;
  white-space: normal;
  text-wrap: balance;
}
.catalogCategoryHeroContent p {
  max-width: 30ch;
  color: rgba(255, 255, 255, 0.88);
  text-wrap: pretty;
}
.catalogCategoryHeroActions .button {
  min-height: 52px;
}
.catalogCategoryHeroBenefits {
  max-width: 680px;
}
.catalogCategoryHeroBenefits span {
  min-height: 48px;
  align-items: flex-start;
}
.catalogCategoryHeroMedia img {
  filter: saturate(1.08) contrast(1.05) brightness(1.12);
}
.catalogCategoryHeroShade {
  background:
    radial-gradient(
      circle at 22% 34%,
      rgba(110, 211, 177, 0.12),
      transparent 34%),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.52) 0%,
      rgba(0, 0, 0, 0.3) 38%,
      rgba(0, 0, 0, 0.12) 70%,
      rgba(0, 0, 0, 0.04) 100%),
    linear-gradient(
      180deg,
      rgba(2, 7, 6, 0.02),
      rgba(2, 7, 6, 0.16));
}
.catalogShowroomCard,
.catalogShowroomCard a {
  overflow: clip;
}
.catalogShowroomCard img {
  border-radius: inherit;
}
.menuButton svg {
  transition: transform 180ms ease, opacity 180ms ease;
}
body.menu-open .menuButton svg {
  transform: rotate(90deg);
}
@media (min-width: 1200px) {
  .catalogCategoryShowroomInner {
    grid-template-columns: minmax(0, 680px) 340px;
    justify-content: space-between;
  }
  .catalogShowroomGlow::after {
    height: 196px;
  }
  .catalogShowroomGlass {
    background: rgba(4, 18, 15, 0.9);
  }
}
@media (min-width: 761px) and (max-width: 1199px) {
  .catalogCategoryShowroomInner {
    grid-template-columns: minmax(0, 1fr) 318px;
    gap: 28px;
  }
  .catalogCategorySidebar {
    width: 318px;
  }
  .catalogCategoryHeroContent h1 {
    width: 100%;
    max-width: 590px;
    font-size: clamp(48px, 5.9vw, 68px);
  }
}
@media (max-width: 760px) {
  .catalogCategoryHeroContent {
    width: 100%;
    max-width: 100%;
  }
  .catalogCategoryHeroContent h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(36px, 10.4vw, 48px);
    line-height: 1;
  }
  .catalogCategoryHeroContent p {
    max-width: 31ch;
    font-size: 15.5px;
    line-height: 1.55;
  }
  .catalogCategorySectionHead {
    max-width: 100%;
  }
  .catalogCategorySectionHead h2,
  .catalogGalleryTitle h2 {
    max-width: 100%;
    font-size: clamp(28px, 8.4vw, 36px);
    line-height: 1.04;
    text-wrap: balance;
    overflow-wrap: normal;
    word-break: normal;
  }
  .catalogCategoryHeroBenefits span {
    min-height: 0;
  }
  .projectHero .projectFacts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 16px;
  }
  .projectHero .projectFacts span {
    min-width: 0;
    min-height: 72px;
    padding: 10px 8px;
    border-radius: 10px;
    font-size: 9px;
    line-height: 1.2;
    letter-spacing: 0;
    overflow-wrap: normal;
    word-break: normal;
  }
  .projectHero .projectFacts strong {
    margin-bottom: 5px;
    font-size: 17px;
    line-height: 1;
    overflow-wrap: normal;
    white-space: nowrap;
  }
}
.portfolioHeader {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(260px, 0.45fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 34px;
}
.portfolioHeader .kicker {
  color: var(--mint);
}
.portfolioHeader h2 {
  margin-top: 18px;
  color: #fff;
}
.portfolioHeader p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
  line-height: 1.6;
}
.portfolioLayout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: stretch;
}
.portfolioMainFrame {
  position: relative;
  height: 100%;
}
.portfolioMain a {
  position: relative;
  display: block;
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #071d19;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.34);
}
.portfolioMain img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 900ms ease;
}
.portfolioMain a:hover img {
  transform: scale(1.055);
}
.portfolioMobileControls {
  display: none;
}
.portfolioMainOverlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(5, 8, 7, 0.04),
      rgba(5, 8, 7, 0.78)),
    linear-gradient(
      90deg,
      rgba(5, 8, 7, 0.55),
      rgba(5, 8, 7, 0.06));
}
.portfolioMainText {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  color: #fff;
}
.portfolioMainText small {
  display: block;
  margin-bottom: 12px;
  color: var(--mint);
  font-weight: 850;
  text-transform: uppercase;
}
.portfolioMainText strong {
  display: block;
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.94;
}
.portfolioMainText span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 750;
}
.portfolioSide {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 16px;
}
.portfolioFacts {
  display: grid;
  gap: 10px;
}
.portfolioFacts span {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.045);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.portfolioFacts strong {
  display: block;
  margin-bottom: 7px;
  color: #fff;
  font-size: 17px;
  line-height: 1.2;
  text-transform: none;
}
.portfolioThumbs {
  display: grid;
  gap: 10px;
}
.portfolioThumbs button {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 12px;
  align-items: center;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 8px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  text-align: left;
  transition: border-color 180ms ease, background 180ms ease;
}
.portfolioThumbs button.is-active,
.portfolioThumbs button:hover {
  border-color: rgba(110, 211, 177, 0.52);
  background: rgba(110, 211, 177, 0.1);
}
.portfolioThumbs img {
  width: 86px;
  height: 62px;
  border-radius: 6px;
  object-fit: cover;
}
.portfolioThumbs span {
  font-weight: 760;
  line-height: 1.25;
}
.requestSection {
  background:
    radial-gradient(
      circle at 76% 14%,
      rgba(110, 211, 177, 0.18),
      transparent 30%),
    linear-gradient(
      135deg,
      #071d19,
      #050807);
}
form {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}
label span {
  color: var(--mint);
}
input,
textarea {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.formMessage {
  margin: 0;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.45;
}
.formMessage.success {
  color: var(--mint);
}
.formMessage.error {
  color: #ffb4a9;
}
.formButton:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #030605;
}
select,
input,
textarea {
  max-width: 100%;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  caret-color: var(--mint);
}
select::placeholder,
input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
select:focus,
input:focus,
textarea:focus {
  border-color: var(--mint);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(110, 211, 177, 0.16);
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {
  border-color: rgba(110, 211, 177, 0.34);
  -webkit-text-fill-color: #fff;
  box-shadow: 0 0 0 1000px #111b18 inset, 0 0 0 3px rgba(110, 211, 177, 0.16);
  transition: background-color 9999s ease-in-out 0s;
}
.brandStripSection {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
  color: #fff;
  background:
    radial-gradient(
      circle at 14% 12%,
      rgba(110, 211, 177, 0.12),
      transparent 30%),
    linear-gradient(
      180deg,
      #07110f,
      #050807);
}
.brandStripHeader {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(260px, 0.46fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 28px;
}
.brandStripHeader h2 {
  max-width: 820px;
  margin-top: 14px;
  color: #fff;
  font-size: clamp(30px, 4.4vw, 58px);
  line-height: 0.98;
}
.brandStripHeader p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 1.55;
}
.brandLogoRail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}
.brandLogoCard {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}
.brandLogoCard:hover {
  transform: translateY(-2px);
  border-color: rgba(110, 211, 177, 0.32);
  background: rgba(110, 211, 177, 0.08);
}
.brandLogoCard img {
  max-width: 100%;
  max-height: 46px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.18) contrast(0.9);
  opacity: 0.72;
  mix-blend-mode: screen;
  transition: filter 180ms ease, opacity 180ms ease;
}
.brandLogoCard:hover img {
  filter: grayscale(0) brightness(1.08) contrast(1);
  opacity: 1;
}
.companySection {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(
      circle at 80% 12%,
      rgba(110, 211, 177, 0.16),
      transparent 34%),
    radial-gradient(
      circle at 18% 26%,
      rgba(15, 111, 92, 0.2),
      transparent 34%),
    linear-gradient(
      180deg,
      #07110f,
      #061f1b);
}
.companySectionPage {
  padding-top: 132px;
}
.companyLayout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 46px;
  align-items: start;
}
.companyIntro {
  position: sticky;
  top: 116px;
}
.companyIntro h2 {
  margin-top: 16px;
  color: #fff;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.96;
  overflow-wrap: anywhere;
}
.companyIntro p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 17px;
  line-height: 1.65;
}
.companyActions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.companyCards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.companyCard,
.mapCard {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}
.companyCard {
  min-width: 0;
  padding: 20px;
}
.companyCardWide {
  grid-column: 1 / -1;
}
.companyCard span {
  display: block;
  margin-bottom: 8px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.companyCard strong {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}
.mapCard {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  padding: 22px;
}
.mapCard svg {
  color: var(--mint);
}
.mapCard strong {
  color: #fff;
  font-size: 18px;
}
.mapCard p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.5;
}
.mapCard a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 16px;
  color: #07110f;
  background: var(--mint);
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}
.companyPageHero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(
      circle at 80% 12%,
      rgba(110, 211, 177, 0.16),
      transparent 34%),
    radial-gradient(
      circle at 18% 26%,
      rgba(15, 111, 92, 0.2),
      transparent 34%),
    linear-gradient(
      180deg,
      #050807,
      #071d19);
}
.companyPageHero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.024) 1px,
      transparent 1px);
  background-size: 84px 84px;
  opacity: 0.38;
}
.companyPageHeroInner {
  position: relative;
  z-index: 1;
  min-height: 560px;
  display: flex;
  align-items: end;
  padding-top: 128px;
  padding-bottom: 72px;
}
.compactPageHero .companyPageHeroInner {
  min-height: 420px;
}
.companyPageHero h1 {
  max-width: 980px;
  margin: 18px 0 26px;
  color: #fff;
  font-size: clamp(52px, 6.3vw, 84px);
  line-height: 0.98;
  font-weight: 820;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}
.contactsPageHero h1,
.compactPageHero h1 {
  max-width: 760px;
  font-size: clamp(48px, 5.5vw, 72px);
}
.companyPageHero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
}
.aboutContentSection,
.contactDetailsSection {
  color: #fff;
  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(15, 111, 92, 0.13),
      transparent 30%),
    linear-gradient(
      180deg,
      #071d19,
      #0a1210);
}
.aboutContentGrid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.72fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
}
.aboutStoryCard,
.aboutApproachCard,
.aboutListCard,
.contactPrimaryCard,
.contactRequisitesCard {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}
.aboutStoryCard,
.aboutApproachCard {
  padding: 34px;
}
.aboutStoryCard p,
.aboutApproachCard p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.72;
}
.aboutApproachCard h2 {
  max-width: 500px;
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.02;
}
.aboutInfoGrid,
.contactDetailsGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.aboutListCard {
  padding: 28px;
}
.aboutListCard ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.aboutListCard li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.45;
}
.aboutListCard svg,
.contactLine svg {
  color: var(--mint);
}
.aboutRequisitesSection {
  color: #fff;
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(110, 211, 177, 0.1),
      transparent 34%),
    linear-gradient(
      180deg,
      #0a1210,
      #061512);
}
.aboutRequisitesHead {
  max-width: 760px;
  margin-bottom: 22px;
}
.aboutRequisitesHead h2 {
  margin: 14px 0 12px;
  color: #fff;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1;
}
.aboutRequisitesHead p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.6;
}
.aboutRequisitesHead .requisitesToggle {
  margin-top: 18px;
}
.contactRequisitesCard.aboutRequisitesCard {
  padding: 28px;
  border-color: rgba(110, 211, 177, 0.18);
  background:
    radial-gradient(
      circle at 12% 0%,
      rgba(110, 211, 177, 0.1),
      transparent 34%),
    rgba(4, 18, 15, 0.72);
  backdrop-filter: blur(20px);
}
.contactRequisitesCard.aboutRequisitesCard dl {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 22px;
  margin-top: 0;
}
.contactPrimaryCard,
.contactRequisitesCard {
  padding: 32px;
}
.contactPrimaryCard h2 {
  margin: 18px 0 28px;
  color: #fff;
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.02;
}
.contactLine {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}
.contactLine a,
.contactLine span {
  display: block;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 760;
  line-height: 1.5;
}
.contactLine p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}
.contactRequisitesCard dl {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
}
.contactRequisitesCard div {
  display: grid;
  gap: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.contactRequisitesCard dt {
  color: var(--mint);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.contactRequisitesCard dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
  overflow-wrap: anywhere;
}
.contactMapCard {
  margin-top: 20px;
}
.companyIntro h2 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(42px, 5vw, 74px);
  line-height: 0.98;
  font-weight: 820;
}
.brandLogoRail {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  overflow: hidden;
  padding: 10px 0;
  mask-image:
    linear-gradient(
      90deg,
      transparent,
      #000 9%,
      #000 91%,
      transparent);
}
.brandLogoRail::before,
.brandLogoRail::after {
  content: "";
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 18%;
  height: 1px;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(110, 211, 177, 0.5),
      transparent);
  opacity: 0.46;
}
.brandLogoRail::before {
  left: 0;
}
.brandLogoRail::after {
  right: 0;
}
.brandMarqueeTrack {
  display: flex;
  width: max-content;
  gap: 14px;
  align-items: center;
  animation: brandMarquee 36s linear infinite;
  will-change: transform;
}
.brandLogoRail:hover .brandMarqueeTrack {
  animation-play-state: paused;
}
.brandLogoCard {
  flex: 0 0 auto;
  width: 178px;
  min-height: 82px;
  border-color: rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(110, 211, 177, 0.08),
      transparent 58%),
    rgba(255, 255, 255, 0.035);
  box-shadow: none;
}
.brandLogoCard:hover {
  transform: translateY(-2px);
  border-color: rgba(110, 211, 177, 0.35);
  box-shadow: 0 18px 48px rgba(15, 111, 92, 0.18);
}
.brandLogoCard img {
  max-height: 42px;
  filter: grayscale(1) brightness(1.12) contrast(0.92);
  opacity: 0.66;
  mix-blend-mode: screen;
}
.brandLogoCard:hover img {
  filter: grayscale(0) brightness(1.08) contrast(1.02);
  opacity: 1;
}
.brandTrustText {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.02em;
}
.portfolioAllButton {
  width: 100%;
  min-height: 56px;
  justify-content: center;
  color: #fff;
  background:
    linear-gradient(
      135deg,
      var(--emerald),
      #0a594b),
    var(--emerald);
  box-shadow: 0 18px 48px rgba(15, 111, 92, 0.26), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.portfolioAllButton:hover {
  transform: translateY(-2px);
  background:
    linear-gradient(
      135deg,
      #12836d,
      var(--emerald)),
    var(--emerald);
  box-shadow: 0 22px 60px rgba(110, 211, 177, 0.2), 0 0 0 1px rgba(110, 211, 177, 0.24);
}
.checkField {
  border-radius: 8px;
}
.checkField input {
  border: 1px solid rgba(110, 211, 177, 0.34);
  box-shadow: 0 0 0 1px rgba(110, 211, 177, 0.08);
}
.checkField input:required:invalid {
  outline: 2px solid rgba(110, 211, 177, 0.16);
  outline-offset: 2px;
}
.checkField span,
.leadForm .checkField span,
form .checkField span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.42;
}
.checkField a {
  color: var(--mint);
}
@keyframes brandMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 1120px) {
  .headerInner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
  .desktopNav,
  .headerActions .buttonSmall {
    display: none;
  }
  .menuButton {
    display: inline-flex;
  }
  .mobilePanel {
    display: none;
    overflow: hidden;
    border-top: 1px solid rgba(15, 111, 92, 0.1);
    background: rgba(248, 250, 249, 0.96);
  }
  .mobilePanel.is-open {
    display: block;
  }
  .mobileNav {
    min-height: 0;
    display: grid;
    gap: 4px;
    padding: 18px 0 24px;
  }
  .mobileNav a:not(.button) {
    padding: 14px 0;
    border-bottom: 1px solid rgba(15, 111, 92, 0.08);
    font-weight: 760;
  }
  .mobileNav .button {
    margin-top: 12px;
  }
  .heroInner {
    grid-template-columns: 1fr;
  }
  .heroCard {
    max-width: 440px;
  }
  .trustGrid,
  .timeline {
    grid-template-columns: repeat(3, 1fr);
  }
  .timeline::before {
    display: none;
  }
  .categoryGrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .categoryCard:nth-child(1),
  .categoryCard:nth-child(4) {
    grid-column: auto;
  }
  .projectGrid,
  .caseGrid,
  .catalogGrid,
  .footerGrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .caseCard.is-featured {
    grid-column: span 2;
  }
  .innerHeroGrid,
  .projectCtaInner,
  .catalogHeader,
  .portfolioHeader,
  .portfolioLayout,
  .officeZonesHeader,
  .solutionSliderHeader,
  .seoLayout,
  .solutionCtaInner {
    grid-template-columns: 1fr;
  }
  .solutionGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .solutionCard,
  .solutionCard:nth-child(1),
  .solutionCard:nth-child(6) {
    grid-column: auto;
  }
  .sliderThumbs {
    grid-template-columns: repeat(4, 1fr);
  }
  .seoIntro {
    position: static;
  }
  .masonryGallery {
    column-count: 2;
  }
  .benefitsLayout,
  .requestLayout {
    grid-template-columns: 1fr;
  }
  .benefitsIntro {
    position: static;
  }
}
@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1180px);
  }
  .phoneLink span {
    display: none;
  }
  .siteHeader {
    background: rgba(248, 250, 249, 0.9);
  }
  .headerInner {
    min-height: 66px;
    gap: 12px;
  }
  .logo strong {
    font-size: 13px;
  }
  .logo small {
    font-size: 12px;
  }
  .logoImageWrap {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }
  .hero {
    min-height: 760px;
  }
  .heroInner {
    min-height: 760px;
    padding: 86px 0 34px;
    gap: 28px;
  }
  h1 {
    margin-top: 22px;
    font-size: clamp(42px, 15vw, 68px);
  }
  .heroContent > p {
    font-size: 17px;
  }
  .heroBenefits {
    display: grid;
  }
  .heroBenefits span {
    justify-content: flex-start;
    min-height: auto;
    padding: 12px 14px;
    border-radius: var(--radius);
  }
  .heroCtas,
  .heroCtas .button,
  .buttonGhost {
    width: 100%;
  }
  .sectionCompact {
    padding-top: 22px;
  }
  .trustGrid,
  .categoryGrid,
  .timeline,
  .projectGrid,
  .caseGrid,
  .catalogGrid,
  .solutionGrid,
  .benefitGrid,
  .footerGrid {
    grid-template-columns: 1fr;
  }
  .catalogSection {
    padding: 78px 0;
  }
  .catalogHeader {
    display: block;
  }
  .catalogCard {
    min-height: 330px;
  }
  .portfolioHeader {
    display: block;
  }
  .portfolioMain a {
    min-height: 430px;
  }
  .portfolioMainText {
    left: 20px;
    right: 20px;
    bottom: 22px;
  }
  .portfolioMainText strong {
    font-size: 34px;
  }
  .portfolioSide {
    display: grid;
  }
  .portfolioThumbs button {
    grid-template-columns: 72px 1fr;
  }
  .portfolioThumbs img {
    width: 72px;
    height: 54px;
  }
  .officeZonesSection {
    padding: 82px 0;
  }
  .officeZonesHeader {
    display: block;
    margin-bottom: 28px;
  }
  .officeZonesHeader h2 {
    font-size: clamp(40px, 13vw, 58px);
  }
  .officeZonesHeader p,
  .solutionSliderHeader p,
  .seoTextBlock p,
  .solutionCtaInner p {
    font-size: 16px;
  }
  .solutionCard {
    min-height: 430px;
  }
  .solutionCardBody > span,
  .solutionCardArrow {
    opacity: 1;
    transform: none;
  }
  .solutionHero,
  .solutionHeroInner {
    min-height: 720px;
  }
  .solutionHeroInner {
    padding-top: 84px;
    padding-bottom: 46px;
  }
  .solutionHero h1 {
    font-size: clamp(42px, 14vw, 64px);
  }
  .solutionSliderHeader {
    display: block;
    margin-bottom: 28px;
  }
  .sliderImageButton {
    min-height: 360px;
    height: 58vh;
  }
  .sliderArrow {
    width: 46px;
    height: 46px;
  }
  .sliderPrev {
    left: 12px;
  }
  .sliderNext {
    right: 12px;
  }
  .sliderMeta {
    display: grid;
  }
  .sliderDots {
    justify-content: flex-start;
  }
  .sliderThumbs {
    grid-template-columns: repeat(2, 1fr);
  }
  .seoTextBlock {
    padding: 22px;
  }
  .solutionCtaSection {
    padding: 72px 0;
  }
  .caseCard,
  .caseCard.is-featured {
    grid-column: auto;
    min-height: 360px;
  }
  .caseTopline {
    left: 18px;
    top: 18px;
    max-width: calc(100% - 36px);
  }
  .caseContent {
    left: 18px;
    right: 18px;
    bottom: 72px;
  }
  .caseContent strong {
    font-size: 26px;
  }
  .caseAction {
    left: 18px;
  }
  .caseShowcaseFooter {
    display: grid;
    align-items: start;
  }
  .innerHero {
    padding: 78px 0 54px;
  }
  .innerHeroStats strong {
    font-size: 48px;
  }
  .projectHero,
  .projectHeroContent {
    min-height: 720px;
  }
  .projectHeroContent {
    padding-top: 84px;
    padding-bottom: 46px;
  }
  .projectFacts {
    display: grid;
  }
  .masonryGallery {
    column-count: 1;
  }
  .galleryItem span {
    opacity: 1;
    transform: none;
  }
  .lightbox {
    padding: 64px 12px 76px;
  }
  .lightboxFrame {
    width: auto;
    height: auto;
    max-width: 92vw;
    max-height: 78vh;
  }
  .lightbox img,
  .lightboxFrame img {
    max-width: 92vw;
    max-height: 78vh;
  }
  .lightboxArrow {
    top: auto;
    bottom: 18px;
    transform: none;
  }
  .trustItem {
    min-height: auto;
  }
  .section {
    padding: 78px 0;
  }
  .sectionHead {
    display: block;
    margin-bottom: 28px;
  }
  .sectionHead .kicker {
    margin-bottom: 16px;
  }
  h2 {
    margin-bottom: 16px;
  }
  .sectionHead p,
  .benefitsIntro p,
  .requestText p {
    font-size: 16px;
  }
  .categoryCard,
  .categoryCard a {
    min-height: 300px;
  }
  .categoryContent {
    left: 18px;
    right: 64px;
    bottom: 20px;
  }
  .categoryContent strong {
    font-size: 21px;
  }
  .projectCard > img {
    height: 230px;
  }
  .projectBody {
    min-height: auto;
    padding: 22px;
  }
  .benefitCard,
  .stepCard {
    min-height: auto;
  }
  .requestSection {
    padding-top: 82px;
  }
  .requestLayout {
    gap: 32px;
  }
  form {
    padding: 20px;
  }
}
.leadModal {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.leadModal .leadForm {
  min-height: 0;
}
.leadModal-contact {
  width: min(620px, 100%);
}
.leadModal-contact .leadForm {
  gap: 9px;
}
.leadModal-contact .leadForm input {
  height: 42px;
}
.leadModal-contact .leadForm textarea {
  height: 68px;
  min-height: 68px;
}
.leadModal-contact .formButton {
  margin-top: 0;
}
@media (max-width: 1199px) {
  .leadModal {
    max-height: calc(100vh - 24px);
    overflow-y: auto;
    padding: 18px;
  }
  .leadModal h2 {
    margin: 8px 44px 10px 0;
    padding-right: 40px;
    font-size: clamp(24px, 4vw, 30px);
    line-height: 1.04;
  }
  .modalHint {
    display: none;
  }
  .leadForm {
    gap: 8px;
  }
  .leadForm label > span {
    margin-bottom: 5px;
    font-size: 11px;
  }
  .leadForm input {
    height: 42px;
  }
  .leadForm textarea {
    height: 68px;
    min-height: 68px;
  }
  .leadForm .checkField {
    gap: 8px;
  }
  .leadForm .checkField span {
    font-size: 10.4px;
    line-height: 1.32;
  }
  .mobileOptionalField {
    display: none;
  }
}
@media (max-height: 820px) {
  .leadModal {
    max-height: calc(100vh - 24px);
    overflow-y: auto;
    padding: 18px;
  }
  .leadModal h2 {
    margin: 8px 44px 10px 0;
    padding-right: 40px;
    font-size: clamp(24px, 4vw, 30px);
    line-height: 1.04;
  }
  .modalHint {
    display: none;
  }
  .leadForm {
    gap: 8px;
  }
  .leadForm label > span {
    margin-bottom: 5px;
    font-size: 11px;
  }
  .leadForm input {
    height: 42px;
  }
  .leadForm textarea {
    height: 68px;
    min-height: 68px;
  }
  .leadForm .checkField span {
    font-size: 10.4px;
    line-height: 1.32;
  }
}
@media (max-width: 767px) {
  .modalLayer {
    align-items: center;
    padding: 12px;
  }
  .leadModal {
    width: 100%;
    max-height: calc(100dvh - 24px);
  }
  .leadForm .formButton {
    min-height: 46px;
  }
}
@media (max-width: 760px) {
  body {
    font-size: 15px;
  }
  .section {
    padding: 64px 0;
  }
  .siteHeader {
    background: rgba(5, 10, 9, 0.88);
  }
  .mobilePanel {
    background: rgba(5, 10, 9, 0.96);
  }
  .mobileNav a:not(.button) {
    color: rgba(255, 255, 255, 0.82);
    border-bottom-color: rgba(255, 255, 255, 0.08);
  }
  .menuButton {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
  }
  .eyebrow,
  .kicker {
    font-size: 10px;
    letter-spacing: 0.07em;
  }
  .eyebrow {
    padding: 8px 10px;
  }
  h1 {
    margin: 14px 0 12px;
    font-size: clamp(32px, 10vw, 42px);
    line-height: 1.03;
  }
  h2,
  .sectionHead h2,
  .catalogHeader h2,
  .portfolioHeader h2,
  .officeZonesHeader h2,
  .benefitsIntro h2,
  .requestText h2,
  .solutionSliderHeader h2,
  .seoIntro h2,
  .projectCta h2,
  .solutionCtaInner h2 {
    font-size: clamp(28px, 8.4vw, 36px);
    line-height: 1.06;
  }
  .sectionHead,
  .catalogHeader,
  .portfolioHeader,
  .officeZonesHeader,
  .solutionSliderHeader {
    gap: 14px;
    margin-bottom: 22px;
  }
  .sectionHead p,
  .catalogHeader p,
  .portfolioHeader p,
  .officeZonesHeader p,
  .solutionSliderHeader p,
  .benefitsIntro p,
  .requestText p,
  .projectCta p,
  .solutionCtaInner p,
  .seoTextBlock p {
    font-size: 14.5px;
    line-height: 1.5;
  }
  .button {
    min-height: 46px;
    padding-inline: 18px;
    font-size: 14px;
  }
  .hero {
    min-height: 680px;
  }
  .heroInner {
    min-height: 680px;
    padding: 78px 0 26px;
    gap: 20px;
  }
  .heroContent > p {
    max-width: 330px;
    font-size: 15px;
    line-height: 1.48;
  }
  .heroBenefits {
    gap: 8px;
    margin-bottom: 18px;
  }
  .heroBenefits span {
    padding: 10px 12px;
    font-size: 12.5px;
    line-height: 1.25;
  }
  .heroCard {
    display: none;
  }
  .catalogSection {
    padding: 60px 0;
  }
  .catalogCard,
  .catalogCard a {
    min-height: 300px;
  }
  .catalogCardTitle {
    left: 18px;
    right: 62px;
    bottom: 20px;
    font-size: 22px;
    line-height: 1.04;
  }
  .officeZonesSection {
    padding: 62px 0;
  }
  .officeZonesHeader h2 {
    max-width: 100%;
    margin-top: 12px;
    font-size: clamp(28px, 7.6vw, 34px);
    line-height: 1.08;
  }
  .officeZonesHeader p {
    max-width: 330px;
  }
  .solutionCard,
  .solutionCard a {
    min-height: 320px;
  }
  .solutionCardBody {
    left: 18px;
    right: 18px;
    bottom: 20px;
  }
  .solutionCardBody small {
    margin-bottom: 9px;
    font-size: 10px;
  }
  .solutionCardBody strong {
    max-width: 260px;
    margin-bottom: 0;
    font-size: 22px;
    line-height: 1.04;
  }
  .solutionCardBody > span {
    display: none;
  }
  .stepCard,
  .benefitCard {
    min-height: 230px;
    padding: 20px;
  }
  .stepIcon,
  .benefitCard svg {
    width: 40px;
    height: 40px;
    margin-bottom: 18px;
  }
  .stepCard h3,
  .benefitCard h3,
  .projectCard h3 {
    font-size: 18px;
    line-height: 1.18;
  }
  .stepCard p,
  .benefitCard p,
  .projectCard p {
    font-size: 14px;
    line-height: 1.45;
  }
  .portfolioShowcase {
    padding: 64px 0;
  }
  .portfolioHeader p,
  .portfolioSide {
    display: none;
  }
  .portfolioLayout {
    display: block;
  }
  .portfolioMainFrame {
    position: relative;
    touch-action: pan-y;
  }
  .portfolioMain a {
    min-height: 360px;
  }
  .portfolioMainText {
    left: 18px;
    right: 76px;
    bottom: 18px;
  }
  .portfolioMainText small,
  .portfolioMainText span {
    display: none;
  }
  .portfolioMainText strong {
    max-width: 250px;
    margin-bottom: 0;
    font-size: 22px;
    line-height: 1.05;
  }
  .portfolioMobileControls {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 4;
    display: flex;
    gap: 8px;
  }
  .portfolioMobileControls button {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: rgba(5, 12, 11, 0.58);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(14px);
  }
  .requestSection {
    padding-top: 64px;
  }
  .requestContacts {
    gap: 10px;
    margin-top: 22px;
    font-size: 14px;
  }
  .formCard {
    padding: 8px;
  }
  form {
    gap: 12px;
    padding: 18px;
  }
  label span {
    margin-bottom: 6px;
    font-size: 12px;
  }
  input {
    height: 46px;
    padding-inline: 13px;
  }
  textarea {
    min-height: 96px;
    padding: 12px 13px;
  }
  .footer {
    padding: 42px 0;
  }
  .footerGrid {
    gap: 18px;
  }
  .footerBrand p,
  .footerNav,
  .footerContacts,
  .socials {
    font-size: 13.5px;
    line-height: 1.45;
  }
  .footerBrand p {
    margin-top: 16px;
  }
  .catalogGrid,
  .solutionGrid,
  .caseGrid,
  .projectGrid,
  .timeline,
  .benefitGrid,
  .trustGrid,
  .masonryGallery,
  .projectPhotoGrid,
  .sliderThumbs,
  .portfolioThumbs {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 1px;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    mask-image:
      linear-gradient(
        90deg,
        #000 calc(100% - 42px),
        transparent);
  }
  .catalogGrid::-webkit-scrollbar,
  .solutionGrid::-webkit-scrollbar,
  .caseGrid::-webkit-scrollbar,
  .projectGrid::-webkit-scrollbar,
  .timeline::-webkit-scrollbar,
  .benefitGrid::-webkit-scrollbar,
  .trustGrid::-webkit-scrollbar,
  .masonryGallery::-webkit-scrollbar,
  .projectPhotoGrid::-webkit-scrollbar,
  .sliderThumbs::-webkit-scrollbar,
  .portfolioThumbs::-webkit-scrollbar {
    display: none;
  }
  .catalogCard,
  .solutionCard,
  .caseCard,
  .caseCard.is-featured,
  .projectCard,
  .stepCard,
  .benefitCard,
  .trustItem,
  .galleryItemWrap {
    flex: 0 0 min(82vw, 360px);
    scroll-snap-align: start;
  }
  .catalogCard,
  .catalogCard a {
    min-height: 360px;
  }
  .solutionCard,
  .solutionCard a {
    min-height: 390px;
  }
  .caseCard,
  .caseCard.is-featured,
  .caseCard a,
  .projectCard {
    min-height: 390px;
  }
  .projectCard {
    display: grid;
    grid-template-rows: 210px auto;
  }
  .projectCard > img {
    height: 210px;
  }
  .projectBody {
    min-height: 220px;
  }
  .timeline {
    position: relative;
  }
  .stepCard,
  .benefitCard {
    min-height: 270px;
  }
  .trustItem {
    min-height: 132px;
  }
  .portfolioLayout {
    display: grid;
    grid-template-columns: 1fr;
  }
  .projectSliderStage {
    height: min(72vh, 520px);
  }
  .projectGalleryControls {
    right: 14px;
    top: 14px;
  }
  .portfolioThumbs {
    padding-bottom: 2px;
  }
  .portfolioThumbs button {
    flex: 0 0 min(74vw, 292px);
    scroll-snap-align: start;
  }
  .portfolioFacts {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    mask-image:
      linear-gradient(
        90deg,
        #000 calc(100% - 42px),
        transparent);
  }
  .portfolioFacts::-webkit-scrollbar {
    display: none;
  }
  .portfolioFacts span {
    flex: 0 0 min(76vw, 280px);
    scroll-snap-align: start;
  }
  .masonryGallery {
    column-count: initial;
    align-items: stretch;
  }
  .projectPhotoGrid {
    grid-template-columns: none;
    align-items: stretch;
  }
  .galleryItemWrap {
    display: block;
    width: auto;
    margin: 0;
  }
  .galleryItem {
    height: 420px;
  }
  .projectPhotoGrid .galleryItem {
    height: 420px;
    aspect-ratio: auto;
  }
  .galleryItem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .sliderThumbs {
    grid-template-columns: none;
  }
  .sliderThumbs button {
    flex: 0 0 118px;
    height: 82px;
    scroll-snap-align: start;
  }
  .sliderDots {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    mask-image:
      linear-gradient(
        90deg,
        #000 calc(100% - 32px),
        transparent);
  }
  .sliderDots::-webkit-scrollbar {
    display: none;
  }
  .sliderDots button {
    flex: 0 0 26px;
  }
  .sliderDots button.is-active {
    flex-basis: 42px;
  }
  .officeZonesSection,
  .catalogSection,
  .portfolioShowcase,
  .projectGallerySection,
  .solutionSliderSection {
    overflow: hidden;
  }
  .catalogGrid,
  .solutionGrid,
  .caseGrid,
  .projectGrid,
  .timeline,
  .benefitGrid,
  .trustGrid,
  .masonryGallery,
  .projectPhotoGrid,
  .sliderThumbs,
  .portfolioThumbs,
  .portfolioFacts {
    padding-bottom: 6px;
  }
}
@media (max-width: 760px) {
  h1 {
    font-size: clamp(32px, 10vw, 42px);
    line-height: 1.03;
  }
  h2,
  .sectionHead h2,
  .catalogHeader h2,
  .portfolioHeader h2,
  .officeZonesHeader h2,
  .benefitsIntro h2,
  .requestText h2,
  .solutionSliderHeader h2,
  .seoIntro h2 {
    font-size: clamp(28px, 8.4vw, 36px);
    line-height: 1.06;
  }
  .hero,
  .heroInner {
    min-height: 680px;
  }
  .heroInner {
    padding: 78px 0 26px;
  }
  .heroContent > p,
  .sectionHead p,
  .catalogHeader p,
  .portfolioHeader p,
  .officeZonesHeader p,
  .solutionSliderHeader p,
  .benefitsIntro p,
  .requestText p {
    font-size: 14.5px;
    line-height: 1.5;
  }
  .benefitsIntro h2 {
    font-size: clamp(27px, 7.5vw, 34px);
  }
  .turnkey .sectionHead h2 {
    font-size: clamp(27px, 7.4vw, 34px);
  }
  .processFacts {
    flex-wrap: nowrap;
    gap: 8px;
    margin: -18px 0 22px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    mask-image:
      linear-gradient(
        90deg,
        #000 calc(100% - 34px),
        transparent);
  }
  .processFacts::-webkit-scrollbar {
    display: none;
  }
  .processFacts span {
    flex: 0 0 auto;
    scroll-snap-align: start;
    min-height: 34px;
    padding: 8px 11px;
    font-size: 12px;
    white-space: nowrap;
  }
  .benefitsIntro .button {
    margin-top: 24px;
  }
  .catalogSeoText {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .leadModal {
    max-height: 90vh;
    overflow-y: auto;
    padding: 18px;
  }
  .leadModal h2 {
    margin-bottom: 12px;
    font-size: 28px;
  }
  .modalLayer {
    align-items: start;
    padding: 12px;
  }
  .leadForm {
    gap: 10px;
  }
  .leadForm input {
    height: 44px;
  }
  .leadForm textarea {
    height: 76px;
    min-height: 76px;
  }
  .leadForm .checkField span {
    font-size: 10.8px;
  }
  .floatingActions {
    right: 14px;
    bottom: 14px;
    grid-template-columns: repeat(3, 44px);
  }
  .floatingActions button {
    width: 44px;
    height: 44px;
  }
  .faqReviewsGrid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .faqColumn > p,
  .reviewsColumn > p {
    font-size: 14.5px;
  }
  .reviewsList {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    mask-image:
      linear-gradient(
        90deg,
        #000 calc(100% - 42px),
        transparent);
  }
  .reviewsList::-webkit-scrollbar {
    display: none;
  }
  .reviewCard {
    flex: 0 0 min(82vw, 360px);
    scroll-snap-align: start;
  }
  .catalogCard,
  .catalogCard a,
  .solutionCard,
  .solutionCard a {
    min-height: 320px;
  }
  .catalogCardTitle {
    font-size: 22px;
    line-height: 1.04;
  }
  .officeZonesSection {
    padding: 62px 0;
  }
  .officeZonesHeader {
    gap: 14px;
    margin-bottom: 22px;
  }
  .officeZonesHeader h2 {
    max-width: 100%;
    margin-top: 12px;
    font-size: clamp(28px, 7.6vw, 34px);
    line-height: 1.08;
  }
  .officeZonesHeader p {
    max-width: 330px;
  }
  .solutionCardBody small {
    margin-bottom: 9px;
    font-size: 10px;
  }
  .solutionCardBody strong {
    max-width: 260px;
    margin-bottom: 0;
    font-size: 22px;
    line-height: 1.04;
  }
  .solutionCardBody > span {
    display: none;
  }
  .stepCard,
  .benefitCard {
    min-height: 230px;
  }
  .stepCard h3,
  .benefitCard h3,
  .projectCard h3 {
    font-size: 18px;
  }
  .stepCard p,
  .benefitCard p,
  .projectCard p {
    font-size: 14px;
    line-height: 1.45;
  }
  .portfolioHeader p,
  .portfolioSide {
    display: none;
  }
  .portfolioLayout {
    display: block;
  }
  .portfolioMain a {
    min-height: 360px;
  }
  .portfolioMainText {
    left: 18px;
    right: 76px;
    bottom: 18px;
  }
  .portfolioMainText small,
  .portfolioMainText span {
    display: none;
  }
  .portfolioMainText strong {
    max-width: 250px;
    margin-bottom: 0;
    font-size: 22px;
    line-height: 1.05;
  }
  .portfolioMobileControls {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 4;
    display: flex;
    gap: 8px;
  }
  .portfolioMobileControls button {
    width: 42px;
    height: 42px;
  }
  .formCard {
    padding: 8px;
  }
  form {
    gap: 12px;
    padding: 18px;
  }
  input {
    height: 46px;
  }
  textarea {
    min-height: 96px;
  }
}
@media (min-width: 761px) {
  .trustGrid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
@media (max-width: 1120px) and (min-width: 761px) {
  .trustGrid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
  }
  .trustItem {
    min-height: 104px;
    padding: 18px 14px;
  }
  .trustItem strong {
    font-size: clamp(22px, 2.7vw, 31px);
  }
  .trustItem span {
    font-size: 13px;
  }
}
@media (max-width: 760px) {
  .logoImageWrap {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }
  .trustGrid {
    display: flex;
    align-items: stretch;
  }
  .trustItem {
    display: grid;
    min-height: 112px;
    align-content: center;
  }
  .solutionCardBody {
    min-height: 84px;
    grid-template-rows: 16px minmax(46px, auto);
  }
  .solutionCardBody small,
  .solutionCardBody strong {
    width: 100%;
  }
  .solutionCardBody strong {
    align-items: end;
  }
  .container {
    width: min(100% - 32px, 1180px);
  }
  .breadcrumbs {
    max-width: 100%;
    overflow-x: auto;
    white-space: nowrap;
  }
  .solutionHero,
  .solutionHeroInner {
    min-height: 620px;
  }
  .solutionHeroInner {
    padding-top: 96px;
    padding-bottom: 44px;
  }
  .solutionHero h1,
  .projectHero h1,
  .innerHero h1 {
    max-width: 100%;
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }
  .solutionHero p,
  .projectHero p,
  .innerHeroText p {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.5;
    overflow-wrap: anywhere;
  }
  .solutionHero .button,
  .projectCta .button,
  .companyActions .button {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }
  .projectHeroContent,
  .solutionHeroInner,
  .innerHeroText,
  .faqColumn,
  .reviewsColumn {
    min-width: 0;
  }
  .projectFacts {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .projectFacts span {
    width: 100%;
    min-width: 0;
  }
  .faqReviewsSection {
    overflow: hidden;
  }
  .faqList,
  .faqItem,
  .faqItem button,
  .faqAnswer,
  .reviewCard {
    max-width: 100%;
    min-width: 0;
  }
  .faqItem button {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    text-align: left;
  }
  .faqItem button span,
  .faqAnswer p {
    overflow-wrap: anywhere;
  }
  .brandStripSection {
    padding: 58px 0;
  }
  .brandStripHeader,
  .companyLayout {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .brandStripHeader h2,
  .companyIntro h2 {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.06;
  }
  .brandLogoRail {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    mask-image:
      linear-gradient(
        90deg,
        #000 calc(100% - 42px),
        transparent);
  }
  .brandLogoRail::-webkit-scrollbar {
    display: none;
  }
  .brandLogoCard {
    flex: 0 0 min(58vw, 210px);
    min-height: 88px;
    scroll-snap-align: start;
  }
  .companySectionPage {
    padding-top: 96px;
  }
  .companyIntro {
    position: static;
  }
  .companyCards {
    grid-template-columns: 1fr;
  }
  .companyCard,
  .mapCard {
    width: 100%;
    min-width: 0;
  }
  .mapCard {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .mapCard a {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .trustItem strong,
  .innerHeroStats strong {
    animation: none !important;
    background: none !important;
    -webkit-background-clip: border-box !important;
    background-clip: border-box !important;
    color: var(--mint) !important;
    text-shadow: none !important;
  }
  .brandMarqueeTrack {
    animation: none !important;
  }
}
@media (max-width: 760px) {
  .companyPageHeroInner {
    min-height: 500px;
    padding-top: 96px;
    padding-bottom: 46px;
  }
  .compactPageHero .companyPageHeroInner {
    min-height: 360px;
  }
  .companyPageHero h1,
  .contactsPageHero h1,
  .compactPageHero h1 {
    max-width: 100%;
    margin-bottom: 22px;
    font-size: clamp(38px, 11vw, 52px);
    line-height: 1.02;
  }
  .companyPageHero p {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.55;
  }
  .aboutContentGrid,
  .aboutInfoGrid,
  .contactDetailsGrid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .aboutStoryCard,
  .aboutApproachCard,
  .aboutListCard,
  .contactPrimaryCard,
  .contactRequisitesCard {
    padding: 20px;
  }
  .aboutStoryCard p,
  .aboutApproachCard p {
    font-size: 14.5px;
    line-height: 1.6;
  }
  .aboutApproachCard h2,
  .contactPrimaryCard h2 {
    font-size: clamp(26px, 7.8vw, 34px);
  }
  .aboutListCard li,
  .contactLine p,
  .contactLine a,
  .contactLine span,
  .contactRequisitesCard dd {
    font-size: 14px;
  }
  .companyIntro h2 {
    max-width: 100%;
    margin-bottom: 22px;
    font-size: clamp(34px, 9.6vw, 48px);
    line-height: 1.02;
  }
  .brandLogoRail {
    display: block;
    width: min(100% - 32px, 1180px);
    overflow: hidden;
    scroll-snap-type: none;
    mask-image:
      linear-gradient(
        90deg,
        transparent,
        #000 12%,
        #000 88%,
        transparent);
  }
  .brandMarqueeTrack {
    gap: 10px;
    animation-duration: 28s;
  }
  .brandLogoCard {
    width: 138px;
    min-height: 70px;
    padding: 14px;
    scroll-snap-align: none;
  }
  .brandLogoCard img {
    max-height: 34px;
  }
  .brandTrustText {
    font-size: 12px;
  }
  .portfolioSide {
    display: block;
    margin-top: 14px;
  }
  .portfolioSide .portfolioFacts,
  .portfolioSide .portfolioThumbs {
    display: none;
  }
  .portfolioAllButton {
    width: 100%;
  }
}
.brandStripSection {
  isolation: isolate;
  padding: 106px 0 94px;
  background:
    radial-gradient(
      circle at 50% -18%,
      rgba(110, 211, 177, 0.2),
      transparent 34%),
    radial-gradient(
      circle at 12% 42%,
      rgba(15, 111, 92, 0.2),
      transparent 30%),
    radial-gradient(
      circle at 88% 62%,
      rgba(110, 211, 177, 0.12),
      transparent 32%),
    linear-gradient(
      180deg,
      #020706 0%,
      #061411 48%,
      #020706 100%);
}
.brandStripSection::before,
.brandStripSection::after {
  content: "";
  position: absolute;
  left: 50%;
  z-index: 0;
  width: min(1280px, calc(100% - 80px));
  height: 1px;
  pointer-events: none;
  transform: translateX(-50%);
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(110, 211, 177, 0.18) 10%,
      rgba(110, 211, 177, 0.92) 50%,
      rgba(110, 211, 177, 0.18) 90%,
      transparent);
  box-shadow: 0 0 18px rgba(110, 211, 177, 0.34), 0 0 46px rgba(15, 111, 92, 0.22);
  opacity: 0.78;
}
.brandStripSection::before {
  top: 54%;
}
.brandStripSection::after {
  top: calc(54% + 116px);
  opacity: 0.5;
}
.brandStripHeader,
.brandLogoRail,
.brandTrustText {
  position: relative;
  z-index: 1;
}
.brandStripHeader {
  margin-bottom: 46px;
}
.brandStripHeader .kicker {
  color: #00a58c;
  text-shadow: 0 0 22px rgba(110, 211, 177, 0.22);
}
.brandStripHeader h2 {
  max-width: 840px;
  color: #fff;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.08), 0 22px 80px rgba(110, 211, 177, 0.14);
}
.brandStripHeader p {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.72;
}
.brandLogoRail {
  width: min(1280px, calc(100% - 72px));
  padding: 20px 0;
  overflow: hidden;
  mask-image:
    linear-gradient(
      90deg,
      transparent,
      #000 8%,
      #000 92%,
      transparent);
}
.brandLogoRail::before,
.brandLogoRail::after {
  top: 50%;
  width: 22%;
  height: 2px;
  background:
    radial-gradient(
      circle,
      #dffff7 0%,
      rgba(110, 211, 177, 0.85) 18%,
      rgba(110, 211, 177, 0.16) 48%,
      transparent 72%);
  filter: blur(0.2px);
  opacity: 0.78;
}
.brandLogoRail::before {
  left: 8%;
}
.brandLogoRail::after {
  right: 6%;
}
.brandMarqueeTrack {
  gap: 0;
  animation: brandMarquee 34s linear infinite;
  transform: translateZ(0);
}
.brandLogoCard {
  width: 182px;
  min-height: 78px;
  margin-right: 16px;
  padding: 16px 22px;
  border: 1px solid rgba(110, 211, 177, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.025)),
    radial-gradient(
      circle at 50% 0%,
      rgba(110, 211, 177, 0.14),
      transparent 64%),
    rgba(2, 12, 10, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(110, 211, 177, 0.08),
    0 0 22px rgba(110, 211, 177, 0.09),
    0 18px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}
.brandLogoCard:hover {
  transform: translateY(-3px);
  border-color: rgba(110, 211, 177, 0.62);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.12),
      rgba(255, 255, 255, 0.035)),
    radial-gradient(
      circle at 50% 0%,
      rgba(110, 211, 177, 0.24),
      transparent 62%),
    rgba(4, 22, 18, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 28px rgba(110, 211, 177, 0.2),
    0 22px 60px rgba(0, 0, 0, 0.36);
}
.brandLogoCard img {
  max-height: 46px;
  filter: saturate(1.15) brightness(1.12) contrast(1.05) drop-shadow(0 0 10px rgba(110, 211, 177, 0.12));
  opacity: 0.92;
  mix-blend-mode: normal;
}
.brandLogoCard:hover img {
  filter: saturate(1.25) brightness(1.18) contrast(1.08) drop-shadow(0 0 16px rgba(110, 211, 177, 0.28));
  opacity: 1;
}
.brandTrustText {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  font-weight: 720;
  letter-spacing: 0;
}
.brandTrustText svg {
  color: var(--mint);
  filter: drop-shadow(0 0 12px rgba(110, 211, 177, 0.32));
}
@media (max-width: 760px) {
  .brandStripSection {
    padding: 72px 0 68px;
  }
  .brandStripSection::before {
    top: 58%;
  }
  .brandStripSection::after {
    top: calc(58% + 94px);
  }
  .brandStripHeader {
    gap: 18px;
    margin-bottom: 30px;
  }
  .brandStripHeader h2 {
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.02;
  }
  .brandStripHeader p {
    max-width: 100%;
    font-size: 14.5px;
    line-height: 1.6;
  }
  .brandLogoRail {
    width: min(100% - 24px, 1180px);
    padding: 15px 0;
  }
  .brandMarqueeTrack {
    animation-duration: 26s;
  }
  .brandLogoCard {
    width: 136px;
    min-height: 66px;
    margin-right: 10px;
    padding: 12px 15px;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.07),
      0 0 16px rgba(110, 211, 177, 0.08),
      0 14px 34px rgba(0, 0, 0, 0.24);
  }
  .brandLogoCard img {
    max-height: 34px;
    opacity: 0.9;
  }
  .brandTrustText {
    justify-content: flex-start;
    gap: 10px;
    margin-top: 18px;
    font-size: 12.5px;
    line-height: 1.45;
  }
}
@media (max-width: 1120px) {
  .mobilePanel {
    background:
      radial-gradient(
        circle at 22% 0%,
        rgba(110, 211, 177, 0.14),
        transparent 34%),
      rgba(3, 10, 9, 0.96);
    border-top: 1px solid rgba(110, 211, 177, 0.16);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(20px);
  }
  .mobileMenuHead {
    display: flex;
    align-items: center;
    padding-top: 16px;
  }
  .mobileMenuLogo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    font-weight: 860;
    letter-spacing: 0;
    text-decoration: none;
  }
  .mobileMenuLogo .logoImageWrap {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
  }
  .mobileNav {
    padding-top: 14px;
    padding-bottom: 20px;
  }
  .mobileNav a:not(.button) {
    color: rgba(255, 255, 255, 0.8);
    border-bottom-color: rgba(255, 255, 255, 0.09);
  }
  .mobileNav a:not(.button):hover {
    color: #fff;
    background: rgba(110, 211, 177, 0.08);
  }
}
@media (max-width: 760px) {
  html,
  body,
  #root {
    max-width: 100%;
    overflow-x: clip;
  }
  .projectHero,
  .projectHeroContent,
  .projectHeroContent > .reveal {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  .projectHero {
    min-height: auto;
  }
  .projectHeroContent {
    min-height: 0;
    align-items: flex-end;
    padding-top: 96px;
    padding-bottom: 42px;
  }
  .projectHero .breadcrumbs {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scrollbar-width: none;
    padding-bottom: 5px;
    mask-image:
      linear-gradient(
        90deg,
        #000 0%,
        #000 calc(100% - 34px),
        transparent 100%);
  }
  .projectHero .breadcrumbs::-webkit-scrollbar {
    display: none;
  }
  .projectHero .breadcrumbs > span {
    flex: 0 0 auto;
    max-width: min(76vw, 360px);
  }
  .projectHero .breadcrumbs > span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .projectHero h1 {
    width: 100%;
    max-width: 100%;
    margin: 14px 0 14px;
    font-size: clamp(28px, 8.8vw, 38px);
    line-height: 1.02;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
  }
  .projectHero p {
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
    line-height: 1.5;
    font-size: 14.5px;
  }
  .projectFacts {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    gap: 10px;
    margin-top: 22px;
  }
  .projectFacts span {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 14px 15px;
  }
  .projectFacts strong {
    font-size: 20px;
    overflow-wrap: anywhere;
  }
}
@media (max-width: 430px) {
  .projectHeroContent {
    padding-top: 88px;
    padding-bottom: 36px;
  }
  .projectHero h1 {
    font-size: clamp(27px, 8.4vw, 36px);
    line-height: 1.03;
  }
  .projectHero p {
    font-size: 14px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .brandLogoRail:hover .brandMarqueeTrack {
    animation-play-state: paused;
  }
}
@media (hover: none), (pointer: coarse) {
  .brandLogoRail:hover .brandMarqueeTrack,
  .brandLogoRail:focus-within .brandMarqueeTrack,
  .brandMarqueeTrack,
  .brandLogoCard {
    animation-play-state: running !important;
  }
  .brandLogoCard:hover {
    transform: none;
    border-color: rgba(110, 211, 177, 0.24);
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.075),
        rgba(255, 255, 255, 0.025)),
      radial-gradient(
        circle at 50% 0%,
        rgba(110, 211, 177, 0.14),
        transparent 64%),
      rgba(2, 12, 10, 0.72);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      inset 0 -1px 0 rgba(110, 211, 177, 0.08),
      0 0 22px rgba(110, 211, 177, 0.09),
      0 18px 48px rgba(0, 0, 0, 0.28);
  }
  .brandLogoCard:hover img {
    filter: saturate(1.15) brightness(1.12) contrast(1.05) drop-shadow(0 0 10px rgba(110, 211, 177, 0.12));
    opacity: 0.92;
  }
  .brandLogoCard:active,
  .brandLogoCard:focus,
  .brandLogoCard:focus-visible {
    outline: none;
    transform: none;
  }
}
.brandLogoCard {
  position: relative;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.018)),
    radial-gradient(
      circle at 50% 0%,
      rgba(110, 211, 177, 0.12),
      transparent 64%),
    rgba(2, 10, 9, 0.68);
  border-color: rgba(110, 211, 177, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 -1px 0 rgba(110, 211, 177, 0.07),
    0 0 18px rgba(110, 211, 177, 0.075),
    0 18px 46px rgba(0, 0, 0, 0.28);
}
.brandLogoCard::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(110, 211, 177, 0.14),
      transparent 58%);
  filter: blur(16px);
  opacity: 0.45;
  pointer-events: none;
}
.brandLogoCard img {
  max-width: 88%;
  max-height: 46px;
  opacity: 0.9;
  filter: saturate(1.08) brightness(1.08) contrast(1.04) drop-shadow(0 0 12px rgba(110, 211, 177, 0.13));
}
.brandLogoCard:hover {
  border-color: rgba(110, 211, 177, 0.5);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.025)),
    radial-gradient(
      circle at 50% 0%,
      rgba(110, 211, 177, 0.2),
      transparent 62%),
    rgba(3, 18, 15, 0.8);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(110, 211, 177, 0.13),
    0 0 30px rgba(110, 211, 177, 0.18),
    0 24px 64px rgba(0, 0, 0, 0.36);
}
.brandLogoCard:hover img {
  opacity: 1;
  filter: saturate(1.18) brightness(1.16) contrast(1.06) drop-shadow(0 0 18px rgba(110, 211, 177, 0.24));
}
@media (max-width: 760px) {
  .brandLogoCard img {
    max-height: 34px;
    opacity: 0.92;
  }
}
@media (hover: none), (pointer: coarse) {
  .brandLogoCard:hover {
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.045),
        rgba(255, 255, 255, 0.018)),
      radial-gradient(
        circle at 50% 0%,
        rgba(110, 211, 177, 0.12),
        transparent 64%),
      rgba(2, 10, 9, 0.68);
    border-color: rgba(110, 211, 177, 0.18);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      inset 0 -1px 0 rgba(110, 211, 177, 0.07),
      0 0 18px rgba(110, 211, 177, 0.075),
      0 18px 46px rgba(0, 0, 0, 0.28);
  }
  .brandLogoCard:hover img {
    opacity: 0.92;
    filter: saturate(1.08) brightness(1.08) contrast(1.04) drop-shadow(0 0 12px rgba(110, 211, 177, 0.13));
  }
}
.breadcrumbs {
  min-width: 0;
}
.breadcrumbsItem {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 9px;
}
.breadcrumbsItem:not(:last-child) {
  flex: 0 0 auto;
}
.breadcrumbsCurrent {
  flex: 1 1 auto;
  overflow: hidden;
}
.breadcrumbsLabel {
  display: block;
  min-width: 0;
  max-width: 100%;
}
.breadcrumbsCurrent .breadcrumbsLabel {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 760px) {
  .projectHero .breadcrumbs {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    mask-image: none;
  }
  .projectHero .breadcrumbsItem {
    min-width: 0;
    max-width: 100%;
  }
  .projectHero .breadcrumbsItem:not(:last-child) {
    flex: 0 0 auto;
  }
  .projectHero .breadcrumbsCurrent {
    flex: 1 1 auto;
    overflow: hidden;
  }
  .projectHero .breadcrumbsCurrent .breadcrumbsLabel {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .projectHero .projectFacts {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
  }
  .projectHero .projectFacts span {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .brandMarqueeTrack {
    animation-duration: 65s;
  }
}
@media (max-width: 430px) {
  .brandMarqueeTrack {
    animation-duration: 68s;
  }
}
:root {
  --type-h1-desktop: clamp(64px, 6vw, 84px);
  --type-h1-mobile: clamp(42px, 11vw, 54px);
  --type-h2-desktop: clamp(42px, 4.6vw, 56px);
  --type-h2-mobile: clamp(32px, 8.8vw, 40px);
  --text-body: clamp(16px, 1.35vw, 18px);
  --glass-border: rgba(110, 211, 177, 0.18);
  --glass-border-hover: rgba(110, 211, 177, 0.38);
  --glass-bg: rgba(255, 255, 255, 0.045);
  --premium-heading-shadow: 0 1px 0 rgba(255, 255, 255, 0.06), 0 18px 70px rgba(110, 211, 177, 0.12);
}
main,
section,
.container,
.reveal,
.heroContent,
.innerHeroText,
.companyPageHeroInner,
.solutionHeroInner,
.projectHeroContent {
  min-width: 0;
}
h1,
h2,
h3,
p,
li,
dt,
dd,
span,
strong {
  overflow-wrap: break-word;
}
.hero h1,
.innerHeroText h1,
.companyPageHero h1,
.solutionHero h1,
.projectHero h1 {
  max-width: 920px;
  font-size: var(--type-h1-desktop);
  line-height: 0.98;
  text-shadow: var(--premium-heading-shadow);
}
.sectionHead h2,
.turnkeyHeader h2,
.benefitsIntro h2,
.portfolioHeader h2,
.brandStripHeader h2,
.requestText h2,
.homeSeoCard h2,
.faqColumn h2,
.reviewsColumn h2,
.companyIntro h2,
.aboutApproachCard h2,
.contactPrimaryCard h2,
.projectCta h2 {
  max-width: 900px;
  font-size: var(--type-h2-desktop);
  line-height: 1.02;
  text-shadow: var(--premium-heading-shadow);
}
.sectionHead p,
.innerHeroText p,
.companyPageHero p,
.solutionHero p,
.projectHero p,
.benefitsIntro p,
.requestText p,
.homeSeoCard p,
.companyIntro p {
  font-size: var(--text-body);
  line-height: 1.62;
}
.premium-heading {
  position: relative;
  isolation: isolate;
  color: #fff;
  background:
    linear-gradient(
      110deg,
      #ffffff 0%,
      #ffffff 39%,
      #eafff8 47%,
      #ffffff 55%,
      #ffffff 100%);
  background-size: 230% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.18),
    0 0 24px rgba(110, 211, 177, 0.16),
    0 18px 70px rgba(110, 211, 177, 0.1);
  animation: premiumTextShine 8.5s ease-in-out infinite;
}
.premium-heading::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(
      110deg,
      transparent 0%,
      transparent 44%,
      rgba(110, 211, 177, 0.24) 50%,
      transparent 58%,
      transparent 100%);
  filter: blur(18px);
  opacity: 0.42;
  transform: translateX(-42%);
  animation: premiumHeadingGlow 8.5s ease-in-out infinite;
}
.premium-number {
  background:
    linear-gradient(
      110deg,
      #effff9 0%,
      var(--mint) 45%,
      #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.14),
    0 0 20px rgba(110, 211, 177, 0.22),
    0 18px 50px rgba(15, 111, 92, 0.16);
}
@keyframes premiumTextShine {
  0%, 64% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 180% 50%;
  }
}
@keyframes premiumHeadingGlow {
  0%, 64% {
    opacity: 0.18;
    transform: translateX(-42%);
  }
  100% {
    opacity: 0.5;
    transform: translateX(42%);
  }
}
.button {
  min-height: 52px;
  border-radius: var(--radius);
  white-space: nowrap;
}
.button svg {
  flex: 0 0 auto;
}
.categoryCard button {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  color: inherit;
  text-align: left;
  box-shadow: var(--shadow-soft);
  background: #0e1715;
  isolation: isolate;
  cursor: pointer;
}
.categoryCard button:focus-visible,
.button:focus-visible,
.mobileNav a:focus-visible,
.breadcrumbs a:focus-visible {
  outline: 2px solid rgba(110, 211, 177, 0.72);
  outline-offset: 3px;
}
.categoryCard:hover button {
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.28), 0 0 34px rgba(110, 211, 177, 0.12);
}
.trustItem,
.processCard,
.benefitCard,
.caseCard,
.formCard,
.leadModal,
.faqItem,
.reviewCard,
.aboutStoryCard,
.aboutApproachCard,
.aboutListCard,
.contactPrimaryCard,
.contactRequisitesCard,
.mapCard,
.projectFacts span,
.innerHeroStats,
.brandLogoCard {
  border-color: var(--glass-border);
}
.trustItem:hover,
.processCard:hover,
.benefitCard:hover,
.caseCard:hover,
.faqItem:hover,
.reviewCard:hover,
.brandLogoCard:hover {
  border-color: var(--glass-border-hover);
}
@media (max-width: 760px) {
  .hero h1,
  .innerHeroText h1,
  .companyPageHero h1,
  .solutionHero h1,
  .projectHero h1 {
    max-width: 100%;
    font-size: var(--type-h1-mobile);
    line-height: 1.04;
  }
  .sectionHead h2,
  .turnkeyHeader h2,
  .benefitsIntro h2,
  .portfolioHeader h2,
  .brandStripHeader h2,
  .requestText h2,
  .homeSeoCard h2,
  .faqColumn h2,
  .reviewsColumn h2,
  .companyIntro h2,
  .aboutApproachCard h2,
  .contactPrimaryCard h2,
  .projectCta h2 {
    max-width: 100%;
    font-size: var(--type-h2-mobile);
    line-height: 1.06;
  }
  .sectionHead p,
  .innerHeroText p,
  .companyPageHero p,
  .solutionHero p,
  .projectHero p,
  .benefitsIntro p,
  .requestText p,
  .homeSeoCard p,
  .companyIntro p {
    font-size: 15px;
    line-height: 1.58;
  }
  .button {
    width: 100%;
    min-height: 48px;
    white-space: normal;
    text-align: center;
  }
  .companyActions,
  .heroCtas {
    width: 100%;
  }
  .categoryCard,
  .categoryCard a,
  .categoryCard button {
    min-height: 300px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .premium-heading {
    animation: none;
  }
  .premium-heading::after {
    display: none;
  }
}
@media (max-width: 760px) {
  .projectHero h1 {
    font-size: clamp(27px, 8.4vw, 36px);
    line-height: 1.03;
  }
}
.formSuccessPanel {
  display: grid;
  gap: 12px;
  justify-items: start;
  padding: 18px;
  border: 1px solid rgba(110, 211, 177, 0.24);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.84);
  background:
    radial-gradient(
      circle at 12% 0%,
      rgba(110, 211, 177, 0.14),
      transparent 48%),
    rgba(255, 255, 255, 0.045);
}
form:not(.leadForm) .formSuccessPanel {
  color: var(--graphite);
  background: rgba(15, 111, 92, 0.06);
}
.formSuccessIcon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background:
    linear-gradient(
      135deg,
      var(--emerald),
      var(--mint));
  box-shadow: 0 0 28px rgba(110, 211, 177, 0.22);
}
.formSuccessPanel strong {
  color: inherit;
  font-size: 21px;
  line-height: 1.1;
}
.formSuccessPanel p {
  margin: 0;
  color: currentColor;
  opacity: 0.82;
  line-height: 1.5;
}
.formSuccessPanel .button:disabled {
  opacity: 0.86;
  cursor: default;
}
.formCloseButton {
  min-height: 44px;
}
.backPill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  margin: 0 0 18px;
  padding: 0 14px;
  border: 1px solid rgba(110, 211, 177, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 820;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}
.backPill:hover {
  transform: translateY(-1px);
  border-color: rgba(110, 211, 177, 0.48);
  background: rgba(110, 211, 177, 0.12);
}
@keyframes premiumBackButtonShine {
  0%, 68% {
    transform: translateX(-125%);
  }
  100% {
    transform: translateX(125%);
  }
}
.backPill,
.projectHero .backLink,
.solutionHero .backLink {
  position: relative;
  isolation: isolate;
  min-height: 46px;
  margin: 0 0 22px;
  padding: 0 18px;
  overflow: hidden;
  border: 1px solid rgba(110, 211, 177, 0.48);
  border-radius: 14px;
  color: #fff;
  background:
    linear-gradient(
      135deg,
      #0f6f5c,
      #168b73 58%,
      #0b4f43),
    rgba(15, 111, 92, 0.92);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.055) inset,
    0 0 28px rgba(110, 211, 177, 0.2),
    0 16px 42px rgba(0, 0, 0, 0.28);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}
.backPill::after,
.projectHero .backLink::after,
.solutionHero .backLink::after {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(
      110deg,
      transparent 0%,
      transparent 38%,
      rgba(255, 255, 255, 0.26) 50%,
      transparent 62%,
      transparent 100%);
  transform: translateX(-125%);
  animation: premiumBackButtonShine 5.8s ease-in-out infinite;
}
.backPill svg,
.projectHero .backLink svg,
.solutionHero .backLink svg {
  flex: 0 0 auto;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.22));
}
.backPill:hover,
.projectHero .backLink:hover,
.solutionHero .backLink:hover {
  transform: translateY(-2px);
  border-color: rgba(110, 211, 177, 0.7);
  background:
    linear-gradient(
      135deg,
      #12806a,
      #1b9b80 58%,
      #0f6f5c),
    rgba(15, 111, 92, 0.96);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 0 34px rgba(110, 211, 177, 0.28),
    0 20px 54px rgba(0, 0, 0, 0.34);
  filter: saturate(1.04);
}
.portfolioAllHint {
  margin: -2px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.45;
}
.projectCountBadge {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  padding: 9px 13px;
  border: 1px solid rgba(110, 211, 177, 0.26);
  border-radius: 999px;
  color: var(--mint);
  background: rgba(110, 211, 177, 0.08);
  font-size: 13px;
  font-weight: 850;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .footerGrid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 34px;
  }
  .footerBrand {
    max-width: 420px;
  }
  .footerLegal {
    grid-column: 1 / -1;
  }
}
@media (max-width: 767px) {
  .mobileOptionalField {
    display: none;
  }
  .leadModal {
    max-height: calc(100vh - 24px);
    padding: 16px;
  }
  .leadModal h2 {
    padding-right: 40px;
    font-size: 24px;
    line-height: 1.04;
  }
  .leadForm {
    gap: 8px;
  }
  .leadForm input {
    height: 42px;
  }
  .leadForm textarea {
    height: 70px;
    min-height: 70px;
  }
  .leadForm .checkField {
    gap: 8px;
  }
  .leadForm .checkField span {
    font-size: 10.4px;
    line-height: 1.32;
  }
  .formSuccessPanel {
    padding: 15px;
  }
  .formSuccessPanel strong {
    font-size: 19px;
  }
  .floatingActions {
    right: 14px;
    bottom: 20px;
    z-index: 41;
    gap: 8px;
  }
  .floatingActions button {
    width: 46px;
    height: 46px;
    background: rgba(4, 15, 13, 0.9);
  }
  .cookieNotice {
    bottom: 82px;
  }
  .footerGrid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .footerLegal {
    grid-column: auto;
  }
  .backPill {
    width: fit-content;
    max-width: 100%;
    min-height: 46px;
    margin-bottom: 18px;
    padding-inline: 16px;
    white-space: nowrap;
    font-size: 13.5px;
  }
  .portfolioAllHint {
    display: block;
    margin: 10px 0 0;
  }
  .catalogGrid,
  .solutionGrid,
  .caseGrid,
  .projectGrid,
  .timeline,
  .benefitGrid,
  .trustGrid,
  .masonryGallery,
  .projectPhotoGrid,
  .sliderThumbs,
  .portfolioThumbs,
  .portfolioFacts {
    position: relative;
  }
  .catalogGrid::after,
  .solutionGrid::after,
  .caseGrid::after,
  .projectGrid::after,
  .timeline::after,
  .benefitGrid::after,
  .trustGrid::after,
  .masonryGallery::after,
  .projectPhotoGrid::after,
  .sliderThumbs::after,
  .portfolioThumbs::after,
  .portfolioFacts::after {
    content: "\41b\438\441\442\430\439\442\435  \2192";
    flex: 0 0 auto;
    align-self: center;
    padding: 10px 12px;
    border: 1px solid rgba(110, 211, 177, 0.2);
    border-radius: 999px;
    color: var(--mint);
    background: rgba(5, 18, 15, 0.72);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
    font-size: 12px;
    font-weight: 820;
    scroll-snap-align: end;
    white-space: nowrap;
  }
  .brandTrustText::after {
    content: "\41b\438\441\442\430\439\442\435  \2192";
    display: inline-flex;
    margin-left: auto;
    padding: 7px 10px;
    border: 1px solid rgba(110, 211, 177, 0.2);
    border-radius: 999px;
    color: var(--mint);
    background: rgba(255, 255, 255, 0.05);
    font-size: 11px;
    font-weight: 820;
    white-space: nowrap;
  }
}
.footerLegal {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-start;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footerLegal a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 720;
  transition: color 180ms ease;
}
.footerLegal a:hover {
  color: var(--mint);
}
.cookieNotice {
  position: fixed;
  right: 100px;
  bottom: 22px;
  z-index: 39;
  display: flex;
  width: min(820px, calc(100% - 190px));
  align-items: center;
  gap: 22px;
  padding: 18px 18px 18px 22px;
  border: 1px solid rgba(110, 211, 177, 0.22);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(
      circle at 12% 0%,
      rgba(110, 211, 177, 0.14),
      transparent 42%),
    linear-gradient(
      135deg,
      rgba(7, 18, 16, 0.92),
      rgba(2, 9, 8, 0.92));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38), 0 0 36px rgba(110, 211, 177, 0.08);
  backdrop-filter: blur(18px);
}
.cookieNoticeText {
  min-width: 0;
}
.cookieNoticeText strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 860;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cookieNoticeText p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
}
.cookieNoticeText a {
  color: var(--mint);
  font-weight: 760;
}
.cookieNotice .button {
  flex: 0 0 auto;
}
.policySection {
  color: #fff;
  background:
    radial-gradient(
      circle at 82% 12%,
      rgba(110, 211, 177, 0.12),
      transparent 32%),
    linear-gradient(
      180deg,
      #020706,
      #071411);
}
.policyCard {
  max-width: 920px;
  padding: 42px;
  border: 1px solid rgba(110, 211, 177, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.022)),
    rgba(3, 13, 11, 0.72);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
}
.policyCard h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.08;
}
.policyCard h2:not(:first-child) {
  margin-top: 34px;
}
.policyCard p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.72;
}
@media (max-width: 760px) {
  .footerLegal {
    padding-top: 16px;
  }
  .cookieNotice {
    right: 12px;
    bottom: 74px;
    left: 12px;
    width: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 16px;
  }
  .cookieNoticeText p {
    font-size: 12.8px;
    line-height: 1.5;
  }
  .cookieNotice .button {
    width: 100%;
  }
  .policyCard {
    width: min(100% - 32px, 920px);
    padding: 24px 18px;
  }
}
.mobileScrollHint,
.contactRequisitesToggleCard,
.requisitesToggle {
  display: none;
}
@keyframes requisitesAccordionIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 760px) {
  .brandTrustText::after,
  .timeline::after,
  .benefitGrid::after {
    content: none !important;
    display: none !important;
  }
  .mobileScrollHint {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 7px;
    margin: 4px 0 14px;
    padding: 8px 11px;
    border: 1px solid rgba(110, 211, 177, 0.24);
    border-radius: 999px;
    color: var(--mint);
    background:
      radial-gradient(
        circle at 100% 0%,
        rgba(110, 211, 177, 0.14),
        transparent 62%),
      rgba(5, 18, 15, 0.74);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 12px 34px rgba(0, 0, 0, 0.18);
    font-size: 11.5px;
    font-weight: 820;
    letter-spacing: 0.02em;
  }
  .mobileScrollHintBenefits {
    align-self: start;
    margin-top: -4px;
  }
  .requisitesToggle,
  .contactRequisitesToggleCard {
    display: inline-flex;
  }
  .requisitesToggle {
    gap: 8px;
  }
  .contactRequisitesToggleCard {
    width: 100%;
  }
  .contactRequisitesToggleCard .requisitesToggle {
    width: 100%;
    justify-content: center;
  }
  .requisitesToggle svg {
    flex: 0 0 auto;
  }
  .mobileRequisitesPanel {
    display: none !important;
    max-width: 100%;
  }
  .companyCards.mobileRequisitesPanel.is-open {
    display: grid !important;
  }
  .contactRequisitesCard.mobileRequisitesPanel.is-open {
    display: block !important;
  }
  .mobileRequisitesPanel.is-open {
    opacity: 1 !important;
    transform: none !important;
    animation: requisitesAccordionIn 220ms ease both;
  }
}
@media (max-width: 430px) {
  .backPill,
  .projectHero .backLink,
  .solutionHero .backLink {
    width: 100%;
    justify-content: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  .backPill::after,
  .projectHero .backLink::after,
  .solutionHero .backLink::after {
    animation: none !important;
    display: none;
  }
}
.officeCalculator {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(
      circle at 78% 8%,
      rgba(110, 211, 177, 0.18),
      transparent 32%),
    radial-gradient(
      circle at 14% 32%,
      rgba(15, 111, 92, 0.18),
      transparent 34%),
    linear-gradient(
      180deg,
      #050807,
      #071d19 48%,
      #050807);
}
.officeCalculator::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.024) 1px,
      transparent 1px);
  background-size: 86px 86px;
  mask-image:
    radial-gradient(
      circle at 50% 28%,
      #000,
      transparent 72%);
  opacity: 0.42;
}
.calculatorHeader,
.calculatorLayout {
  position: relative;
  z-index: 1;
}
.calculatorHeader {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(260px, 0.48fr);
  gap: 46px;
  align-items: end;
  margin-bottom: 34px;
}
.calculatorHeader h2 {
  max-width: 840px;
  margin: 16px 0 0;
  color: #fff;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.98;
}
.calculatorHeader p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.65;
}
.calculatorLayout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
  gap: 18px;
  align-items: stretch;
}
.calculatorPanel {
  min-width: 0;
  border: 1px solid rgba(110, 211, 177, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.028)),
    rgba(2, 12, 10, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 30px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}
.calculatorControls {
  display: grid;
  gap: 22px;
  padding: 28px;
}
.calculatorField {
  display: grid;
  gap: 12px;
}
.calculatorFieldHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.calculatorFieldHead span,
.calculatorLabel {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.calculatorFieldHead strong {
  display: inline-flex;
  min-width: 54px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(110, 211, 177, 0.32);
  border-radius: 999px;
  color: var(--mint);
  background: rgba(110, 211, 177, 0.08);
  font-size: 20px;
}
.calculatorRange {
  width: 100%;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  appearance: none;
  background:
    linear-gradient(
      90deg,
      var(--mint) var(--range-progress),
      rgba(255, 255, 255, 0.14) var(--range-progress));
  cursor: pointer;
}
.calculatorRange::-webkit-slider-thumb {
  width: 22px;
  height: 22px;
  border: 3px solid #fff;
  border-radius: 50%;
  appearance: none;
  background: var(--emerald);
  box-shadow: 0 0 0 7px rgba(110, 211, 177, 0.12), 0 0 22px rgba(110, 211, 177, 0.34);
}
.calculatorRange::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 7px rgba(110, 211, 177, 0.12), 0 0 22px rgba(110, 211, 177, 0.34);
}
.calculatorRangeMeta {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
  font-weight: 760;
}
.calculatorOptionGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.calculatorOptionGridThree {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.calculatorOption,
.calculatorChip {
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(110, 211, 177, 0.08),
      transparent 60%),
    rgba(255, 255, 255, 0.045);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}
.calculatorOption {
  display: grid;
  min-height: 96px;
  align-content: start;
  gap: 10px;
  border-radius: 10px;
  padding: 14px;
  text-align: left;
}
.calculatorOption svg {
  color: var(--mint);
}
.calculatorOption span {
  margin: 0;
  color: inherit;
  font-size: 14px;
  font-weight: 820;
  line-height: 1.2;
}
.calculatorOption small {
  display: block;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 760;
  line-height: 1.35;
}
.calculatorOption:hover,
.calculatorChip:hover,
.calculatorOption.is-active,
.calculatorChip.is-active {
  transform: translateY(-2px);
  border-color: rgba(110, 211, 177, 0.52);
  color: #fff;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(110, 211, 177, 0.18),
      transparent 62%),
    rgba(15, 111, 92, 0.18);
  box-shadow: 0 0 28px rgba(110, 211, 177, 0.1);
}
.calculatorChipGroup {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.calculatorChip {
  min-height: 42px;
  border-radius: 999px;
  padding: 0 15px;
  font-size: 13px;
  font-weight: 820;
}
.calculatorToggleList {
  display: grid;
  gap: 10px;
}
.calculatorToggle {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
}
.calculatorToggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.calculatorToggle > span {
  position: relative;
  width: 48px;
  height: 28px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  transition: background 180ms ease, border-color 180ms ease;
}
.calculatorToggle > span::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  transition: transform 180ms ease, background 180ms ease;
}
.calculatorToggle input:checked + span {
  border-color: rgba(110, 211, 177, 0.56);
  background: rgba(15, 111, 92, 0.9);
  box-shadow: 0 0 20px rgba(110, 211, 177, 0.14);
}
.calculatorToggle input:checked + span::after {
  transform: translateX(20px);
  background: #fff;
}
.calculatorToggle strong {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.25;
}
.calculatorToggle small {
  color: var(--mint);
  font-size: 12px;
  font-weight: 860;
}
.calculatorResult {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  padding: 18px;
}
.calculatorSketchCard {
  display: grid;
  gap: 12px;
}
.calculatorSketchFrame {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(110, 211, 177, 0.18);
  border-radius: var(--radius);
  background: #071d19;
}
.calculatorSketchFrame img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.02) contrast(1.03) brightness(0.78);
}
.office-build {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: inherit;
  aspect-ratio: 16 / 9;
  background: #06120f;
}
.office-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.calculatorSketchFrame .office-layer {
  min-height: 100%;
  transform: none;
}
.office-empty {
  opacity: 1;
}
.office-final {
  opacity: 0;
  transition: opacity 850ms ease;
}
.office-final.is-visible {
  opacity: 1;
}
.officeFinalMissing {
  position: absolute;
  inset: auto 24px 24px;
  z-index: 4;
  border: 1px solid rgba(110, 211, 177, 0.24);
  border-radius: 16px;
  background: rgba(3, 13, 11, 0.72);
  color: rgba(248, 250, 249, 0.9);
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-align: center;
  backdrop-filter: blur(14px);
}
.calculatorSketchCaption {
  display: none;
}
.office-build-video {
  opacity: 1;
  transition: opacity 650ms ease;
}
.office-build.is-video-ended .office-build-video {
  opacity: 0;
}
@media (prefers-reduced-motion: reduce) {
  .office-final.is-visible {
    opacity: 1;
  }
  .office-build-video {
    display: none;
  }
}
.calculatorSketchFrame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(2, 7, 6, 0.1),
      rgba(2, 7, 6, 0.7)),
    radial-gradient(
      circle at 22% 18%,
      rgba(110, 211, 177, 0.2),
      transparent 34%);
}
.calculatorSketchGrid {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px);
  background-size: 42px 42px;
  mix-blend-mode: screen;
  opacity: 0.36;
  mask-image:
    linear-gradient(
      180deg,
      transparent,
      #000 18%,
      #000 78%,
      transparent);
}
.calculatorSketchBadge,
.calculatorSketchCaption {
  position: absolute;
  z-index: 3;
  color: #fff;
  background: rgba(3, 12, 10, 0.62);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}
.calculatorSketchBadge {
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 860;
  text-transform: uppercase;
}
.calculatorSketchCaption {
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: 10px;
}
.calculatorSketchCaption strong {
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.05;
}
.calculatorSketchCaption span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 760;
}
.calculatorBuildPanel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(110, 211, 177, 0.16);
  border-radius: 14px;
  background:
    radial-gradient(
      circle at 18% 0%,
      rgba(110, 211, 177, 0.1),
      transparent 46%),
    rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.calculatorBuildPanel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.45;
}
.calculatorBuildButton {
  min-height: 46px;
  padding-inline: 18px;
  white-space: nowrap;
}
.calculatorBuildInline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 0.95fr);
  gap: 10px;
  align-items: stretch;
  margin-top: 8px;
}
@media (min-width: 1200px) {
  .calculatorControls .calculatorField:nth-child(4) .calculatorBuildInline {
    width: calc(200% + 12px);
    margin-left: calc(-100% - 12px);
    grid-template-columns: minmax(0, 1fr) minmax(250px, 0.95fr);
  }
}
.calculatorBuildHint {
  display: flex;
  align-items: center;
  min-height: 46px;
  margin: 0;
  padding: 0 12px;
  border: 1px solid rgba(110, 211, 177, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 10px;
  font-weight: 850;
  line-height: 1.18;
  text-transform: uppercase;
  letter-spacing: 0.035em;
  background:
    linear-gradient(
      110deg,
      rgba(255, 255, 255, 0.66) 0%,
      rgba(255, 255, 255, 0.76) 34%,
      rgba(32, 255, 224, 0.98) 48%,
      rgba(234, 255, 248, 0.98) 54%,
      rgba(255, 255, 255, 0.72) 68%,
      rgba(255, 255, 255, 0.62) 100%);
  background-size: 240% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 18px rgba(32, 255, 224, 0.14);
  animation: calculatorHintShine 6.8s ease-in-out infinite;
}
.calculatorServicesBuildButton {
  position: relative;
  overflow: hidden;
  width: 100%;
  justify-content: space-between;
  min-height: 46px;
  margin-top: 0;
  border: 1px solid rgba(110, 211, 177, 0.46);
  border-radius: 12px;
  background:
    linear-gradient(
      135deg,
      rgba(15, 111, 92, 0.98),
      rgba(26, 188, 156, 0.9) 58%,
      rgba(32, 255, 224, 0.62)),
    #0f6f5c;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2), 0 0 28px rgba(32, 255, 224, 0.16);
}
.calculatorServicesBuildButton::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      110deg,
      transparent 0%,
      transparent 36%,
      rgba(255, 255, 255, 0.32) 50%,
      transparent 64%,
      transparent 100%);
  transform: translateX(-130%);
  animation: calculatorButtonShine 5.8s ease-in-out infinite;
  pointer-events: none;
}
.calculatorServicesBuildButton {
  isolation: isolate;
}
.calculatorServicesBuildButton > * {
  position: relative;
  z-index: 1;
}
.calculatorServicesBuildButton:hover {
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24), 0 0 34px rgba(32, 255, 224, 0.24);
}
.calculatorBuildButton:disabled,
.calculatorLeadButton:disabled {
  cursor: default;
  opacity: 0.58;
  transform: none;
}
.calculatorServicesBuildButton:disabled::after {
  animation: none;
  opacity: 0;
}
@keyframes calculatorHintShine {
  0%, 62% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 185% 50%;
  }
}
@keyframes calculatorButtonShine {
  0%, 58% {
    transform: translateX(-130%);
  }
  100% {
    transform: translateX(130%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .calculatorBuildHint,
  .calculatorServicesBuildButton::after {
    animation: none;
  }
}
.calculatorEstimate {
  display: grid;
  gap: 16px;
  padding: 12px 4px 2px;
}
.calculatorEstimateEmpty {
  align-content: start;
  min-height: 220px;
  padding: 18px;
  border: 1px solid rgba(110, 211, 177, 0.16);
  border-radius: 14px;
  background:
    radial-gradient(
      circle at 16% 0%,
      rgba(110, 211, 177, 0.11),
      transparent 45%),
    rgba(255, 255, 255, 0.035);
}
.calculatorEstimateEmpty strong {
  color: #fff;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.05;
}
.calculatorStaleNote {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 8px 10px;
  border: 1px solid rgba(110, 211, 177, 0.2);
  border-radius: 999px;
  color: rgba(233, 255, 248, 0.82);
  background: rgba(110, 211, 177, 0.08);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.25;
}
.calculatorTotal {
  display: block;
  color: var(--mint);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.95;
}
.calculatorBreakdown {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.calculatorBreakdown span,
.calculatorSummary span {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
}
.calculatorBreakdown span {
  display: grid;
  gap: 7px;
  padding: 14px;
}
.calculatorBreakdown small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 820;
  text-transform: uppercase;
}
.calculatorBreakdown b {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.calculatorSummary {
  display: grid;
  gap: 8px;
}
.calculatorSummary span {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 12px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.35;
}
.calculatorSummary svg {
  flex: 0 0 auto;
  color: var(--mint);
}
.calculatorEstimate p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13.5px;
  line-height: 1.55;
}
.calculatorLeadButton {
  width: 100%;
  min-height: 52px;
}
@media (max-width: 1120px) {
  .calculatorHeader,
  .calculatorLayout {
    grid-template-columns: 1fr;
  }
  .calculatorHeader {
    gap: 18px;
  }
  .calculatorHeader h2 {
    font-size: var(--type-h2-mobile);
    line-height: 1.04;
  }
  .calculatorSketchFrame,
  .calculatorSketchFrame img {
    min-height: 360px;
  }
}
@media (max-width: 760px) {
  .officeCalculator {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .calculatorHeader p {
    font-size: 15px;
    line-height: 1.58;
  }
  .calculatorControls,
  .calculatorResult {
    padding: 14px;
  }
  .calculatorOptionGrid,
  .calculatorOptionGridThree {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .calculatorOption {
    min-height: 88px;
    padding: 12px;
  }
  .calculatorOption span {
    font-size: 12.5px;
  }
  .calculatorOption small {
    font-size: 10.5px;
  }
  .calculatorChip {
    min-height: 40px;
    flex: 1 1 calc(50% - 8px);
    padding: 0 11px;
  }
  .calculatorToggle {
    grid-template-columns: 46px minmax(0, 1fr) auto;
    padding: 10px;
  }
  .calculatorToggle strong {
    font-size: 13px;
  }
  .calculatorSketchFrame,
  .calculatorSketchFrame img {
    min-height: 300px;
  }
  .calculatorBuildPanel {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
  }
  .calculatorBuildButton {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }
  .calculatorSketchBadge {
    top: 12px;
    left: 12px;
    font-size: 10.5px;
  }
  .calculatorSketchCaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 13px;
  }
  .calculatorBreakdown {
    grid-template-columns: 1fr;
  }
  .calculatorTotal {
    font-size: clamp(38px, 12vw, 54px);
  }
}
@media (max-width: 390px) {
  .calculatorOptionGrid,
  .calculatorOptionGridThree {
    grid-template-columns: 1fr;
  }
}
.officeCalculator {
  padding-top: 78px;
  padding-bottom: 82px;
}
.calculatorHeader {
  gap: 30px;
  margin-bottom: 24px;
}
.calculatorHeader h2 {
  max-width: 720px;
  margin-top: 12px;
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1;
}
.calculatorHeader p {
  max-width: 500px;
  font-size: 15.5px;
  line-height: 1.55;
}
.calculatorLayout {
  grid-template-columns: minmax(0, 0.78fr) minmax(450px, 1fr);
  gap: 16px;
}
.calculatorControls {
  gap: 15px;
  padding: 20px;
}
.calculatorField {
  gap: 9px;
}
.calculatorFieldHead strong {
  min-width: 48px;
  min-height: 34px;
  font-size: 18px;
}
.calculatorOptionGrid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.calculatorOptionGridThree {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.calculatorOption {
  min-height: 66px;
  gap: 6px;
  padding: 10px;
  border-radius: 9px;
}
.calculatorOption svg {
  width: 16px;
  height: 16px;
}
.calculatorOption span {
  font-size: 12.2px;
  line-height: 1.15;
}
.calculatorOption small {
  font-size: 10px;
  line-height: 1.25;
}
.calculatorChipGroup {
  gap: 7px;
}
.calculatorChip {
  min-height: 36px;
  padding: 0 12px;
  font-size: 12px;
}
.calculatorToggleList {
  gap: 8px;
}
.calculatorToggle {
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 10px;
  padding: 9px 10px;
}
.calculatorToggle > span {
  width: 42px;
  height: 24px;
}
.calculatorToggle > span::after {
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
}
.calculatorToggle input:checked + span::after {
  transform: translateX(18px);
}
.calculatorToggle strong {
  font-size: 12.5px;
}
.calculatorToggle small {
  font-size: 11px;
}
.calculatorResult {
  gap: 14px;
  padding: 16px;
}
.calculatorEstimate {
  gap: 12px;
  padding-top: 8px;
}
.calculatorTotal {
  font-size: clamp(38px, 5vw, 58px);
}
.calculatorBreakdown {
  gap: 8px;
}
.calculatorBreakdown span {
  gap: 5px;
  padding: 11px;
}
.calculatorSummary {
  gap: 7px;
}
.calculatorSummary span {
  padding: 9px 10px;
  font-size: 12.3px;
}
.calculatorEstimate p {
  font-size: 12.5px;
  line-height: 1.45;
}
.calculatorLeadButton {
  min-height: 48px;
}
@media (max-width: 1120px) {
  .officeCalculator {
    padding-top: 68px;
    padding-bottom: 70px;
  }
  .calculatorLayout {
    grid-template-columns: 1fr;
  }
  .calculatorOptionGrid,
  .calculatorOptionGridThree {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .officeCalculator {
    padding-top: 54px;
    padding-bottom: 56px;
  }
  .calculatorHeader {
    margin-bottom: 18px;
  }
  .calculatorHeader h2 {
    font-size: clamp(30px, 8.5vw, 38px);
  }
  .calculatorControls {
    gap: 12px;
    padding: 12px;
  }
  .calculatorOptionGrid,
  .calculatorOptionGridThree {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .calculatorOption {
    min-height: 66px;
    padding: 9px;
  }
  .calculatorResult {
    padding: 12px;
  }
  .calculatorTotal {
    font-size: clamp(34px, 10vw, 46px);
  }
}
.officeCalculator {
  padding-top: 56px;
  padding-bottom: 60px;
}
.calculatorHeader {
  grid-template-columns: minmax(0, 0.9fr) minmax(240px, 0.42fr);
  gap: 22px;
  margin-bottom: 18px;
}
.calculatorHeader h2 {
  max-width: 640px;
  margin-top: 10px;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.02;
}
.calculatorHeader p {
  max-width: 460px;
  font-size: 14.5px;
  line-height: 1.48;
}
.calculatorLayout {
  grid-template-columns: minmax(0, 0.72fr) minmax(390px, 0.88fr);
  gap: 12px;
}
.calculatorControls {
  gap: 11px;
  padding: 14px;
}
.calculatorField {
  gap: 7px;
}
.calculatorFieldHead span,
.calculatorLabel {
  font-size: 10.5px;
  letter-spacing: 0.075em;
}
.calculatorFieldHead strong {
  min-width: 42px;
  min-height: 30px;
  font-size: 16px;
}
.calculatorRangeMeta {
  font-size: 10.5px;
}
.calculatorOptionGrid {
  gap: 6px;
}
.calculatorOption {
  min-height: 54px;
  gap: 5px;
  padding: 8px;
}
.calculatorOption svg {
  width: 15px;
  height: 15px;
}
.calculatorOption span {
  font-size: 11px;
  line-height: 1.12;
}
.calculatorOption small {
  font-size: 9.5px;
}
.calculatorChip {
  min-height: 32px;
  padding-inline: 10px;
  font-size: 11px;
}
.calculatorToggleList {
  gap: 6px;
}
.calculatorToggle {
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 8px;
  padding: 7px 8px;
}
.calculatorToggle > span {
  width: 38px;
  height: 22px;
}
.calculatorToggle > span::after {
  width: 14px;
  height: 14px;
}
.calculatorToggle input:checked + span::after {
  transform: translateX(16px);
}
.calculatorToggle strong {
  font-size: 11.5px;
}
.calculatorToggle small {
  font-size: 10px;
}
.calculatorResult {
  gap: 10px;
  padding: 12px;
}
.calculatorSketchCard {
  gap: 8px;
}
.calculatorSketchFrame,
.calculatorSketchFrame img {
  min-height: 310px;
}
.calculatorSketchBadge {
  top: 12px;
  left: 12px;
  gap: 6px;
  padding: 7px 9px;
  font-size: 10px;
}
.calculatorSketchCaption {
  right: 12px;
  bottom: 12px;
  left: 12px;
  gap: 4px;
  padding: 11px;
}
.calculatorSketchCaption strong {
  font-size: clamp(17px, 2vw, 23px);
}
.calculatorSketchCaption span {
  font-size: 11.5px;
}
.calculatorBuildPanel {
  gap: 10px;
  padding: 10px;
  border-radius: 12px;
}
.calculatorBuildPanel p {
  font-size: 11.5px;
  line-height: 1.38;
}
.calculatorBuildButton {
  min-height: 40px;
  padding-inline: 14px;
  font-size: 13px;
}
.calculatorEstimate {
  gap: 9px;
  padding-top: 4px;
}
.calculatorEstimateEmpty {
  min-height: 150px;
  padding: 14px;
}
.calculatorEstimateEmpty strong {
  font-size: clamp(20px, 2.4vw, 28px);
}
.calculatorTotal {
  font-size: clamp(32px, 4.2vw, 48px);
}
.calculatorBreakdown {
  gap: 6px;
}
.calculatorBreakdown span {
  gap: 4px;
  padding: 9px;
}
.calculatorBreakdown small {
  font-size: 9.8px;
}
.calculatorBreakdown b {
  font-size: 12.5px;
}
.calculatorSummary {
  gap: 6px;
}
.calculatorSummary span {
  gap: 7px;
  padding: 8px 9px;
  font-size: 11.5px;
}
.calculatorEstimate p {
  font-size: 11.8px;
  line-height: 1.4;
}
.calculatorLeadButton {
  min-height: 42px;
  font-size: 13px;
}
.calculatorControls {
  gap: 8px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.calculatorRangeField {
  gap: 6px;
}
.calculatorRangeMeta {
  display: none;
}
.calculatorRange {
  margin-bottom: 0;
}
@media (max-width: 1120px) {
  .officeCalculator {
    padding-top: 50px;
    padding-bottom: 54px;
  }
  .calculatorSketchFrame,
  .calculatorSketchFrame img {
    min-height: 280px;
  }
}
@media (max-width: 760px) {
  .officeCalculator {
    padding-top: 42px;
    padding-bottom: 46px;
  }
  .calculatorHeader {
    gap: 12px;
    margin-bottom: 14px;
  }
  .calculatorHeader h2 {
    font-size: clamp(27px, 7.4vw, 34px);
  }
  .calculatorHeader p {
    font-size: 13.5px;
    line-height: 1.45;
  }
  .calculatorControls,
  .calculatorResult {
    padding: 10px;
  }
  .calculatorControls {
    gap: 10px;
  }
  .calculatorRangeField {
    gap: 6px;
  }
  .calculatorOption {
    min-height: 58px;
    padding: 8px;
  }
  .calculatorSketchFrame,
  .calculatorSketchFrame img {
    min-height: 235px;
  }
  .calculatorBuildPanel {
    padding: 9px;
  }
  .calculatorBuildButton {
    min-height: 44px;
  }
  .calculatorEstimateEmpty {
    min-height: 130px;
  }
  .calculatorTotal {
    font-size: clamp(30px, 8.5vw, 40px);
  }
}
@media (max-width: 390px) {
  .calculatorSketchFrame,
  .calculatorSketchFrame img {
    min-height: 215px;
  }
}
.calculatorSketchFrame.is-trial-image,
.calculatorSketchFrame.is-trial-image img {
  min-height: 390px;
}
.calculatorSketchFrame.is-trial-image img,
.office-build-trial .office-layer {
  object-fit: cover;
  object-position: center;
  transform: none;
  filter: saturate(1.04) contrast(1.02) brightness(0.92);
}
.office-build-trial {
  background:
    radial-gradient(
      circle at 50% 42%,
      rgba(110, 211, 177, 0.1),
      transparent 48%),
    linear-gradient(
      135deg,
      #04100d,
      #071b17 52%,
      #030706);
}
.calculatorSketchFrame.is-trial-image::after {
  background:
    linear-gradient(
      180deg,
      rgba(2, 7, 6, 0.06),
      rgba(2, 7, 6, 0.46)),
    radial-gradient(
      circle at 50% 18%,
      rgba(110, 211, 177, 0.13),
      transparent 38%);
}
.calculatorSketchFrame.is-trial-image .calculatorSketchCaption {
  right: 12px;
  bottom: 12px;
  left: auto;
  width: min(280px, calc(100% - 24px));
  padding: 9px 10px;
  border-radius: 12px;
  background:
    linear-gradient(
      135deg,
      rgba(3, 12, 10, 0.18),
      rgba(3, 12, 10, 0.06));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 12px 28px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6px);
}
.calculatorSketchFrame.is-trial-image .calculatorSketchCaption strong {
  font-size: clamp(15px, 1.7vw, 19px);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.44);
}
.calculatorSketchFrame.is-trial-image .calculatorSketchCaption span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 10.8px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}
@media (max-width: 1120px) {
  .calculatorSketchFrame.is-trial-image,
  .calculatorSketchFrame.is-trial-image img {
    min-height: 340px;
  }
}
@media (max-width: 760px) {
  .calculatorSketchFrame.is-trial-image,
  .calculatorSketchFrame.is-trial-image img {
    min-height: 285px;
  }
  .calculatorSketchFrame.is-trial-image .calculatorSketchCaption {
    width: min(230px, calc(100% - 20px));
    padding: 8px 9px;
  }
}
@media (max-width: 390px) {
  .calculatorSketchFrame.is-trial-image,
  .calculatorSketchFrame.is-trial-image img {
    min-height: 255px;
  }
}
@media (max-width: 1199px) {
  .calculatorHeader,
  .calculatorLayout {
    grid-template-columns: minmax(0, 1fr);
  }
  .calculatorHeader {
    align-items: start;
  }
  .calculatorHeader p {
    max-width: 680px;
  }
  .calculatorLayout {
    width: 100%;
    max-width: min(760px, calc(100vw - 32px));
    margin-inline: auto;
  }
  .calculatorControls,
  .calculatorResult {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .calculatorSketchFrame {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 760px) {
  .calculatorLayout {
    max-width: 100%;
    gap: 12px;
  }
  .calculatorPanel {
    border-radius: 16px;
  }
  .calculatorControls {
    padding: 10px;
  }
  .calculatorResult {
    grid-template-rows: auto;
    padding: 10px;
  }
  .calculatorOptionGrid,
  .calculatorOptionGridThree {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .calculatorOption {
    min-width: 0;
    min-height: 56px;
  }
  .calculatorOption span,
  .calculatorToggle strong,
  .calculatorBreakdown b,
  .calculatorSummary span {
    overflow-wrap: anywhere;
  }
  .calculatorSketchFrame,
  .calculatorSketchFrame img {
    height: clamp(250px, 70vw, 330px);
    min-height: 0;
  }
  .calculatorSketchFrame.is-trial-image,
  .calculatorSketchFrame.is-trial-image img {
    height: clamp(300px, 86vw, 380px);
    min-height: 0;
  }
  .office-build {
    height: 100%;
    aspect-ratio: auto;
  }
  .calculatorSketchFrame.is-trial-image .calculatorSketchCaption {
    right: 10px;
    bottom: 10px;
    width: min(220px, calc(100% - 20px));
  }
  .calculatorBuildPanel {
    grid-template-columns: 1fr;
  }
  .calculatorBuildButton,
  .calculatorLeadButton {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 430px) {
  .calculatorHeader h2 {
    font-size: clamp(27px, 8vw, 34px);
  }
  .calculatorSketchFrame,
  .calculatorSketchFrame img {
    height: clamp(240px, 72vw, 310px);
  }
  .calculatorSketchFrame.is-trial-image,
  .calculatorSketchFrame.is-trial-image img {
    height: clamp(295px, 88vw, 355px);
  }
}
@media (max-width: 390px) {
  .calculatorControls,
  .calculatorResult {
    padding: 9px;
  }
  .calculatorSketchFrame,
  .calculatorSketchFrame img {
    height: clamp(232px, 74vw, 292px);
  }
  .calculatorSketchFrame.is-trial-image,
  .calculatorSketchFrame.is-trial-image img {
    height: clamp(285px, 90vw, 330px);
  }
}
.office-build {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}
.calculatorSketchFrame.is-trial-image .office-layer {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}
.calculatorMaterials {
  position: relative;
  display: grid;
  gap: 8px;
  overflow: hidden;
  padding: 12px;
  border: 1px solid rgba(110, 211, 177, 0.16);
  border-radius: 14px;
  background:
    radial-gradient(
      circle at 92% 0%,
      rgba(110, 211, 177, 0.1),
      transparent 50%),
    rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 18px 44px rgba(0, 0, 0, 0.18);
  animation: calculatorMaterialIn 260ms ease both;
}
.calculatorMaterials::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      110deg,
      transparent 0%,
      rgba(255, 255, 255, 0.08) 48%,
      transparent 72%);
  opacity: 0.28;
  transform: translateX(-48%);
}
.calculatorMaterialsHead {
  position: relative;
  display: grid;
  gap: 4px;
}
.calculatorMaterialsHead span {
  color: var(--mint);
  font-size: 10px;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.calculatorMaterialsHead h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(16px, 1.65vw, 21px);
  line-height: 1.12;
}
.calculatorMaterials p {
  position: relative;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.45;
}
.calculatorMaterialBadges {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.calculatorMaterialBadges span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  border: 1px solid rgba(110, 211, 177, 0.18);
  border-radius: 999px;
  padding: 0 9px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.045);
  font-size: 10px;
  font-weight: 820;
}
.calculatorMaterialList {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.calculatorMaterialList li {
  position: relative;
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11.3px;
  font-weight: 650;
  line-height: 1.35;
}
.calculatorMaterialList li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 12px rgba(110, 211, 177, 0.42);
}
.calculatorMaterials-economy {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(
      circle at 92% 0%,
      rgba(110, 211, 177, 0.06),
      transparent 50%),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 14px 34px rgba(0, 0, 0, 0.14);
}
.calculatorMaterials-business {
  border-color: rgba(110, 211, 177, 0.28);
  background:
    radial-gradient(
      circle at 90% 0%,
      rgba(110, 211, 177, 0.18),
      transparent 52%),
    linear-gradient(
      145deg,
      rgba(15, 111, 92, 0.16),
      rgba(255, 255, 255, 0.035));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 0 30px rgba(110, 211, 177, 0.08),
    0 18px 44px rgba(0, 0, 0, 0.18);
}
.calculatorMaterials-premium {
  border-color: rgba(216, 188, 122, 0.28);
  background:
    radial-gradient(
      circle at 90% 0%,
      rgba(216, 188, 122, 0.18),
      transparent 48%),
    radial-gradient(
      circle at 0% 100%,
      rgba(110, 211, 177, 0.13),
      transparent 52%),
    linear-gradient(
      145deg,
      rgba(15, 111, 92, 0.16),
      rgba(255, 255, 255, 0.045));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 34px rgba(216, 188, 122, 0.08),
    0 0 26px rgba(110, 211, 177, 0.07),
    0 18px 44px rgba(0, 0, 0, 0.2);
}
.calculatorMaterials-premium .calculatorMaterialBadges span {
  border-color: rgba(216, 188, 122, 0.28);
  color: rgba(255, 244, 210, 0.9);
  background: rgba(216, 188, 122, 0.08);
}
@keyframes calculatorMaterialIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 760px) {
  .calculatorMaterials {
    gap: 9px;
    padding: 12px;
  }
  .calculatorMaterials p {
    font-size: 12.5px;
  }
  .calculatorMaterialList {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .calculatorMaterialList li {
    font-size: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .calculatorMaterials {
    animation: none;
  }
}
.calculatorLayout {
  grid-template-columns: minmax(250px, 0.28fr) minmax(430px, 0.46fr) minmax(260px, 0.26fr);
  gap: 12px;
  align-items: start;
}
.calculatorBuildColumn {
  position: relative;
  padding: 12px;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(110, 211, 177, 0.13),
      transparent 52%),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.03)),
    rgba(2, 12, 10, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 42px rgba(110, 211, 177, 0.08),
    0 34px 96px rgba(0, 0, 0, 0.28);
}
.calculatorBuildColumn .calculatorSketchCard {
  height: 100%;
}
.calculatorBuildColumn .calculatorSketchFrame {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  min-height: 0;
  border-color: rgba(110, 211, 177, 0.3);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.045),
    0 0 34px rgba(110, 211, 177, 0.12),
    0 28px 74px rgba(0, 0, 0, 0.28);
}
.calculatorBuildColumn .calculatorSketchFrame img,
.calculatorBuildColumn .office-build {
  height: 100%;
  min-height: 0;
}
.calculatorBuildColumn .calculatorSketchBadge {
  background: rgba(3, 12, 10, 0.72);
  box-shadow: inset 0 0 0 1px rgba(110, 211, 177, 0.24), 0 0 24px rgba(110, 211, 177, 0.12);
}
.calculatorBuildColumn .calculatorSketchCaption {
  background:
    linear-gradient(
      135deg,
      rgba(3, 12, 10, 0.36),
      rgba(3, 12, 10, 0.14));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 18px 38px rgba(0, 0, 0, 0.16);
}
.calculatorResult {
  grid-template-rows: auto;
  align-content: start;
  gap: 12px;
  padding: 12px;
}
.calculatorResult .calculatorEstimate {
  gap: 10px;
}
.calculatorResult .calculatorMaterials {
  padding: 10px;
}
.calculatorResult .calculatorMaterialsHead h3 {
  font-size: clamp(15px, 1.45vw, 19px);
}
.calculatorResult .calculatorMaterials p {
  font-size: 11.3px;
}
.calculatorResult .calculatorMaterialBadges {
  gap: 5px;
}
.calculatorResult .calculatorMaterialBadges span {
  min-height: 22px;
  padding-inline: 8px;
  font-size: 9.5px;
}
.calculatorResult .calculatorMaterialList {
  grid-template-columns: 1fr;
  gap: 5px;
}
.calculatorResult .calculatorMaterialList li {
  font-size: 10.8px;
  line-height: 1.28;
}
.calculatorResult .calculatorBreakdown {
  grid-template-columns: 1fr;
}
.calculatorResult .calculatorTotal {
  font-size: clamp(30px, 3.3vw, 42px);
}
.calculatorControls {
  align-content: start;
}
@media (min-width: 761px) and (max-width: 1199px) {
  .calculatorLayout {
    grid-template-columns: minmax(260px, 0.38fr) minmax(0, 0.62fr);
    max-width: min(1040px, calc(100% - 40px));
    margin-inline: auto;
  }
  .calculatorControls {
    grid-column: 1;
    grid-row: 1 / span 2;
  }
  .calculatorBuildColumn {
    grid-column: 2;
    grid-row: 1;
  }
  .calculatorResult {
    grid-column: 2;
    grid-row: 2;
  }
  .calculatorBuildColumn .calculatorSketchFrame,
  .calculatorBuildColumn .calculatorSketchFrame img {
    min-height: 0;
  }
}
@media (max-width: 760px) {
  .calculatorLayout {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .calculatorBuildColumn {
    order: 1;
    padding: 10px;
  }
  .calculatorResult {
    order: 2;
  }
  .calculatorControls {
    order: 3;
  }
  .calculatorBuildColumn .calculatorSketchFrame,
  .calculatorBuildColumn .calculatorSketchFrame img {
    aspect-ratio: auto;
    height: clamp(292px, 86vw, 370px);
    min-height: 0;
  }
  .calculatorBuildColumn .office-build {
    height: 100%;
  }
  .calculatorResult .calculatorMaterials p,
  .calculatorResult .calculatorMaterialList li {
    font-size: 12px;
  }
}
.calculatorLayout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: stretch;
}
.calculatorControls {
  display: grid;
  grid-template-columns: minmax(230px, 0.9fr) minmax(360px, 1.55fr) minmax(230px, 0.9fr) minmax(240px, 0.95fr);
  gap: 12px;
  align-items: start;
  padding: 12px;
}
.calculatorControls .calculatorField {
  align-content: start;
}
.calculatorControls .calculatorField:nth-child(2) .calculatorOptionGrid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.calculatorControls .calculatorField:nth-child(3) .calculatorOptionGridThree {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.calculatorControls .calculatorOption {
  min-height: 52px;
  gap: 5px;
  padding: 8px;
}
.calculatorControls .calculatorOption span {
  font-size: 10.5px;
  line-height: 1.12;
}
.calculatorControls .calculatorOption small {
  font-size: 9.2px;
}
.calculatorControls .calculatorToggleList {
  gap: 7px;
}
.calculatorControls .calculatorToggle {
  min-height: 44px;
}
.calculatorBuildColumn {
  order: initial;
  padding: 14px;
}
.calculatorBuildColumn .calculatorSketchFrame {
  width: 100%;
  height: clamp(430px, 42vw, 610px);
  min-height: 0;
  aspect-ratio: auto;
}
.calculatorBuildColumn .calculatorSketchFrame img,
.calculatorBuildColumn .office-build {
  height: 100%;
  min-height: 0;
}
.calculatorBuildColumn .calculatorSketchBadge {
  font-size: 11px;
  letter-spacing: 0.08em;
}
.calculatorResult {
  order: initial;
  padding: 14px;
}
.calculatorResult .calculatorEstimate {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(230px, 0.72fr) minmax(330px, 1.08fr);
  gap: 12px;
  align-items: start;
}
.calculatorResult .calculatorStaleNote {
  grid-column: 1 / -1;
}
.calculatorResult .calculatorMaterials {
  grid-column: 1;
  grid-row: 1 / span 4;
  min-height: 100%;
}
.calculatorResult .calculatorEstimate > .calculatorLabel {
  grid-column: 2;
  grid-row: 1;
}
.calculatorResult .calculatorTotal {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  margin-top: 24px;
}
.calculatorResult .calculatorBreakdown {
  grid-column: 3;
  grid-row: 1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.calculatorResult .calculatorSummary {
  grid-column: 2 / -1;
  grid-row: 2;
}
.calculatorResult .calculatorEstimate > p {
  grid-column: 2;
  grid-row: 3;
  margin: 0;
}
.calculatorResult .calculatorLeadButton {
  grid-column: 3;
  grid-row: 3;
  align-self: end;
}
.calculatorResult .calculatorEstimateEmpty {
  display: grid;
  min-height: auto;
  gap: 8px;
}
@media (max-width: 1199px) {
  .calculatorLayout {
    max-width: min(960px, calc(100vw - 32px));
    margin-inline: auto;
  }
  .calculatorControls {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .calculatorControls .calculatorField:nth-child(2) .calculatorOptionGrid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .calculatorBuildColumn,
  .calculatorResult,
  .calculatorControls {
    grid-column: auto;
    grid-row: auto;
  }
  .calculatorBuildColumn .calculatorSketchFrame {
    height: clamp(390px, 58vw, 560px);
  }
  .calculatorResult .calculatorEstimate {
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1fr);
  }
  .calculatorResult .calculatorMaterials {
    grid-column: 1;
    grid-row: 1 / span 4;
  }
  .calculatorResult .calculatorEstimate > .calculatorLabel,
  .calculatorResult .calculatorTotal,
  .calculatorResult .calculatorBreakdown,
  .calculatorResult .calculatorSummary,
  .calculatorResult .calculatorEstimate > p,
  .calculatorResult .calculatorLeadButton {
    grid-column: 2;
    grid-row: auto;
  }
}
@media (max-width: 760px) {
  .calculatorControls {
    order: 1;
    grid-template-columns: 1fr;
    padding: 10px;
  }
  .calculatorBuildColumn {
    order: 2;
    padding: 10px;
  }
  .calculatorResult {
    order: 3;
    padding: 10px;
  }
  .calculatorControls .calculatorField:nth-child(2) .calculatorOptionGrid,
  .calculatorControls .calculatorField:nth-child(3) .calculatorOptionGridThree {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .calculatorBuildColumn .calculatorSketchFrame,
  .calculatorBuildColumn .calculatorSketchFrame img {
    height: clamp(300px, 88vw, 390px);
  }
  .calculatorResult .calculatorEstimate {
    grid-template-columns: 1fr;
  }
  .calculatorResult .calculatorMaterials,
  .calculatorResult .calculatorEstimate > .calculatorLabel,
  .calculatorResult .calculatorTotal,
  .calculatorResult .calculatorBreakdown,
  .calculatorResult .calculatorSummary,
  .calculatorResult .calculatorEstimate > p,
  .calculatorResult .calculatorLeadButton {
    grid-column: 1;
    grid-row: auto;
  }
}
@media (min-width: 1200px) {
  .officeCalculator {
    padding-top: 48px;
    padding-bottom: 52px;
  }
  .calculatorHeader {
    margin-bottom: 14px;
  }
  .calculatorHeader h2 {
    font-size: clamp(30px, 3.1vw, 42px);
  }
  .calculatorHeader p {
    font-size: 13.5px;
    line-height: 1.42;
  }
  .calculatorLayout {
    gap: 10px;
  }
  .calculatorControls {
    gap: 9px;
    padding: 10px;
  }
  .calculatorControls .calculatorField {
    gap: 6px;
  }
  .calculatorControls .calculatorOption {
    min-height: 46px;
    padding: 7px;
  }
  .calculatorControls .calculatorToggle {
    min-height: 39px;
    padding: 6px 8px;
  }
  .calculatorBuildColumn,
  .calculatorResult {
    padding: 10px;
  }
  .calculatorBuildColumn .calculatorSketchFrame {
    height: clamp(360px, 35vw, 500px);
  }
  .calculatorBuildPanel {
    padding: 9px 10px;
  }
  .calculatorResult .calculatorEstimate {
    gap: 10px;
  }
}
.calculatorStaticValue,
.calculatorSeatChoices {
  min-width: 0;
}
.calculatorRangeField.is-static .calculatorFieldHead {
  justify-content: flex-start;
}
.calculatorStaticValue {
  display: grid;
  gap: 4px;
  padding: 9px 10px;
  border: 1px solid rgba(110, 211, 177, 0.22);
  border-radius: 12px;
  background:
    radial-gradient(
      circle at 12% 0%,
      rgba(110, 211, 177, 0.12),
      transparent 48%),
    rgba(255, 255, 255, 0.045);
}
.calculatorStaticValue span {
  color: #fff;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.15;
}
.calculatorStaticValue small {
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
}
.calculatorControlHint {
  margin: 0;
  padding: 8px 10px;
  border: 1px solid rgba(110, 211, 177, 0.16);
  border-radius: 12px;
  color: rgba(233, 255, 248, 0.72);
  background:
    radial-gradient(
      circle at 0% 0%,
      rgba(110, 211, 177, 0.11),
      transparent 48%),
    rgba(255, 255, 255, 0.035);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}
.calculatorControlHint::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 14px rgba(110, 211, 177, 0.34);
  vertical-align: 1px;
}
.calculatorSeatChoices {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}
.calculatorSeatChoice {
  display: inline-flex;
  min-width: 0;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px 7px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(110, 211, 177, 0.08),
      transparent 60%),
    rgba(255, 255, 255, 0.045);
  font-size: 12px;
  font-weight: 820;
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}
.calculatorSeatChoiceNumber,
.calculatorSeatChoiceLabel {
  position: relative;
  z-index: 1;
}
.calculatorSeatChoiceNumber {
  color: #fff;
  font-size: clamp(18px, 1.5vw, 21px);
  font-weight: 900;
  line-height: 1;
}
.calculatorSeatChoiceLabel {
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(11px, 0.95vw, 12px);
  font-weight: 760;
  line-height: 1;
}
.calculatorSeatChoice:hover,
.calculatorSeatChoice.is-active {
  transform: translateY(-1px);
  border-color: rgba(110, 211, 177, 0.54);
  color: #fff;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(110, 211, 177, 0.18),
      transparent 62%),
    rgba(15, 111, 92, 0.2);
  box-shadow: 0 0 24px rgba(110, 211, 177, 0.1);
}
.calculatorRangeField .calculatorFieldHead strong {
  width: auto;
  min-width: 46px;
  max-width: 100%;
  padding: 0 12px;
  white-space: nowrap;
  font-size: clamp(14px, 1.2vw, 18px);
}
@media (max-width: 760px) {
  .calculatorSeatChoices {
    grid-template-columns: repeat(4, minmax(70px, 1fr));
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }
  .calculatorSeatChoices::-webkit-scrollbar {
    display: none;
  }
  .calculatorSeatChoice {
    min-height: 36px;
  }
  .calculatorStaticValue {
    padding: 10px;
  }
  .calculatorControlHint {
    font-size: 11.5px;
  }
}
.calculatorOption,
.calculatorSeatChoice,
.calculatorToggle {
  position: relative;
  overflow: hidden;
}
.calculatorOption.is-active {
  border-color: rgba(110, 211, 177, 0.86);
  color: #fff;
  background:
    linear-gradient(
      135deg,
      rgba(15, 111, 92, 0.42),
      rgba(110, 211, 177, 0.13)),
    rgba(255, 255, 255, 0.065);
  box-shadow:
    0 0 0 1px rgba(110, 211, 177, 0.24),
    0 0 30px rgba(110, 211, 177, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.calculatorOption.is-active::after,
.calculatorSeatChoice.is-active::after {
  content: "\2713";
  position: absolute;
  top: 7px;
  right: 7px;
  display: inline-flex;
  width: 19px;
  height: 19px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(110, 211, 177, 0.48);
  border-radius: 999px;
  color: #eafff8;
  background: rgba(15, 111, 92, 0.74);
  box-shadow: 0 0 16px rgba(110, 211, 177, 0.2);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}
.calculatorSeatChoice.is-active .calculatorSeatChoiceNumber,
.calculatorSeatChoice.is-active .calculatorSeatChoiceLabel {
  color: #fff;
}
.calculatorSeatChoice.is-active::after {
  display: none;
}
.calculatorOption.is-active svg {
  color: #eafff8;
  filter: drop-shadow(0 0 10px rgba(110, 211, 177, 0.42));
}
.calculatorOption.is-active span {
  color: #fff;
}
.calculatorOption.is-active small {
  color: rgba(233, 255, 248, 0.78);
}
.calculatorSeatChoice.is-active {
  border-color: rgba(110, 211, 177, 0.86);
  background:
    linear-gradient(
      135deg,
      rgba(15, 111, 92, 0.42),
      rgba(110, 211, 177, 0.13)),
    rgba(255, 255, 255, 0.065);
  box-shadow: 0 0 0 1px rgba(110, 211, 177, 0.22), 0 0 24px rgba(110, 211, 177, 0.17);
}
.calculatorToggle.is-active {
  border-color: rgba(110, 211, 177, 0.62);
  background:
    linear-gradient(
      135deg,
      rgba(15, 111, 92, 0.28),
      rgba(110, 211, 177, 0.08)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 1px rgba(110, 211, 177, 0.16), 0 0 22px rgba(110, 211, 177, 0.12);
}
.calculatorToggle.is-active::after {
  content: "\2713";
  position: absolute;
  top: 8px;
  right: 8px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 14px rgba(110, 211, 177, 0.36);
}
.calculatorToggle.is-active strong {
  color: #fff;
}
.calculatorToggle.is-active small {
  padding-right: 16px;
  color: #eafff8;
}
.calculatorBuildButton.calculatorServicesBuildButton {
  width: 100%;
  justify-content: space-between;
  min-height: 46px;
  margin-top: 0;
}
.heroVideo {
  object-position: center center;
}
.heroFinal {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 900ms ease;
}
.heroFinal.is-visible {
  opacity: 1;
}
.heroOverlay {
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(110, 211, 177, 0.16),
      transparent 36%),
    linear-gradient(
      90deg,
      rgba(2, 12, 10, 0.52) 0%,
      rgba(4, 22, 18, 0.32) 36%,
      rgba(4, 22, 18, 0.1) 66%,
      rgba(4, 22, 18, 0.01) 100%),
    linear-gradient(
      180deg,
      rgba(3, 9, 8, 0.04),
      rgba(3, 9, 8, 0.2));
}
@media (max-width: 760px) {
  .heroVideo {
    object-position: 58% center;
  }
  .heroFinal {
    object-position: 58% center;
  }
  .heroOverlay {
    background:
      radial-gradient(
        circle at 34% 20%,
        rgba(110, 211, 177, 0.14),
        transparent 36%),
      linear-gradient(
        180deg,
        rgba(2, 10, 8, 0.46) 0%,
        rgba(3, 14, 12, 0.26) 42%,
        rgba(3, 12, 10, 0.38) 100%),
      linear-gradient(
        90deg,
        rgba(2, 12, 10, 0.5) 0%,
        rgba(2, 12, 10, 0.18) 72%,
        rgba(2, 12, 10, 0.03) 100%);
  }
}
.hero .heroVideo,
.hero .heroFinal {
  z-index: 0;
}
.hero .heroFinal.is-visible {
  opacity: 1 !important;
}
.hero .heroOverlay {
  z-index: 1;
}
.hero .heroInner {
  z-index: 2;
  padding-bottom: clamp(150px, 17vh, 210px);
}
.heroCatalogDock {
  position: absolute;
  left: 50%;
  bottom: clamp(18px, 3.2vh, 34px);
  z-index: 3;
  width: min(1120px, calc(100% - 48px));
  overflow: visible;
  isolation: isolate;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition: opacity 580ms cubic-bezier(0.22, 1, 0.36, 1), transform 580ms cubic-bezier(0.22, 1, 0.36, 1);
}
.heroCatalogDock::before {
  content: "";
  position: absolute;
  left: 2%;
  right: 2%;
  bottom: 16px;
  z-index: 0;
  height: 76px;
  border-radius: 999px;
  background:
    radial-gradient(
      ellipse at center,
      rgba(0, 255, 224, 0.34) 0%,
      rgba(0, 245, 224, 0.16) 38%,
      rgba(0, 245, 224, 0) 76%),
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(32, 255, 224, 0.12) 18%,
      rgba(32, 255, 224, 0.2) 50%,
      rgba(32, 255, 224, 0.12) 82%,
      transparent 100%);
  filter: blur(34px);
  opacity: 0.42;
  pointer-events: none;
}
.heroCatalogDock.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  transition-delay: 240ms;
}
.heroDockTrack {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(14px, 1.6vw, 24px);
  width: 100%;
  padding: 12px 0 4px;
  isolation: isolate;
}
.heroDockTrack::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 26px;
  z-index: 0;
  width: 34%;
  height: 54px;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(110, 211, 177, 0.18) 44%,
      rgba(248, 250, 249, 0.16) 50%,
      rgba(110, 211, 177, 0.12) 58%,
      transparent 100%);
  filter: blur(22px);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-150%);
}
.heroCatalogDock.is-visible .heroDockTrack::before {
  animation: heroDockGlowSweep 760ms ease-out 1120ms both;
}
.heroDockItem {
  --dock-scale: 1;
  --dock-lift: 0px;
  --dock-index: 0;
  position: relative;
  z-index: 1;
  display: flex;
  flex: 0 1 118px;
  min-width: 98px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  color: rgba(248, 250, 249, 0.74);
  opacity: 0;
  filter: blur(8px);
  text-align: center;
  text-decoration: none;
  transform: translateY(var(--dock-lift)) scale(var(--dock-scale));
  transform-origin: bottom center;
  transition:
    transform 180ms ease-out,
    color 180ms ease-out,
    opacity 180ms ease-out,
    filter 180ms ease-out;
  will-change:
    transform,
    opacity,
    filter;
}
.heroCatalogDock.is-visible .heroDockItem {
  opacity: 1;
  filter: blur(0);
  animation: heroDockBubbleReveal 500ms cubic-bezier(0.22, 1, 0.36, 1) backwards;
  animation-delay: calc(250ms + (var(--dock-index) * 64ms));
}
.heroDockItem::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 35px;
  z-index: 1;
  width: 82px;
  height: 20px;
  border: 1px solid rgba(45, 255, 230, 0.75);
  border-radius: 999px;
  box-shadow:
    0 0 12px rgba(45, 255, 230, 0.72),
    0 0 28px rgba(45, 255, 230, 0.36),
    inset 0 0 10px rgba(45, 255, 230, 0.18);
  opacity: 0.72;
  pointer-events: none;
  transform: translateX(-50%) perspective(120px) rotateX(66deg) scaleY(0.46);
  transform-origin: center;
  transition:
    width 180ms ease-out,
    opacity 180ms ease-out,
    box-shadow 180ms ease-out;
}
.heroDockItem::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 0;
  width: 94px;
  height: 18px;
  border-radius: 999px;
  background:
    radial-gradient(
      ellipse at center,
      rgba(32, 255, 224, 0.78) 0%,
      rgba(32, 255, 224, 0.46) 34%,
      rgba(32, 255, 224, 0.14) 66%,
      transparent 100%);
  filter: blur(18px);
  opacity: 0.62;
  pointer-events: none;
  transform: translateX(-50%) scaleY(0.5);
  transition:
    width 180ms ease-out,
    height 180ms ease-out,
    opacity 180ms ease-out,
    filter 180ms ease-out;
}
.heroDockIcon {
  position: relative;
  display: grid;
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  isolation: isolate;
  z-index: 2;
}
.heroDockIcon::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  z-index: 0;
  width: 72px;
  height: 96px;
  border-radius: 999px;
  background:
    radial-gradient(
      ellipse at bottom,
      rgba(32, 255, 224, 0.28),
      rgba(32, 255, 224, 0.08) 46%,
      transparent 72%);
  filter: blur(18px);
  opacity: 0.22;
  pointer-events: none;
  transform: translateX(-50%);
  transition:
    opacity 180ms ease-out,
    height 180ms ease-out,
    filter 180ms ease-out;
}
.heroDockIcon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  z-index: 0;
  width: 90px;
  height: 26px;
  border-radius: 999px;
  background:
    radial-gradient(
      ellipse,
      rgba(0, 245, 224, 0.64),
      rgba(32, 255, 224, 0.28) 42%,
      rgba(26, 188, 156, 0) 72%);
  filter: blur(22px);
  opacity: 0.56;
  transform: translateX(-50%);
  transition:
    opacity 180ms ease-out,
    filter 180ms ease-out,
    width 180ms ease-out,
    height 180ms ease-out;
  pointer-events: none;
}
.heroDockIcon img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(1.08) contrast(1.02) drop-shadow(0 10px 14px rgba(0, 0, 0, 0.34)) drop-shadow(0 0 12px rgba(32, 255, 224, 0.2));
  transform: scale(1);
  transition: filter 180ms ease-out;
}
.heroDockLabel {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 118px;
  min-height: 28px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.15;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.55);
  transition:
    color 180ms ease-out,
    transform 180ms ease-out,
    text-shadow 180ms ease-out;
}
.heroDockItem.is-active,
.heroDockItem:hover {
  color: #fff;
}
.heroDockItem.is-active::after,
.heroDockItem:hover::after {
  width: 116px;
  opacity: 1;
  box-shadow:
    0 0 16px rgba(45, 255, 230, 0.9),
    0 0 42px rgba(45, 255, 230, 0.56),
    inset 0 0 14px rgba(45, 255, 230, 0.26);
}
.heroDockItem.is-active::before,
.heroDockItem:hover::before {
  width: 132px;
  height: 26px;
  opacity: 0.95;
  filter: blur(24px);
}
.heroDockItem.is-active .heroDockIcon,
.heroDockItem:hover .heroDockIcon {
  box-shadow: none;
}
.heroDockItem.is-active .heroDockIcon::after,
.heroDockItem:hover .heroDockIcon::after {
  width: 136px;
  height: 34px;
  opacity: 0.94;
  filter: blur(28px);
}
.heroDockItem.is-active .heroDockIcon::before,
.heroDockItem:hover .heroDockIcon::before {
  height: 128px;
  opacity: 0.52;
  filter: blur(24px);
}
.heroDockItem.is-active .heroDockIcon img,
.heroDockItem:hover .heroDockIcon img {
  filter: saturate(1.14) contrast(1.06) drop-shadow(0 16px 22px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 24px rgba(32, 255, 224, 0.52));
}
.heroDockItem.is-active .heroDockLabel,
.heroDockItem:hover .heroDockLabel {
  color: #6ed3b1;
  transform: translateY(-4px) scale(1.05);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.55), 0 0 18px rgba(110, 211, 177, 0.26);
}
@media (max-width: 1199px) {
  .hero .heroInner {
    padding-bottom: 172px;
  }
  .heroDockTrack {
    gap: 14px;
  }
  .heroDockItem {
    flex-basis: 102px;
    min-width: 88px;
  }
  .heroDockIcon {
    width: 68px;
    height: 68px;
  }
  .heroDockLabel {
    max-width: 92px;
    font-size: 11px;
  }
}
@media (max-width: 760px) {
  .calculatorBuildInline {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1199px) {
  .calculatorBuildInline {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .hero .heroInner {
    min-height: 100svh;
    padding-bottom: 138px;
  }
  .heroCatalogDock {
    right: 0;
    left: 0;
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 100%;
    padding: 0 0 0 14px;
    transform: translateY(20px);
    -webkit-mask-image:
      linear-gradient(
        90deg,
        transparent 0%,
        #000 8%,
        #000 86%,
        transparent 100%);
    mask-image:
      linear-gradient(
        90deg,
        transparent 0%,
        #000 8%,
        #000 86%,
        transparent 100%);
  }
  .heroCatalogDock::before {
    left: 4%;
    right: 4%;
    bottom: 12px;
    height: 58px;
    filter: blur(28px);
    opacity: 0.34;
  }
  .heroCatalogDock.is-visible {
    transform: translateY(0);
  }
  .heroDockTrack {
    justify-content: flex-start;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 14px 24px 8px 4px;
  }
  .heroDockTrack::-webkit-scrollbar {
    display: none;
  }
  .heroDockItem {
    flex: 0 0 86px;
    min-width: 86px;
    scroll-snap-align: center;
    transform: translateY(var(--dock-lift)) scale(var(--dock-scale));
  }
  .heroDockIcon {
    width: 54px;
    height: 54px;
  }
  .heroDockLabel {
    max-width: 78px;
    min-height: 26px;
    font-size: 10px;
    line-height: 1.12;
  }
  .heroDockItem::after {
    bottom: 32px;
    width: 66px;
    height: 16px;
    opacity: 0.6;
  }
  .heroDockItem::before {
    bottom: 27px;
    width: 72px;
    height: 14px;
    opacity: 0.48;
    filter: blur(16px);
  }
  .heroDockIcon::after {
    width: 74px;
    height: 20px;
    opacity: 0.48;
    filter: blur(18px);
  }
  .heroDockIcon::before {
    width: 54px;
    height: 72px;
    opacity: 0.18;
    filter: blur(15px);
  }
}
@keyframes heroDockBubbleReveal {
  0% {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(18px) scale(0.92);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(var(--dock-lift)) scale(var(--dock-scale));
  }
}
@keyframes heroDockGlowSweep {
  0% {
    opacity: 0;
    transform: translateX(-150%);
  }
  36% {
    opacity: 0.2;
  }
  72% {
    opacity: 0.14;
  }
  100% {
    opacity: 0;
    transform: translateX(330%);
  }
}
@media (hover: none), (pointer: coarse) {
  .heroDockItem:hover .heroDockIcon::after,
  .heroDockItem:focus .heroDockIcon::after,
  .heroDockItem:active .heroDockIcon::after {
    opacity: 0;
  }
  .heroDockItem:focus,
  .heroDockItem:active {
    color: rgba(248, 250, 249, 0.74);
    outline: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .heroCatalogDock,
  .heroDockItem,
  .heroDockItem::before,
  .heroDockItem::after,
  .heroCatalogDock::before,
  .heroDockTrack::before,
  .heroDockIcon,
  .heroDockIcon::after,
  .heroDockLabel {
    transition: none;
    animation: none !important;
  }
  .heroCatalogDock.is-visible {
    transition-delay: 0ms;
  }
  .heroCatalogDock.is-visible .heroDockItem {
    opacity: 1;
    filter: none;
  }
}
.calculatorBuildColumn .calculatorSketchCaption,
.calculatorSketchFrame .calculatorSketchCaption {
  left: auto !important;
  right: 16px !important;
  bottom: 16px !important;
  width: min(280px, calc(100% - 32px)) !important;
  max-width: 280px !important;
  display: grid !important;
  gap: 4px !important;
  padding: 9px 11px !important;
  border-radius: 14px !important;
  background:
    linear-gradient(
      135deg,
      rgba(3, 12, 10, 0.34),
      rgba(3, 12, 10, 0.08)) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 12px 26px rgba(0, 0, 0, 0.14) !important;
  backdrop-filter: blur(6px) !important;
}
.calculatorBuildColumn .calculatorSketchCaption strong,
.calculatorSketchFrame .calculatorSketchCaption strong {
  font-size: clamp(14px, 1.35vw, 18px) !important;
  line-height: 1.08 !important;
}
.calculatorBuildColumn .calculatorSketchCaption span,
.calculatorSketchFrame .calculatorSketchCaption span {
  font-size: 10.5px !important;
  line-height: 1.25 !important;
}
@media (max-width: 760px) {
  .calculatorBuildColumn .calculatorSketchCaption,
  .calculatorSketchFrame .calculatorSketchCaption {
    right: 10px !important;
    bottom: 10px !important;
    width: min(220px, calc(100% - 20px)) !important;
    padding: 8px 9px !important;
  }
}
.catalogShowroomPage,
.catalogCategoryPage {
  min-height: 100vh;
  color: #fff;
  background:
    radial-gradient(
      circle at 12% 8%,
      rgba(110, 211, 177, 0.14),
      transparent 34%),
    radial-gradient(
      circle at 92% 2%,
      rgba(15, 111, 92, 0.2),
      transparent 38%),
    linear-gradient(
      180deg,
      #020706 0%,
      #07100e 42%,
      #081815 100%);
}
.catalogShowroomHero,
.catalogCategoryHero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 76px;
  isolation: isolate;
}
.catalogShowroomHero {
  min-height: clamp(480px, 62vh, 620px);
  display: flex;
  align-items: flex-end;
  padding: 74px 0 18px;
}
.catalogShowroomHero::before,
.catalogShowroomSection::before,
.catalogCategoryBody::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px);
  background-size: 76px 76px;
  mask-image:
    linear-gradient(
      180deg,
      transparent,
      #000 18%,
      #000 76%,
      transparent);
}
.catalogShowroomHeroInner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 56px;
  align-items: end;
}
.catalogShowroomHero .breadcrumbs,
.catalogCategoryHero .breadcrumbs {
  margin-bottom: 28px;
}
.catalogShowroomHero h1,
.catalogCategoryHero h1 {
  max-width: 980px;
  margin: 16px 0 22px;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.95;
}
.catalogShowroomHero p,
.catalogCategoryHero p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.55;
}
.catalogShowroomActions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.catalogShowroomHeroCard {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(110, 211, 177, 0.22);
  border-radius: 26px;
  padding: 30px;
  background:
    radial-gradient(
      circle at 20% 10%,
      rgba(110, 211, 177, 0.18),
      transparent 36%),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
}
.catalogShowroomHeroCard span {
  display: inline-flex;
  margin-bottom: 48px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.catalogShowroomHeroCard strong {
  display: block;
  margin-bottom: 12px;
  font-size: 30px;
  line-height: 1;
}
.catalogShowroomHeroCard p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
}
.catalogShowroomSection,
.catalogCategoryBody {
  position: relative;
  overflow: hidden;
  padding: 12px 0 106px;
}
.catalogShowroomGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.catalogShowroomCard {
  height: 370px;
  min-height: 370px;
}
.catalogShowroomCard a {
  position: relative;
  display: block;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(110, 211, 177, 0.16);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  transform: translateY(0);
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease;
}
.catalogShowroomCard a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 50% 72%,
      rgba(110, 211, 177, 0.24),
      transparent 45%);
  transition: opacity 260ms ease;
}
.catalogShowroomCard img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  filter: saturate(1.05) contrast(1.05) brightness(0.88);
  transition: transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 760ms ease;
}
.catalogShowroomCard a:hover {
  transform: translateY(-6px);
  border-color: rgba(110, 211, 177, 0.5);
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.42), 0 0 36px rgba(110, 211, 177, 0.14);
}
.catalogShowroomCard a:hover::before {
  opacity: 1;
}
.catalogShowroomCard a:hover img {
  transform: scale(1.04);
  filter: saturate(1.1) contrast(1.08) brightness(0.98);
}
.catalogShowroomGlow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(2, 7, 6, 0.01),
      rgba(2, 7, 6, 0.46)),
    linear-gradient(
      90deg,
      rgba(2, 7, 6, 0.18),
      transparent 58%);
}
.catalogShowroomGlass {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  height: 142px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid rgba(110, 211, 177, 0.22);
  border-radius: 18px;
  padding: 13px;
  background: rgba(4, 18, 15, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  transition: background 220ms ease, border-color 220ms ease;
}
.catalogShowroomTop {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  min-height: 0;
}
.catalogShowroomCard a:hover .catalogShowroomGlass {
  border-color: rgba(110, 211, 177, 0.38);
  background: rgba(6, 28, 23, 0.72);
}
.catalogShowroomIcon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: var(--mint);
  background: rgba(110, 211, 177, 0.09);
  box-shadow: 0 0 26px rgba(110, 211, 177, 0.12);
  transition:
    color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}
.catalogShowroomCard a:hover .catalogShowroomIcon {
  color: #e9fff8;
  transform: translateY(-2px);
  box-shadow: 0 0 34px rgba(110, 211, 177, 0.24);
}
.catalogShowroomGlass strong {
  display: -webkit-box;
  color: #fff;
  font-size: 16px;
  line-height: 1.12;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.catalogShowroomGlass small {
  display: -webkit-box;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.42;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.catalogShowroomAction {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  margin-left: 51px;
  color: var(--mint);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.02em;
}
.catalogScrollIndicator {
  position: absolute;
  right: 50%;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 0;
  padding: 0;
  color: rgba(223, 247, 238, 0.82);
  background: transparent;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transform: translateX(50%);
}
.catalogScrollIndicatorArrows {
  display: grid;
  height: 24px;
}
.catalogScrollIndicatorArrows svg {
  grid-area: 1 / 1;
  color: var(--mint);
  opacity: 0.24;
  filter: drop-shadow(0 0 8px rgba(110, 211, 177, 0.46));
  animation: catalogScrollArrow 1800ms ease-in-out infinite;
}
.catalogScrollIndicatorArrows svg:nth-child(2) {
  transform: translateY(5px);
  animation-delay: 180ms;
}
.catalogScrollIndicatorArrows svg:nth-child(3) {
  transform: translateY(10px);
  animation-delay: 360ms;
}
@keyframes catalogScrollArrow {
  0%, 80%, 100% {
    opacity: 0.2;
  }
  34% {
    opacity: 1;
  }
}
.catalogShowroomAction svg {
  transition: transform 180ms ease;
}
.catalogShowroomCard a:hover .catalogShowroomAction svg {
  transform: translateX(4px);
}
.catalogCategoryHero {
  min-height: 650px;
  display: flex;
  align-items: flex-end;
}
.catalogCategoryBackdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.catalogCategoryBackdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.06) brightness(0.52);
}
.catalogCategoryBackdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(2, 7, 6, 0.88),
      rgba(2, 7, 6, 0.48) 48%,
      rgba(2, 7, 6, 0.76)),
    linear-gradient(
      180deg,
      rgba(2, 7, 6, 0.18),
      rgba(2, 7, 6, 0.84));
}
.catalogCategoryHeroInner {
  position: relative;
  z-index: 1;
}
.catalogCategoryHero .backPill {
  margin-bottom: 28px;
}
.catalogCategoryBodyGrid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.35fr);
  gap: 30px;
  align-items: start;
}
.catalogCategoryInfo,
.catalogOfferSticky {
  border: 1px solid rgba(110, 211, 177, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(
      circle at 18% 0%,
      rgba(110, 211, 177, 0.12),
      transparent 36%),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px);
}
.catalogCategoryInfo {
  padding: clamp(26px, 4vw, 52px);
}
.catalogCategoryInfo h2 {
  max-width: 780px;
  margin: 14px 0 18px;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1;
}
.catalogCategoryInfo p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.64;
}
.catalogCategoryFacts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.catalogCategoryFacts span {
  border: 1px solid rgba(110, 211, 177, 0.22);
  border-radius: 999px;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(110, 211, 177, 0.08);
  font-size: 13px;
  font-weight: 800;
}
.catalogOfferSticky {
  position: sticky;
  top: 108px;
  padding: 26px;
}
.catalogOfferSticky svg {
  color: var(--mint);
}
.catalogOfferSticky h3 {
  margin: 18px 0 10px;
  color: #fff;
  font-size: 28px;
  line-height: 1;
}
.catalogOfferSticky p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 15px;
  line-height: 1.58;
}
.catalogOfferSticky .button {
  width: 100%;
}
.catalogCategoryShowroomHero {
  position: relative;
  min-height: calc(100svh - 76px);
  overflow: hidden;
  display: flex;
  align-items: stretch;
  isolation: isolate;
  padding: 34px 0 38px;
}
.catalogCategoryHeroMedia,
.catalogCategoryHeroShade {
  position: absolute;
  inset: 0;
}
.catalogCategoryHeroMedia {
  z-index: -3;
}
.catalogCategoryHeroMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--category-hero-position, center center);
  filter: saturate(1.06) contrast(1.06) brightness(1);
  transform: scale(1.01);
}
.catalogCategoryHeroShade {
  z-index: -2;
  background:
    radial-gradient(
      circle at 22% 34%,
      rgba(110, 211, 177, 0.12),
      transparent 34%),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.58) 0%,
      rgba(0, 0, 0, 0.38) 38%,
      rgba(0, 0, 0, 0.16) 70%,
      rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(
      180deg,
      rgba(2, 7, 6, 0.02),
      rgba(2, 7, 6, 0.2));
}
.catalogCategoryShowroomHero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 148px;
  z-index: -1;
  background:
    linear-gradient(
      180deg,
      transparent,
      rgba(2, 7, 6, 0.44) 84%);
  pointer-events: none;
}
.catalogCategoryShowroomInner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1320px, calc(100% - 48px));
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(36px, 4.5vw, 72px);
  align-items: center;
}
.catalogCategoryHeroContent {
  position: relative;
  isolation: isolate;
  max-width: 920px;
  text-shadow: 0 4px 26px rgba(0, 0, 0, 0.62);
}
.catalogCategoryHeroContent::before {
  content: "";
  position: absolute;
  inset: -42px -60px -38px -54px;
  z-index: -1;
  background:
    radial-gradient(
      ellipse at 18% 48%,
      rgba(2, 7, 6, 0.56),
      rgba(2, 7, 6, 0.2) 54%,
      transparent 78%);
  filter: blur(18px);
  pointer-events: none;
}
.catalogCategoryHeroContent .breadcrumbs {
  margin-bottom: 18px;
}
.catalogCategoryBackRow {
  margin-bottom: 22px;
}
.catalogCategoryBack {
  min-height: 40px;
  margin: 0;
  padding: 0 16px;
  border-color: rgba(110, 211, 177, 0.32);
  border-radius: 999px;
  background: rgba(12, 88, 74, 0.55);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  font-size: 13px;
}
.catalogCategoryBack:hover {
  border-color: rgba(110, 211, 177, 0.58);
  background: rgba(15, 111, 92, 0.7);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24), 0 0 22px rgba(110, 211, 177, 0.16);
}
.catalogCategoryHeroContent h1 {
  max-width: 720px;
  margin: 12px 0 18px;
  font-size: clamp(56px, 6vw, 92px);
  line-height: 0.95;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
}
.catalogCategoryHeroTitleLine {
  display: block;
  white-space: nowrap;
}
.catalogCategoryHeroContent p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.42vw, 21px);
  line-height: 1.58;
}
.catalogCategoryHeroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}
.catalogCategoryHeroBenefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 780px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.catalogCategoryHeroBenefits span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.25;
}
.catalogCategoryHeroBenefits svg {
  flex: 0 0 auto;
  color: var(--mint);
}
.catalogCategorySidebar {
  align-self: center;
  width: 340px;
  max-width: 100%;
  justify-self: end;
}
.catalogCategorySidebarInner {
  position: sticky;
  top: 100px;
  overflow: hidden;
  border: 1px solid rgba(110, 211, 177, 0.2);
  border-radius: 28px;
  padding: 28px;
  background:
    radial-gradient(
      circle at 18% 0%,
      rgba(110, 211, 177, 0.14),
      transparent 38%),
    rgba(4, 18, 15, 0.78);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.44), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
}
.catalogCategorySidebarInner::before {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin: 22px 0 24px;
  background:
    linear-gradient(
      90deg,
      var(--mint),
      transparent);
}
.catalogCategorySidebarInner > svg {
  color: var(--mint);
}
.catalogCategorySidebarInner h2 {
  max-width: 230px;
  margin: 16px 0 0;
  color: #fff;
  font-size: 22px;
  line-height: 1.16;
  text-transform: uppercase;
}
.catalogCategorySidebarInner ul {
  display: grid;
  gap: 14px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}
.catalogCategorySidebarInner li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.35;
}
.catalogCategorySidebarInner li svg {
  color: rgba(110, 211, 177, 0.92);
}
.catalogCategorySidebarInner .button {
  width: 100%;
  min-height: 52px;
  margin-top: 10px;
  padding-inline: 14px;
  font-size: 13px;
  line-height: 1.22;
}
.catalogCategoryContacts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.catalogCategoryContacts span {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}
.catalogCategoryContacts a {
  display: inline-flex;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 9px 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    background 180ms ease;
}
.catalogCategoryContacts a:hover {
  border-color: rgba(110, 211, 177, 0.54);
  color: var(--mint);
  background: rgba(110, 211, 177, 0.08);
}
.catalogCategorySections {
  position: relative;
  overflow: hidden;
  padding: 68px 0 104px;
  background:
    radial-gradient(
      circle at 12% 16%,
      rgba(110, 211, 177, 0.12),
      transparent 34%),
    linear-gradient(
      180deg,
      #020706,
      #071411 55%,
      #020706);
}
.catalogCategorySectionHead {
  max-width: 820px;
  margin-bottom: 24px;
}
.catalogCategorySectionHead h2,
.catalogGalleryTitle h2 {
  margin: 14px 0 16px;
  font-size: clamp(32px, 4.1vw, 50px);
  line-height: 1;
}
.catalogCategorySectionHead p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.65;
}
.catalogResourceGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.catalogResourceCard,
.catalogIncludedBlock,
.catalogGalleryBlock {
  border: 1px solid rgba(110, 211, 177, 0.16);
  border-radius: 26px;
  background:
    radial-gradient(
      circle at 18% 0%,
      rgba(110, 211, 177, 0.1),
      transparent 38%),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(20px);
}
.catalogResourceCard {
  display: flex;
  min-height: 198px;
  flex-direction: column;
  padding: 20px;
}
.catalogResourceCard svg {
  color: var(--mint);
}
.catalogResourceCard h3 {
  margin: 20px 0 8px;
  color: #fff;
  font-size: 20px;
}
.catalogResourceCard p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  line-height: 1.55;
}
.catalogResourceCard button {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  border: 0;
  padding: 0;
  color: var(--mint);
  background: transparent;
  font-weight: 850;
  cursor: pointer;
}
.catalogIncludedBlock {
  margin-top: 22px;
  padding: 28px;
}
.catalogIncludedChips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.catalogIncludedChips span {
  border: 1px solid rgba(110, 211, 177, 0.22);
  border-radius: 999px;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(110, 211, 177, 0.08);
  font-size: 13px;
  font-weight: 800;
}
.catalogGalleryBlock {
  margin-top: 22px;
  padding: 28px;
}
.catalogGalleryTitle {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}
.catalogGalleryTitle h2 {
  margin-bottom: 0;
}
.catalogGalleryGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.catalogGalleryCard {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
}
.catalogGalleryCard img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  filter: saturate(0.95) brightness(0.78);
  transition: transform 520ms ease, filter 520ms ease;
}
.catalogGalleryCard span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  border-radius: 16px;
  padding: 12px 13px;
  color: #fff;
  background: rgba(3, 12, 10, 0.6);
  backdrop-filter: blur(16px);
  font-weight: 800;
}
.catalogGalleryCard:hover img {
  transform: scale(1.04);
  filter: saturate(1.05) brightness(0.9);
}
@media (max-width: 1199px) {
  .catalogShowroomHeroInner,
  .catalogCategoryBodyGrid {
    grid-template-columns: 1fr 1fr;
  }
  .catalogCategoryShowroomInner {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .catalogCategoryShowroomHero {
    min-height: auto;
    padding-top: 36px;
  }
  .catalogCategorySidebar {
    width: min(100%, 420px);
    justify-self: start;
  }
  .catalogCategorySidebarInner {
    position: relative;
    top: auto;
  }
  .catalogShowroomGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .catalogGalleryGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .stickyCatalogDock.is-visible {
    max-height: 58px;
  }
  .stickyCatalogDockInner {
    width: 100%;
    min-height: 56px;
    justify-content: flex-start;
    gap: 12px;
    padding: 4px 14px 5px;
    -webkit-mask-image:
      linear-gradient(
        90deg,
        transparent 0%,
        #000 4%,
        #000 94%,
        transparent 100%);
    mask-image:
      linear-gradient(
        90deg,
        transparent 0%,
        #000 4%,
        #000 94%,
        transparent 100%);
  }
  .stickyCatalogDockItem {
    min-width: 60px;
    font-size: 8px;
  }
  .stickyCatalogDockIcon {
    width: 29px;
    height: 29px;
  }
  .catalogShowroomHero,
  .catalogCategoryHero {
    padding: 118px 0 52px;
  }
  .catalogShowroomHero {
    min-height: min(560px, 70svh);
    padding-top: 92px;
    padding-bottom: 52px;
  }
  .catalogCategoryShowroomHero {
    min-height: auto;
    padding: 28px 0 42px;
  }
  .catalogCategoryHeroMedia img {
    object-position: var(--category-hero-position-mobile, var(--category-hero-position, center center));
  }
  .catalogCategoryHeroShade {
    background:
      radial-gradient(
        circle at 58% 24%,
        rgba(110, 211, 177, 0.1),
        transparent 34%),
      linear-gradient(
        90deg,
        rgba(2, 7, 6, 0.54) 0%,
        rgba(2, 7, 6, 0.3) 58%,
        rgba(2, 7, 6, 0.08) 100%),
      linear-gradient(
        180deg,
        rgba(2, 7, 6, 0.08),
        rgba(2, 7, 6, 0.28));
  }
  .catalogCategoryHeroContent::before {
    inset: -26px -28px -24px -26px;
    background:
      radial-gradient(
        ellipse at 20% 46%,
        rgba(2, 7, 6, 0.58),
        rgba(2, 7, 6, 0.2) 58%,
        transparent 82%);
    filter: blur(15px);
  }
  .catalogShowroomHeroInner,
  .catalogCategoryBodyGrid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .catalogShowroomHero h1,
  .catalogCategoryHero h1 {
    font-size: clamp(42px, 13vw, 54px);
  }
  .catalogCategoryHeroContent h1 {
    max-width: 100%;
    font-size: clamp(38px, 11vw, 52px);
    line-height: 1;
  }
  .catalogCategoryHeroTitleLine {
    white-space: normal;
  }
  .catalogCategoryHeroContent p {
    font-size: 16px;
  }
  .catalogShowroomActions,
  .catalogShowroomActions .button {
    width: 100%;
  }
  .catalogCategoryHeroActions,
  .catalogCategoryHeroActions .button {
    width: 100%;
  }
  .catalogCategoryHeroBenefits {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 34px;
  }
  .catalogCategoryHeroBenefits span {
    font-size: 13px;
    overflow-wrap: normal;
    word-break: normal;
  }
  .catalogCategorySidebar {
    width: 100%;
  }
  .catalogCategorySidebarInner {
    padding: 22px;
  }
  .contactRequisitesCard.aboutRequisitesCard {
    padding: 20px;
  }
  .contactRequisitesCard.aboutRequisitesCard dl {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .catalogShowroomHeroCard {
    display: none;
  }
  .catalogShowroomSection,
  .catalogCategoryBody {
    padding: 28px 0 82px;
  }
  .catalogShowroomGrid {
    grid-template-columns: 1fr;
  }
  .catalogShowroomCard {
    height: 344px;
    min-height: 344px;
  }
  .catalogCategoryHero {
    min-height: 580px;
  }
  .catalogOfferSticky {
    position: relative;
    top: auto;
  }
  .catalogCategorySections {
    padding: 54px 0 78px;
  }
  .catalogResourceGrid,
  .catalogGalleryGrid {
    grid-template-columns: 1fr;
  }
  .catalogResourceCard,
  .catalogIncludedBlock,
  .catalogGalleryBlock {
    border-radius: 22px;
  }
  .catalogGalleryCard,
  .catalogGalleryCard img {
    min-height: 230px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .catalogScrollIndicatorArrows svg {
    animation: none;
    opacity: 0.68;
  }
}
@media (max-width: 1120px) {
  .mobileMenuBackdrop {
    position: fixed;
    inset: 76px 0 0;
    z-index: 79;
    display: block;
    background: rgba(1, 8, 7, 0.62);
    backdrop-filter: blur(5px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }
  .mobileMenuBackdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  .mobilePanel {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    z-index: 80;
    max-height: calc(100dvh - 76px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  body.menu-open .stickyCatalogDock {
    max-height: 0 !important;
    border-color: transparent !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(-8px);
  }
}
@media (max-width: 760px) {
  .mobileMenuBackdrop {
    top: 66px;
  }
  .mobilePanel {
    top: 66px;
    max-height: calc(100dvh - 66px);
  }
  .mobileMenuHead {
    padding-top: 14px;
  }
  .mobileNav {
    gap: 2px;
    padding-top: 10px;
    padding-bottom: max(18px, env(safe-area-inset-bottom));
  }
  .mobileNav a:not(.button) {
    padding: 12px 0;
  }
  .calculatorBuildColumn .calculatorSketchFrame {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
    background: #06120f;
  }
  .calculatorBuildColumn .calculatorSketchFrame img,
  .calculatorBuildColumn .office-layer,
  .calculatorBuildColumn .office-build-video,
  .calculatorBuildColumn .office-empty-preview {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
    transform: none;
    background: #06120f;
  }
  .calculatorBuildColumn .office-build {
    height: 100%;
    aspect-ratio: auto;
    background: #06120f;
  }
  .projectIndexPage .innerHeroText h1,
  .projectIndexPage .seoIntro h2,
  .projectHero h1,
  .projectHero p,
  .portfolioMainText strong,
  .caseContent strong {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
  }
  .projectIndexPage .innerHeroText h1 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.02;
  }
  .projectIndexPage .innerHeroText p {
    font-size: 15px;
    line-height: 1.55;
  }
  .catalogShowroomGlass {
    right: 10px;
    bottom: 10px;
    left: 10px;
    height: 158px;
    padding: 12px;
    background: rgba(4, 18, 15, 0.9);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 -18px 40px rgba(2, 7, 6, 0.18);
  }
  .catalogShowroomGlow {
    background:
      linear-gradient(
        180deg,
        rgba(2, 7, 6, 0.02) 34%,
        rgba(2, 7, 6, 0.76) 100%),
      linear-gradient(
        90deg,
        rgba(2, 7, 6, 0.18),
        transparent 58%);
  }
  .catalogResourceGrid {
    gap: 10px;
  }
  .catalogResourceCard {
    min-height: 0;
    padding: 15px;
  }
  .catalogResourceCard svg {
    width: 20px;
    height: 20px;
  }
  .catalogResourceCard h3 {
    margin: 11px 0 5px;
    font-size: 17px;
  }
  .catalogResourceCard p {
    font-size: 13px;
    line-height: 1.45;
  }
  .catalogResourceCard button {
    margin-top: 12px;
    font-size: 13px;
  }
}
.catalogCategoryShowroomInner {
  grid-template-columns: minmax(0, 1fr) 340px;
}
.catalogCategoryHeroContent {
  width: min(100%, 680px);
  max-width: 680px;
  min-width: 0;
}
.catalogCategoryHeroContent h1 {
  width: min(100%, 50vw);
  max-width: 680px;
  font-size: clamp(56px, 5vw, 84px);
  line-height: 0.96;
}
.catalogCategoryHeroTitleLine {
  max-width: 100%;
  white-space: normal;
  text-wrap: balance;
}
.catalogCategoryHeroContent p {
  max-width: 30ch;
  color: rgba(255, 255, 255, 0.88);
  text-wrap: pretty;
}
.catalogCategoryHeroActions .button {
  min-height: 52px;
}
.catalogCategoryHeroBenefits {
  max-width: 680px;
}
.catalogCategoryHeroBenefits span {
  min-height: 48px;
  align-items: flex-start;
}
.catalogCategoryHeroMedia img {
  filter: saturate(1.08) contrast(1.05) brightness(1.12);
}
.catalogCategoryHeroShade {
  background:
    radial-gradient(
      circle at 22% 34%,
      rgba(110, 211, 177, 0.12),
      transparent 34%),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.52) 0%,
      rgba(0, 0, 0, 0.3) 38%,
      rgba(0, 0, 0, 0.12) 70%,
      rgba(0, 0, 0, 0.04) 100%),
    linear-gradient(
      180deg,
      rgba(2, 7, 6, 0.02),
      rgba(2, 7, 6, 0.16));
}
.catalogShowroomCard,
.catalogShowroomCard a {
  overflow: clip;
}
.catalogShowroomCard img {
  border-radius: inherit;
}
.menuButton svg {
  transition: transform 180ms ease, opacity 180ms ease;
}
body.menu-open .menuButton svg {
  transform: rotate(90deg);
}
@media (min-width: 1200px) {
  .catalogCategoryShowroomInner {
    grid-template-columns: minmax(0, 680px) 340px;
    justify-content: space-between;
  }
  .catalogShowroomGlow::after {
    height: 196px;
  }
  .catalogShowroomGlass {
    background: rgba(4, 18, 15, 0.9);
  }
}
@media (min-width: 761px) and (max-width: 1199px) {
  .catalogCategoryShowroomInner {
    grid-template-columns: minmax(0, 1fr) 318px;
    gap: 28px;
  }
  .catalogCategorySidebar {
    width: 318px;
  }
  .catalogCategoryHeroContent h1 {
    width: 100%;
    max-width: 590px;
    font-size: clamp(48px, 5.9vw, 68px);
  }
}
@media (max-width: 760px) {
  .catalogCategoryHeroContent {
    width: 100%;
    max-width: 100%;
  }
  .catalogCategoryHeroContent h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(36px, 10.4vw, 48px);
    line-height: 1;
  }
  .catalogCategoryHeroContent p {
    max-width: 31ch;
    font-size: 15.5px;
    line-height: 1.55;
  }
  .catalogCategorySectionHead {
    max-width: 100%;
  }
  .catalogCategorySectionHead h2,
  .catalogGalleryTitle h2 {
    max-width: 100%;
    font-size: clamp(28px, 8.4vw, 36px);
    line-height: 1.04;
    text-wrap: balance;
    overflow-wrap: normal;
    word-break: normal;
  }
  .catalogCategoryHeroBenefits span {
    min-height: 0;
  }
  .projectHero .projectFacts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 16px;
  }
  .projectHero .projectFacts span {
    min-width: 0;
    min-height: 72px;
    padding: 10px 8px;
    border-radius: 10px;
    font-size: 9px;
    line-height: 1.2;
    letter-spacing: 0;
    overflow-wrap: normal;
    word-break: normal;
  }
  .projectHero .projectFacts strong {
    margin-bottom: 5px;
    font-size: 17px;
    line-height: 1;
    overflow-wrap: normal;
    white-space: nowrap;
  }
}
.catalogShowroomGlow::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 184px;
  background:
    linear-gradient(
      180deg,
      rgba(2, 9, 8, 0) 0%,
      rgba(2, 12, 10, 0.94) 34%,
      rgba(2, 12, 10, 0.99) 100%);
}
.catalogCategoryHeroContent {
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.82), 0 8px 30px rgba(0, 0, 0, 0.68);
}
.catalogCategoryHeroContent::before {
  inset: -46px -70px -42px -58px;
  background:
    radial-gradient(
      ellipse at 18% 48%,
      rgba(2, 7, 6, 0.74),
      rgba(2, 7, 6, 0.38) 52%,
      rgba(2, 7, 6, 0.08) 76%,
      transparent 88%);
}
.catalogCategoryHeroContent .breadcrumbs,
.catalogCategoryHeroBenefits {
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.86);
}
@media (max-width: 760px) {
  .mobileMenuBackdrop {
    top: 66px;
  }
  .projectHero .breadcrumbs {
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }
  .projectHero .breadcrumbs::-webkit-scrollbar {
    display: none;
  }
  .projectHero .breadcrumbsCurrent {
    flex: 0 1 auto;
    max-width: min(54vw, 210px);
  }
  .hero h1,
  .catalogShowroomHero h1,
  .catalogCategoryHeroContent h1,
  .projectIndexPage .innerHeroText h1,
  .projectHero h1,
  .sectionHeader h2,
  .seoIntro h2 {
    max-width: 100%;
    letter-spacing: 0;
    text-wrap: balance;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }
  .hero p,
  .catalogShowroomHero p,
  .catalogCategoryHeroContent p,
  .projectIndexPage .innerHeroText p,
  .projectHero p,
  .sectionHeader p,
  .seoIntro p {
    max-width: 100%;
    text-wrap: pretty;
    word-break: normal;
    overflow-wrap: break-word;
  }
}
@media (min-width: 1200px) {
  .catalogShowroomGlow::after {
    height: 196px;
  }
  .catalogShowroomGlass {
    background: rgba(4, 18, 15, 0.9);
  }
}
@media (max-width: 760px) {
  .catalogCategoryShowroomInner {
    width: min(1320px, calc(100% - 32px));
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    align-items: start;
  }
  .catalogCategorySidebar {
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
  }
  .projectHero .projectFacts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 16px;
  }
  .projectHero .projectFacts span {
    min-width: 0;
    min-height: 72px;
    padding: 10px 8px;
    border-radius: 10px;
    font-size: 9px;
    line-height: 1.2;
    letter-spacing: 0;
    overflow-wrap: normal;
    word-break: normal;
  }
  .projectHero .projectFacts strong {
    margin-bottom: 5px;
    font-size: 17px;
    line-height: 1;
    overflow-wrap: normal;
    white-space: nowrap;
  }
}
