/*
Theme Name: VRRUM Redesign
Theme URI: https://vrrum.ru/
Author: Codex
Description: Local WordPress redesign for VRRUM based on the supplied Figma direction and current site content.
Version: 1.0.0
Text Domain: vrrum-redesign
*/

:root {
  --bg: #0b0b0c;
  --bg-2: #121315;
  --panel: #18191b;
  --panel-2: #222326;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.24);
  --text: #f4f6f8;
  --muted: #a5abb4;
  --muted-2: #737b87;
  --blue: #1295ff;
  --blue-2: #00c2ff;
  --red: #f04747;
  --green: #53d486;
  --max: 1600px;
  --radius: 4px;
  --site-header-height: 96px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--site-header-height);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

img,
svg,
video,
iframe {
  max-width: 100%;
}

img {
  display: block;
  height: auto;
}

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

p {
  margin: 0 0 1em;
}

ul,
ol {
  padding-left: 1.25rem;
}

button,
input,
textarea {
  font: inherit;
}

.site {
  min-height: 100vh;
  overflow: hidden;
  padding-top: var(--site-header-height);
  background: #0f1012;
}

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

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(11, 11, 12, 0.94);
  backdrop-filter: blur(16px);
}

.admin-bar .site-header {
  top: 32px;
}

.header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 22px;
  min-height: 66px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 112px;
  font-weight: 900;
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0;
}

.brand-mark {
  display: none;
}

.brand-text span {
  color: var(--red);
}

.primary-nav {
  display: flex;
  justify-content: center;
  min-width: 0;
}

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

.primary-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  color: var(--muted);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.primary-nav a:hover,
.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a,
.primary-nav .current-menu-ancestor > a {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.header-contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  min-width: 158px;
  font-size: 12px;
  color: var(--muted);
}

.header-contacts a {
  color: var(--text);
  font-weight: 800;
}

.button,
.wp-block-button__link,
.submit,
.cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 9px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button:hover,
.wp-block-button__link:hover,
.submit:hover,
.cta-link:hover {
  transform: translateY(-1px);
  background: #0b78d4;
}

.button.is-ghost,
.cta-link.is-ghost {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}

.button.is-ghost:hover,
.cta-link.is-ghost:hover {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.1);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  padding: 22px 0 28px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 74% 12%, rgba(18, 149, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #101113 0%, #0b0b0c 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 1px;
  background: var(--line);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(18, 149, 255, 0.06), transparent 42%);
}

.hero-frame {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 0.72fr);
  align-items: stretch;
  gap: 22px;
  min-height: 338px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 338px;
  padding: clamp(22px, 3.8vw, 42px) 0;
}

.hero-visual {
  position: relative;
  min-height: 338px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #161719;
}

.hero-photo {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(9, 10, 12, 0.9) 0%, rgba(9, 10, 12, 0.32) 52%, rgba(9, 10, 12, 0.08) 100%),
    var(--hero-image);
  background-position: center;
  background-size: cover;
  filter: saturate(0.92) contrast(1.04);
}

.hero-mini {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 4px;
  width: min(260px, calc(100% - 36px));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(11, 12, 14, 0.78);
  padding: 16px;
  backdrop-filter: blur(12px);
}

.hero-mini span,
.hero-mini em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  text-transform: uppercase;
}

.hero-mini strong {
  font-size: 34px;
  line-height: 0.95;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--blue);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(34px, 4.15vw, 58px);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.page-hero h1 {
  font-size: clamp(32px, 4vw, 54px);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hero h1 span,
.section-title span,
.page-hero h1 span {
  color: var(--blue-2);
}

.hero-lead {
  max-width: 620px;
  margin: 16px 0 0;
  color: #d8dde5;
  font-size: clamp(15px, 1.2vw, 18px);
}

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

.hero-frame > *,
.section-head > *,
.craft-grid > *,
.page-layout > *,
.form-grid > * {
  min-width: 0;
}

.mini-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(13, 15, 19, 0.78);
  padding: 14px;
  backdrop-filter: blur(10px);
}

.mini-card strong {
  display: block;
  font-size: 28px;
  line-height: 1;
}

.mini-card span {
  color: var(--muted);
}

.section {
  padding: 46px 0;
}

.section.is-tight {
  padding: 28px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.64fr);
  align-items: end;
  gap: 34px;
  margin-bottom: 22px;
}

.section-title {
  margin: 0;
  font-size: clamp(28px, 3.1vw, 48px);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

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

.stat-card,
.service-card,
.work-card,
.contact-card,
.content-shell,
.form-card,
.side-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #17181a;
}

.stat-card {
  min-height: 104px;
  padding: 18px;
}

.stat-card .number {
  display: block;
  margin-bottom: 14px;
  color: var(--text);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  line-height: 0.9;
}

.stat-card .label {
  color: var(--muted);
}

.service-grid,
.work-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.work-card {
  position: relative;
  overflow: hidden;
  min-height: 206px;
  aspect-ratio: 1.42 / 1;
  background: var(--panel);
}

.service-card img,
.work-card img,
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card img,
.work-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.86;
  filter: saturate(0.92) contrast(1.05) brightness(0.78);
  transition: transform 0.45s ease, opacity 0.3s ease;
}

.service-card::after,
.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 9, 11, 0.12) 0%, rgba(8, 9, 11, 0.64) 66%, rgba(8, 9, 11, 0.88) 100%),
    linear-gradient(90deg, rgba(18, 149, 255, 0.14), transparent 42%);
}

.service-card:hover img,
.work-card:hover img {
  transform: scale(1.045);
  opacity: 0.9;
}

.card-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: inherit;
  flex-direction: column;
  justify-content: flex-end;
  gap: 9px;
  padding: 14px;
}

.card-title {
  margin: 0;
  font-size: 17px;
  line-height: 1.08;
  letter-spacing: 0;
}

.card-meta {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.card-index {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 900;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.arrow-link::after {
  content: "->";
  color: var(--blue-2);
}

.about-band {
  background: #111214;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.craft-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.12fr);
  align-items: center;
  gap: 40px;
}

.craft-copy {
  color: #dfe3e8;
  font-size: 16px;
}

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

.feature-item {
  border-left: 2px solid var(--blue);
  background: rgba(255, 255, 255, 0.045);
  padding: 14px 16px;
  color: var(--muted);
  font-size: 14px;
}

.page-hero {
  position: relative;
  padding: 48px 0 30px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(11, 11, 12, 0.98), rgba(11, 11, 12, 0.82)),
    var(--page-image);
  background-position: center;
  background-size: cover;
}

.breadcrumbs {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  min-height: 32px;
  margin: 0 0 18px;
  color: #626262;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.breadcrumbs a,
.breadcrumbs-current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 6px 16px;
  color: #626262;
  border-radius: 16px;
  white-space: nowrap;
}

.breadcrumbs a:first-child {
  padding-left: 0;
}

.breadcrumbs-current {
  color: #eef4fd;
}

.breadcrumbs-separator {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  background: url("assets/figma/breadcrumb-arrow.svg") center / 24px 24px no-repeat;
}

.page-lead {
  max-width: 880px;
  margin-top: 14px;
  color: #cdd3dc;
  font-size: 15px;
}

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

.content-shell {
  padding: clamp(18px, 2vw, 28px);
  overflow-x: auto;
  overflow-y: visible;
}

.content-shell h2,
.content-shell h3,
.content-shell h4 {
  margin: 1.4em 0 0.55em;
  line-height: 1.12;
  letter-spacing: 0;
}

.content-shell h2 {
  font-size: clamp(24px, 2.35vw, 34px);
}

.content-shell h3 {
  font-size: clamp(20px, 2vw, 26px);
}

.content-shell > *:first-child,
.entry-content > *:first-child {
  margin-top: 0;
}

.content-shell a {
  color: var(--blue-2);
}

.content-shell table,
.content-shell .uss_price_table,
.content-shell .price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.content-shell th,
.content-shell td {
  border-bottom: 1px solid var(--line);
  padding: 11px 12px;
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}

.content-shell tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.035);
}

.content-shell img {
  border-radius: var(--radius);
}

.content-shell .catalog_order_block,
.content-shell .buttons,
.content-shell .fc_form_tml,
.content-shell form {
  display: none;
}

.content-shell .uss_catalog_tabs_navigation,
.content-shell .content_menu,
.content-shell .path,
.content-shell .bread,
.content-shell .breadcrumbs {
  display: none;
}

.content-shell .uss_img_ico_box,
.content-shell .image,
.content-shell .images,
.content-shell .gallery,
.content-shell .photoalbum {
  margin: 20px 0;
}

.content-shell .uss_catalog_sameelements,
.content-shell .same-elements {
  margin-top: 28px;
}

.side-panel {
  position: sticky;
  top: 86px;
  padding: 16px;
}

.side-panel h3 {
  margin: 0 0 14px;
  font-size: 20px;
}

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

.side-list a {
  display: block;
  padding: 9px 10px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  color: var(--muted);
  font-size: 13px;
}

.side-list a:hover,
.side-list .is-active a {
  color: #fff;
  background: rgba(0, 140, 255, 0.18);
}

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

.contact-card {
  min-height: 126px;
  padding: 16px;
}

.contact-card h3 {
  margin: 0 0 12px;
  font-size: 17px;
}

.contact-card p {
  color: var(--muted);
  font-size: 14px;
}

.map-frame {
  position: relative;
  width: 100%;
  height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(0, 140, 255, 0.12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, #15181d, #20242a);
  background-size: 42px 42px, 42px 42px, auto;
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  filter: grayscale(0.12) contrast(0.95);
}

.vrrum-yandex-map {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #e7ece4;
}

.map-frame iframe {
  z-index: 1;
}

.map-frame.is-yandex-map-ready .vrrum-yandex-map {
  z-index: 2;
}

.map-frame.is-yandex-map-ready iframe {
  opacity: 0;
  pointer-events: none;
}

.map-frame.is-yandex-map-error .vrrum-yandex-map {
  display: none;
}

.vrrum-map-balloon {
  min-width: 220px;
  color: #1e1e20;
  font-family: "Wix Madefor Display", Arial, Helvetica, sans-serif;
}

.vrrum-map-balloon p {
  margin: 0 0 10px;
  color: #626262;
  font-size: 14px;
  line-height: 18px;
}

.vrrum-map-balloon ul {
  display: grid;
  gap: 8px;
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
}

.vrrum-map-balloon li {
  display: grid;
  gap: 2px;
}

.vrrum-map-balloon strong,
.vrrum-map-balloon span,
.vrrum-map-balloon a {
  font-size: 14px;
  line-height: 18px;
}

.vrrum-map-balloon strong {
  color: #1e1e20;
  font-weight: 700;
}

.vrrum-map-balloon span {
  color: #626262;
}

.vrrum-map-balloon a {
  color: #2196f3;
  font-weight: 500;
}

.form-card {
  padding: clamp(18px, 2.4vw, 28px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  gap: 12px;
  align-items: end;
}

.form-field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.form-card label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.form-card input:not([type="checkbox"]),
.form-card textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 11px 12px;
  outline: none;
}

.form-card textarea {
  min-height: 120px;
  resize: vertical;
}

.form-card input:not([type="checkbox"]):focus,
.form-card textarea:focus {
  border-color: rgba(0, 194, 255, 0.7);
}

.form-card input:not([type="checkbox"])[aria-invalid="true"],
.form-card textarea[aria-invalid="true"],
.footer-form input:not([type="checkbox"])[aria-invalid="true"],
.contacts-question-form input:not([type="checkbox"])[aria-invalid="true"] {
  border-color: #ff4758;
  box-shadow: 0 1px 0 #ff4758;
}

.form-error {
  display: block;
  color: #ff7684;
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
}

.form-error[hidden] {
  display: none;
}

.form-consent {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
  margin: 0;
  color: #dfe3e8;
  font-size: 13px;
  line-height: 18px;
}

.form-consent input[type="checkbox"] {
  flex: 0 0 20px;
  width: 20px;
  min-height: 20px;
  height: 20px;
  margin: 0;
  accent-color: #2196f3;
}

.form-consent span:not(.form-error) {
  flex: 1 1 220px;
}

.form-consent a {
  color: #2196f3;
  text-decoration: none;
}

.form-consent .form-error {
  flex-basis: 100%;
  padding-left: 30px;
}

.has-error input[type="checkbox"] {
  outline: 2px solid #ff4758;
  outline-offset: 2px;
}

.form-note {
  margin-top: 12px;
  color: var(--muted-2);
  font-size: 12px;
}

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

.gallery-grid a {
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 0.78;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.gallery-grid img {
  transition: transform 0.35s ease;
}

.gallery-grid a:hover img {
  transform: scale(1.04);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #0b0b0c;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1.2fr;
  gap: 36px;
  padding: 30px 0;
}

.footer-col h3 {
  margin: 0 0 12px;
  font-size: 15px;
  text-transform: uppercase;
}

.footer-col p,
.footer-col a {
  color: var(--muted);
  font-size: 13px;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  font-size: 13px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.72);
}

.modal.is-open {
  display: grid;
}

.modal-dialog {
  width: min(100%, 640px);
  border: 1px solid #3b3b3b;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 100%, rgba(33, 150, 243, 0.20), transparent 42%),
    linear-gradient(180deg, #1e1e20 0%, #151515 100%);
  padding: 40px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.44);
  pointer-events: auto;
}

.modal-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.modal-top h2 {
  margin: 0;
  color: #ffffff;
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
}

.modal-top p {
  max-width: 420px;
  margin: 14px 0 0;
  color: #a5abb4;
  font-size: 16px;
  line-height: 22px;
}

.modal-close {
  display: inline-grid;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border: 1px solid #3b3b3b;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.modal-close:hover,
.modal-close:focus-visible {
  border-color: #626262;
  background: rgba(255, 255, 255, 0.10);
}

.modal-dialog .form-card {
  display: grid;
  gap: 20px;
  padding: 0;
  border: 0;
  background: transparent;
}

.modal-dialog .form-grid {
  grid-template-columns: 1fr;
  gap: 16px;
}

.modal-dialog .form-field {
  color: #eef4fd;
  font-size: 14px;
  font-weight: 500;
}

.modal-dialog .form-card input:not([type="checkbox"]),
.modal-dialog .form-card textarea {
  height: 60px;
  border: 0;
  border-bottom: 1px solid #7e8387;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 16px;
}

.modal-dialog .form-card input:not([type="checkbox"])::placeholder,
.modal-dialog .form-card textarea::placeholder {
  color: #7e8387;
}

.modal-dialog .form-submit {
  width: 100%;
  height: 60px;
  border: 0;
  background: #2196f3;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 760px) {
  .modal {
    align-items: flex-start;
    overflow-y: auto;
    padding: 12px;
  }

  .modal-dialog {
    margin: 16px 0;
    padding: 24px;
  }

  .modal-top {
    gap: 14px;
  }

  .modal-top h2 {
    font-size: 30px;
    line-height: 34px;
  }

  .modal-top p {
    font-size: 15px;
    line-height: 20px;
  }
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  display: none;
  max-width: 360px;
  border: 1px solid rgba(83, 212, 134, 0.46);
  border-radius: var(--radius);
  background: #0d1a13;
  padding: 14px 16px;
  color: #d9ffe7;
}

.toast.is-visible {
  display: block;
}

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

@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .primary-nav {
    position: fixed;
    inset: 66px 0 auto;
    display: none;
    justify-content: start;
    padding: 18px 16px;
    border-bottom: 1px solid var(--line);
    background: rgba(5, 6, 8, 0.96);
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav ul {
    display: grid;
    gap: 4px;
  }

  .primary-nav a {
    width: 100%;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .header-contacts {
    display: none;
  }

  .hero-frame,
  .craft-grid,
  .page-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-visual,
  .hero-frame {
    min-height: auto;
  }

  .hero-visual {
    min-height: 320px;
  }

  .side-panel {
    position: static;
  }

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

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

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .header-inner {
    min-height: 58px;
  }

  .primary-nav {
    inset: 58px 0 auto;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding: 22px 0 30px;
  }

  .hero-frame {
    gap: 14px;
  }

  .hero-copy {
    min-height: auto;
    padding: 26px 0 8px;
  }

  .hero-visual {
    min-height: 260px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(28px, 8.6vw, 32px);
    line-height: 1.03;
  }

  .hero-actions .button {
    flex: 1 1 100%;
    min-width: 0;
  }

  .section {
    padding: 36px 0;
  }

  .section-head,
  .footer-main,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .service-grid,
  .work-grid,
  .contacts-grid,
  .feature-list,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .work-card {
    min-height: 210px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* Figma MCP parity layer */
:root {
  --bg: #1e1e20;
  --bg-2: #111111;
  --panel: #111111;
  --panel-2: #3b3b3b;
  --line: rgba(255, 255, 255, 0.15);
  --text: #ffffff;
  --muted: #7e8387;
  --blue: #2196f3;
  --max: 1430px;
  --radius: 0;
}

body {
  background: #1e1e20;
  color: #ffffff;
  font-family: "Wix Madefor Display", Arial, Helvetica, sans-serif;
}

.site {
  background: #1e1e20;
}

.container {
  width: min(100% - 48px, 1430px);
  max-width: 1430px;
  padding-right: 0;
  padding-left: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  box-sizing: border-box;
  width: 100%;
  height: 96px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: #1e1e20;
  backdrop-filter: none;
}

.site-header[data-site-accent] {
  --site-accent-color: #478bff;
  --site-accent-rgb: 71, 139, 255;
}

.site-header[data-site-accent="red"] {
  --site-accent-color: #ff4758;
  --site-accent-rgb: 255, 71, 88;
}

.site-header[data-site-accent="green"] {
  --site-accent-color: #ddff47;
  --site-accent-rgb: 221, 255, 71;
}

.site-header[data-site-accent="teal"] {
  --site-accent-color: #47ffe7;
  --site-accent-rgb: 71, 255, 231;
}

.site-header[data-site-accent="blue"] {
  --site-accent-color: #478bff;
  --site-accent-rgb: 71, 139, 255;
}

.site-header[data-site-accent="purple"] {
  --site-accent-color: #cb47ff;
  --site-accent-rgb: 203, 71, 255;
}

.site-header[data-site-accent="orange"] {
  --site-accent-color: #ff7a33;
  --site-accent-rgb: 255, 122, 51;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  height: 95px;
  min-height: 95px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 160px;
  min-width: 160px;
}

.brand img {
  display: block;
  width: 160px;
  height: 18px;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  justify-content: flex-start;
  flex: 0 0 368px;
  width: 368px;
  min-width: 0;
}

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

.primary-nav a {
  position: relative;
  min-height: 32px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.site-header[data-site-accent] .primary-nav a:hover,
.site-header[data-site-accent] .primary-nav a:focus-visible,
.site-header[data-site-accent] .primary-nav .current-menu-item > a,
.site-header[data-site-accent] .primary-nav .current_page_item > a,
.site-header[data-site-accent] .primary-nav .current-menu-ancestor > a,
.site-header[data-site-accent] .primary-nav .is-active > a,
.site-header[data-site-accent] .primary-nav a[aria-current="page"] {
  color: var(--site-accent-color);
}

.primary-nav a:hover,
.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a,
.primary-nav .current-menu-ancestor > a,
.primary-nav .is-active > a,
.primary-nav a[aria-current="page"] {
  color: #ffffff;
  background: transparent;
}

.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a,
.primary-nav .current-menu-ancestor > a,
.primary-nav .is-active > a,
.primary-nav a[aria-current="page"] {
  color: #2196f3;
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 0 0 74px;
  width: 74px;
}

.header-socials a {
  display: inline-grid;
  place-items: center;
  width: 27px;
  height: 27px;
}

.header-socials img {
  width: 27px;
  height: 27px;
}

.header-phone {
  flex: 0 0 auto;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  white-space: nowrap;
}

.site-header[data-site-accent] .header-phone:hover,
.site-header[data-site-accent] .header-phone:focus-visible {
  color: var(--site-accent-color);
}

.header-hours {
  display: grid;
  gap: 4px;
  flex: 0 0 auto;
}

.header-hours span {
  color: #7e8387;
  font-size: 14px;
  line-height: 18px;
}

.header-hours strong {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  height: 45px;
  min-height: 45px;
  padding: 0 20px;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  color: #3b3b3b;
  font-size: 15px;
  font-weight: 500;
  line-height: 15px;
  cursor: pointer;
}

.site-header[data-site-accent] .header-cta:hover,
.site-header[data-site-accent] .header-cta:focus-visible {
  background: var(--site-accent-color);
  color: #111111;
}

.button,
.wp-block-button__link,
.submit,
.cta-link {
  min-height: 60px;
  padding: 0 32px;
  border: 0;
  border-radius: 0;
  background: #2196f3;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 18px;
  box-shadow: none;
}

.button:hover,
.wp-block-button__link:hover,
.submit:hover,
.cta-link:hover {
  transform: none;
  background: #2196f3;
}

.button.is-ghost,
.cta-link.is-ghost {
  border: 0;
  background: #3b3b3b;
  color: #ffffff;
}

.button.is-ghost:hover,
.cta-link.is-ghost:hover {
  background: #3b3b3b;
}

.figma-hero {
  height: 700px;
  padding: 40px 0;
  overflow: hidden;
  background: #1e1e20;
}

.hero::before,
.hero::after {
  content: none;
}

.hero-panel {
  position: relative;
  display: flex;
  align-items: center;
  height: 620px;
  min-height: 620px;
  overflow: hidden;
  padding: 40px 60px;
  background:
    linear-gradient(161.747deg, rgba(0, 0, 0, 0.84) 44.829%, rgba(23, 23, 23, 0.16) 78.398%),
    var(--hero-image) center center / cover no-repeat;
}

.hero-panel .hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(1120px, 100%);
  min-height: auto;
  padding: 0;
}

.hero h1,
.hero-panel h1 {
  max-width: 1120px;
  margin: 0;
  color: #ffffff;
  font-size: 60px;
  font-weight: 700;
  line-height: 68px;
  letter-spacing: 0;
  text-transform: none;
}

.hero-lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: #ffffff;
  font-size: 26px;
  font-weight: 400;
  line-height: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.catalog-tabs {
  height: 140px;
  background: #1e1e20;
  overflow-anchor: none;
}

.catalog-tabs.has-scroll-left .tabs-shell::before {
  opacity: 1;
}

.catalog-tabs.has-scroll-right .tabs-shell::after {
  opacity: 1;
}

.catalog-tabs-inner {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  height: 140px;
  padding: 40px 0;
}

.tabs-shell {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  height: 50px;
}

.tabs-shell::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 74px;
  height: 50px;
  background: linear-gradient(90deg, #1e1e20 0%, rgba(30, 30, 32, 0) 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.tabs-shell::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 96px;
  height: 50px;
  background: linear-gradient(90deg, rgba(30, 30, 32, 0) 0%, #1e1e20 78%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.tabs-viewport {
  position: relative;
  width: 100%;
  height: 50px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scrollbar-width: none;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}

.tabs-viewport::-webkit-scrollbar {
  display: none;
}

.tabs-viewport.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  user-select: none;
}

.tabs-list {
  position: relative;
  top: 3px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-width: max-content;
  padding-right: 0;
  border-bottom: 1px solid #7e8387;
}

.tabs-list a,
.tabs-list button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  padding: 0 14px;
  border-bottom: 1px solid transparent;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  background: transparent;
  color: #7e8387;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  white-space: nowrap;
  cursor: pointer;
  scroll-snap-align: start;
}

.tabs-list a.is-active,
.tabs-list button.is-active {
  border-bottom-color: #2196f3;
  color: #2196f3;
}

.tabs-list button:focus-visible {
  outline: 0;
  box-shadow: inset 0 -2px 0 #2196f3;
}

.tabs-fade {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  display: none;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  width: 110px;
  height: 50px;
  background: transparent;
  pointer-events: none;
}

.tabs-arrow {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  background: #3b3b3b;
  cursor: pointer;
  pointer-events: auto;
  transition: background-color 0.18s ease, opacity 0.18s ease;
}

.tabs-arrow:hover,
.tabs-arrow:focus-visible {
  background: #4a4a4a;
}

.tabs-arrow:focus-visible {
  outline: 1px solid #2196f3;
  outline-offset: 3px;
}

.tabs-arrow:disabled,
.tabs-arrow.is-disabled {
  opacity: 0.38;
  cursor: default;
}

.tabs-arrow img {
  width: 9px;
  height: 16px;
}

.tabs-arrow.is-prev img {
  transform: rotate(180deg);
}

.catalog-search {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 clamp(340px, 27vw, 420px);
  width: clamp(340px, 27vw, 420px);
  height: 64px;
  padding: 4px 20px;
  border-bottom: 1px solid #7e8387;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.catalog-search img {
  width: 24px;
  height: 24px;
}

.catalog-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #ffffff;
  font-size: 18px;
  line-height: 24px;
}

.catalog-search input::placeholder {
  color: #7e8387;
  opacity: 1;
}

.catalog-search:focus-within {
  border-bottom-color: #2196f3;
}

.services-section {
  min-height: 0;
  padding: 60px 0 44px;
  background: #1e1e20;
  overflow-anchor: none;
}

[data-service-filter-active="true"] .services-section {
  min-height: 0;
}

.figma-section-title {
  margin: 0 0 40px;
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 0;
  text-transform: none;
}

.figma-section-title span {
  color: #2196f3;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 350px);
  gap: 10px;
  align-items: start;
}

.service-card {
  --service-card-stop-0: 255, 71, 88;
  --service-card-stop-1: 191, 49, 62;
  --service-card-stop-2: 159, 38, 49;
  --service-card-stop-3: 127, 26, 36;
  --service-card-stop-4: 99, 24, 31;
  --service-card-stop-5: 72, 22, 26;
  --service-card-stop-6: 44, 19, 22;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 350px;
  height: 380px;
  min-height: 0;
  overflow: hidden;
  padding: 20px;
  border: 0;
  border-radius: 0;
  background: #111111;
  aspect-ratio: auto;
  transition: opacity 0.2s ease, filter 0.2s ease, outline-color 0.2s ease;
}

.service-card[data-service-accent="green"] {
  --service-card-stop-0: 221, 255, 71;
  --service-card-stop-1: 185, 223, 60;
  --service-card-stop-2: 149, 191, 49;
  --service-card-stop-3: 113, 159, 38;
  --service-card-stop-4: 76, 127, 26;
  --service-card-stop-5: 62, 99, 24;
  --service-card-stop-6: 47, 72, 22;
}

.service-card[data-service-accent="teal"] {
  --service-card-stop-0: 71, 255, 231;
  --service-card-stop-1: 49, 186, 179;
  --service-card-stop-2: 38, 151, 153;
  --service-card-stop-3: 26, 116, 127;
  --service-card-stop-4: 24, 92, 99;
  --service-card-stop-5: 22, 67, 72;
  --service-card-stop-6: 19, 42, 44;
}

.service-card[data-service-accent="blue"] {
  --service-card-stop-0: 71, 139, 255;
  --service-card-stop-1: 49, 93, 191;
  --service-card-stop-2: 38, 71, 159;
  --service-card-stop-3: 26, 48, 127;
  --service-card-stop-4: 24, 40, 99;
  --service-card-stop-5: 22, 33, 72;
  --service-card-stop-6: 19, 25, 44;
}

.service-card[data-service-accent="purple"] {
  --service-card-stop-0: 203, 71, 255;
  --service-card-stop-1: 170, 60, 223;
  --service-card-stop-2: 137, 49, 191;
  --service-card-stop-3: 104, 38, 159;
  --service-card-stop-4: 71, 26, 127;
  --service-card-stop-5: 58, 24, 99;
  --service-card-stop-6: 44, 22, 72;
}

.service-card[data-service-accent="orange"] {
  --service-card-stop-0: 255, 122, 51;
  --service-card-stop-1: 191, 96, 39;
  --service-card-stop-2: 127, 70, 26;
  --service-card-stop-3: 99, 57, 24;
  --service-card-stop-4: 72, 43, 22;
  --service-card-stop-5: 44, 30, 19;
  --service-card-stop-6: 31, 24, 18;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      ellipse 254px 234px at 100% 100%,
      rgba(var(--service-card-stop-0), 0.46) 0%,
      rgba(var(--service-card-stop-1), 0.46) 24.17%,
      rgba(var(--service-card-stop-2), 0.46) 36.26%,
      rgba(var(--service-card-stop-3), 0.46) 48.34%,
      rgba(var(--service-card-stop-4), 0.46) 61.26%,
      rgba(var(--service-card-stop-5), 0.46) 74.17%,
      rgba(var(--service-card-stop-6), 0.46) 87.08%,
      rgba(17, 17, 17, 0.46) 100%
    ),
    #111111;
  opacity: 0.9;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.service-card:hover::before,
.service-card:focus-within::before {
  opacity: 1;
}

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

.service-card::after {
  content: none;
}

.service-card-media {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 100%;
  height: 185px;
  margin-bottom: 0;
  overflow: hidden;
}

.service-card img,
.service-card-media img {
  position: absolute;
  top: -11.42%;
  left: 0;
  z-index: auto;
  width: 100%;
  max-width: none;
  height: 122.83%;
  object-fit: cover;
  opacity: 1;
  filter: none;
  transition: none;
}

.service-card:hover img {
  transform: none;
  opacity: 1;
}

.services-section.is-service-section-hidden,
.service-card.is-service-filter-hidden,
.service-card.is-search-hidden {
  display: none;
}

.service-time {
  position: absolute;
  left: 0;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 10px 20px 0 0;
  background: #111111;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  color: #eef4fd;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  white-space: nowrap;
}

.service-card-copy {
  display: flex;
  flex: 1 0 0;
  min-height: 0;
  flex-direction: column;
  gap: 8px;
  padding-top: 0;
}

.service-card-copy h3 {
  margin: 0;
  overflow: visible;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
  text-overflow: clip;
  white-space: normal;
}

.service-card-copy h3 a {
  display: block;
  color: inherit;
}

.service-card-copy p {
  display: block;
  margin: 0;
  overflow: visible;
  color: #7e8387;
  font-size: 15px;
  font-weight: 500;
  line-height: 18px;
}

.service-actions {
  display: flex;
  gap: 20px;
  width: 100%;
}

.service-more,
.service-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  min-height: 45px;
  padding: 0 20px;
  border: 0;
  border-radius: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 15px;
  white-space: nowrap;
  cursor: pointer;
}

.service-more {
  flex: 0 0 auto;
  background: #3b3b3b;
  color: #ffffff;
}

.service-order {
  flex: 1 1 auto;
  background: #ffffff;
  color: #3b3b3b;
}

.seo-section,
.works-showcase,
.team-section,
.reviews-section {
  padding: 60px 0;
  background: #1e1e20;
}

.seo-section {
  min-height: 1032px;
}

.works-showcase {
  min-height: 788px;
}

.team-section {
  min-height: 970px;
}

.reviews-section {
  min-height: 570px;
}

.seo-stack {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1430px;
}

.seo-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  width: min(100%, 800px);
}

.seo-copy h2 {
  margin: 0;
  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
}

.seo-copy h3 {
  margin: 0;
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  line-height: 28px;
}

.seo-copy p {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  line-height: 27.9px;
}

.seo-link {
  display: inline-flex;
  border: 0;
  background: transparent;
  color: #2196f3;
  font-size: 18px;
  font-weight: 400;
  line-height: 27.9px;
  text-decoration: underline;
  text-underline-position: from-font;
  cursor: pointer;
}

.figma-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: #ffffff;
  list-style: none;
  width: 100%;
}

.figma-list li {
  position: relative;
  padding-left: 28px;
  font-size: 18px;
  font-weight: 400;
  line-height: 27.9px;
}

.figma-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  border-right: 2px solid #2196f3;
  border-bottom: 2px solid #2196f3;
  transform: rotate(-45deg);
}

.figma-list.is-numbered {
  counter-reset: figma-counter;
}

.figma-list.is-numbered li {
  counter-increment: figma-counter;
  padding-left: 60px;
}

.figma-list.is-numbered li::before {
  content: "/" counter(figma-counter);
  top: 0;
  width: 40px;
  height: auto;
  border: 0;
  color: #2196f3;
  font-weight: 400;
  letter-spacing: 2px;
  transform: none;
}

.store-page {
  background: #1e1e20;
  color: #ffffff;
}

.store-title-band h1 {
  text-transform: none;
}

.store-spotlight {
  padding: 58px 0 52px;
  background: #1e1e20;
}

.store-spotlight-panel {
  display: grid;
  grid-template-columns: minmax(0, 540px) minmax(0, 670px);
  justify-content: space-between;
  gap: 80px;
  min-height: 565px;
  padding: 40px;
  background: #1a1a1a;
}

.store-spotlight-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

.store-spotlight-copy h2 {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
  line-height: 44px;
  text-transform: none;
}

.store-spotlight-copy > p {
  max-width: 430px;
  margin: 0 0 28px;
  color: #eef4fd;
  font-size: 16px;
  line-height: 22px;
}

.store-spotlight-more {
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  margin-bottom: auto;
  padding: 0 24px;
  background: #2196f3;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  line-height: 15px;
}

.store-spotlight-facts {
  display: grid;
  gap: 20px;
  width: 100%;
  margin-top: 56px;
}

.store-spotlight-facts article {
  display: grid;
  grid-template-columns: 45px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}

.store-spotlight-facts article > span {
  position: relative;
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  background: #3b3b3b;
}

.store-spotlight-facts article > span::before {
  content: "";
  width: 13px;
  height: 13px;
  border-right: 2px solid #2196f3;
  border-bottom: 2px solid #2196f3;
  transform: rotate(-45deg);
}

.store-spotlight-facts strong {
  display: block;
  margin: 0 0 4px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
}

.store-spotlight-facts p {
  margin: 0;
  color: #7e8387;
  font-size: 15px;
  line-height: 18px;
}

.store-spotlight-media {
  display: grid;
  grid-template-rows: 282px 1fr;
  gap: 10px;
  min-width: 0;
}

.store-spotlight-main,
.store-spotlight-thumbs a {
  position: relative;
  display: block;
  overflow: hidden;
  background: #7e8387;
}

.store-spotlight-main img,
.store-spotlight-thumbs img {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  transition: opacity 180ms ease, transform 180ms ease;
}

.store-spotlight.is-works-changing .store-spotlight-main img,
.store-spotlight.is-works-changing .store-spotlight-thumbs img {
  opacity: 0.76;
  transform: scale(1.015);
}

.store-spotlight-main::after,
.store-spotlight-thumbs a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  pointer-events: none;
}

.store-spotlight-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.store-spotlight-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 50px;
  margin-top: 24px;
}

.store-spotlight-nav span,
.store-spotlight-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #7e8387;
  cursor: pointer;
}

.store-spotlight-nav span.is-active,
.store-spotlight-dot.is-active {
  width: 12px;
  height: 12px;
  background: #ffffff;
}

.store-spotlight-nav span:focus-visible,
.store-spotlight-dot:focus-visible {
  outline: 2px solid #2196f3;
  outline-offset: 4px;
}

.store-reviews {
  padding-top: 0;
}

.store-map .map-frame {
  height: 650px;
}

.showcase-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
  margin-bottom: 40px;
}

.showcase-title {
  display: grid;
  gap: 20px;
  color: #ffffff;
}

.showcase-head h2 {
  margin: 0;
  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
}

.showcase-head h2 span {
  color: #ffffff;
}

.showcase-title p {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.showcase-head .button {
  flex: 0 0 auto;
  width: auto;
  min-width: 234px;
  height: 60px;
  justify-content: center;
  padding: 0 32px;
  background: #ffffff;
  color: #3b3b3b;
  font-size: 18px;
  line-height: 18px;
}

.works-layout {
  display: grid;
  grid-template-columns: 590px minmax(0, 800px);
  gap: 40px;
  align-items: start;
}

.work-feature,
.work-mini,
.team-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: #111111;
}

.work-feature {
  width: 590px;
  height: 550px;
}

.work-feature img,
.work-mini img {
  position: absolute;
  top: 0;
  max-width: none;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.18s ease;
}

.work-feature img {
  left: 0;
  width: 635px;
}

.work-mini img {
  left: -1.64%;
  width: 124.07%;
}

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

.works-showcase.is-works-changing .work-feature img,
.works-showcase.is-works-changing .work-mini img {
  opacity: 0.78;
}

.work-feature::after,
.work-mini::after,
.team-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 12%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 72%, rgba(0, 0, 0, 0.5) 84%);
}

.work-feature span,
.work-mini span,
.team-card div {
  position: absolute;
  z-index: 1;
  left: 20px;
  right: 20px;
  top: 20px;
  bottom: auto;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
}

.work-feature em {
  position: absolute;
  z-index: 1;
  left: 40px;
  bottom: 40px;
  display: inline-flex;
  height: 60px;
  align-items: center;
  padding: 0 23px;
  background: transparent;
  color: #ffffff;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
}

.work-feature em::before,
.work-feature em::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 13px;
  pointer-events: none;
  background-image:
    linear-gradient(#ffffff, #ffffff),
    linear-gradient(#ffffff, #ffffff),
    linear-gradient(#ffffff, #ffffff),
    linear-gradient(#ffffff, #ffffff);
  background-repeat: no-repeat;
  background-size: 13px 1px, 1px 13px, 13px 1px, 1px 13px;
}

.work-feature em::before {
  left: 0;
  background-position: left top, left top, left bottom, left bottom;
}

.work-feature em::after {
  right: 0;
  background-position: right top, right top, right bottom, right bottom;
}

.work-feature span {
  left: 40px;
  right: 40px;
  top: 40px;
  font-size: 28px;
  line-height: 28px;
}

.works-aside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  height: 550px;
}

.works-aside > p {
  width: min(100%, 664px);
  margin: 0;
  color: #ffffff;
  font-size: 20px;
  line-height: 24px;
}

.works-side-row {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.work-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 335px);
  gap: 10px;
}

.work-mini {
  width: 335px;
  height: 360px;
}

.work-mini::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 20%, rgba(0, 0, 0, 0) 31%, rgba(0, 0, 0, 0) 100%);
}

.work-mini span {
  font-size: 20px;
  line-height: 24px;
}

.works-arrows {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.works-arrow {
  appearance: none;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #3b3b3b;
  cursor: pointer;
  transition: background 0.18s ease, opacity 0.18s ease, transform 0.18s ease;
}

.works-arrow:hover,
.works-arrow:focus-visible {
  background: #4a4a4a;
}

.works-arrow:focus-visible {
  outline: 2px solid #2196f3;
  outline-offset: 3px;
}

.works-arrow:active:not(:disabled) {
  transform: scale(0.96);
}

.works-arrow:disabled,
.works-arrow.is-disabled {
  cursor: default;
  opacity: 0.45;
}

.works-arrow img {
  width: 9px;
  height: 16px;
  pointer-events: none;
}

.works-arrow.is-prev img {
  transform: rotate(180deg);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.team-card {
  height: 380px;
}

.team-card::after {
  top: auto;
  height: 103px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.team-card div {
  display: grid;
  gap: 8px;
  left: 16px;
  right: 24px;
  top: auto;
  bottom: 16px;
}

.team-card strong {
  font-size: 20px;
  line-height: 20px;
}

.team-card span {
  color: #7e8387;
  font-size: 15px;
  line-height: 18px;
}

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

.review-card {
  min-height: 210px;
  padding: 24px;
  background: #111111;
}

.review-card div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.review-card strong {
  font-size: 18px;
  line-height: 22px;
}

.review-card span,
.review-card p {
  color: #ffffff;
  font-size: 14px;
  line-height: 20px;
}

.review-card span {
  color: #7e8387;
  white-space: nowrap;
}

.map-section {
  background: #1e1e20;
}

.map-section .map-frame {
  width: 100%;
  height: 650px;
  border: 0;
  border-radius: 0;
}

.service-detail-page {
  --service-heading-accent: #478bff;
  --service-heading-rgb: 71, 139, 255;
  background: #1e1e20;
  color: #ffffff;
}

.service-detail-page[data-service-accent="red"] {
  --service-heading-accent: #ff4758;
  --service-heading-rgb: 255, 71, 88;
}

.service-detail-page[data-service-accent="green"] {
  --service-heading-accent: #ddff47;
  --service-heading-rgb: 221, 255, 71;
}

.service-detail-page[data-service-accent="teal"] {
  --service-heading-accent: #47ffe7;
  --service-heading-rgb: 71, 255, 231;
}

.service-detail-page[data-service-accent="blue"] {
  --service-heading-accent: #478bff;
  --service-heading-rgb: 71, 139, 255;
}

.service-detail-page[data-service-accent="purple"] {
  --service-heading-accent: #cb47ff;
  --service-heading-rgb: 203, 71, 255;
}

.service-detail-page[data-service-accent="orange"] {
  --service-heading-accent: #ff7a33;
  --service-heading-rgb: 255, 122, 51;
}

.service-detail-page .price-table-title,
.service-detail-page .service-detail-price .price-table-title,
.service-detail-page .price-empty h2,
.service-detail-page .service-section-head h2,
.service-detail-page .service-detail-copy h2,
.service-detail-page .service-detail-copy h3,
.service-detail-page .showcase-head h2,
.service-detail-page .contacts-reviews h2 {
  color: var(--service-heading-accent);
}

.service-detail-page .showcase-head h2 span,
.service-detail-page .contacts-reviews h2 span {
  color: inherit;
}

.service-detail-title {
  --service-accent-rgb: 127, 26, 36;
  --service-accent-bright-rgb: 255, 71, 88;
  position: relative;
  min-height: 148px;
  overflow: hidden;
  background: #1e1e20;
}

.service-detail-title[data-service-accent="red"] {
  --service-accent-rgb: 127, 26, 36;
  --service-accent-bright-rgb: 255, 71, 88;
}

.service-detail-title[data-service-accent="green"] {
  --service-accent-rgb: 76, 127, 26;
  --service-accent-bright-rgb: 221, 255, 71;
}

.service-detail-title[data-service-accent="teal"] {
  --service-accent-rgb: 26, 116, 127;
  --service-accent-bright-rgb: 71, 255, 231;
}

.service-detail-title[data-service-accent="blue"] {
  --service-accent-rgb: 26, 48, 127;
  --service-accent-bright-rgb: 71, 139, 255;
}

.service-detail-title[data-service-accent="purple"] {
  --service-accent-rgb: 71, 26, 127;
  --service-accent-bright-rgb: 203, 71, 255;
}

.service-detail-title[data-service-accent="orange"] {
  --service-accent-rgb: 127, 70, 26;
  --service-accent-bright-rgb: 255, 122, 51;
}

.service-detail-title::before {
  content: "VRRUM!";
  position: absolute;
  left: max(52px, calc((100vw - 1430px) / 2 - 145px));
  top: 26px;
  color: rgba(var(--service-accent-rgb), 0.55);
  background: linear-gradient(
    90deg,
    rgba(var(--service-accent-bright-rgb), 0.26) 0%,
    rgba(var(--service-accent-rgb), 0.50) 26%,
    rgba(var(--service-accent-rgb), 0.30) 58%,
    rgba(var(--service-accent-rgb), 0.08) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 110px;
  font-weight: 800;
  line-height: 110px;
  opacity: 0.92;
  pointer-events: none;
  -webkit-text-fill-color: transparent;
}

.service-detail-title .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: none;
  min-height: 148px;
  margin: 0;
  padding-left: max(156px, calc((100vw - 1430px) / 2));
  padding-right: max(24px, calc((100vw - 1430px) / 2));
  padding-top: 0;
  padding-bottom: 0;
}

.service-detail-title h1 {
  margin: 0;
  max-width: 1120px;
  color: #ffffff;
  font-size: 60px;
  font-weight: 700;
  line-height: 68px;
  text-transform: none;
  text-wrap: balance;
}

.service-detail-price {
  padding: 28px 0 48px;
  background: #1e1e20;
}

.service-detail-price .container {
  overflow-x: auto;
}

.service-detail-price .figma-price-table {
  height: auto;
  min-height: 0;
  table-layout: fixed;
}

.service-detail-price .price-table-title {
  margin: 0 0 28px;
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  line-height: 34px;
}

.service-detail-price .figma-price-table th,
.service-detail-price .figma-price-table td {
  padding: 12px 16px;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  vertical-align: middle;
}

.service-detail-price .figma-price-table thead th {
  height: 56px;
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 14px;
  line-height: 18px;
}

.service-detail-price .figma-price-table thead th:first-child {
  width: 24%;
  min-width: 0;
  padding-left: 18px;
  padding-right: 18px;
  color: #ffffff;
  font-size: 14px;
  line-height: 18px;
}

.service-detail-price .figma-price-table:not(.is-wide-price-table) th:first-child,
.service-detail-price .figma-price-table:not(.is-wide-price-table) td:first-child {
  width: 24%;
}

.service-detail-price .figma-price-table:not(.is-wide-price-table) th:nth-child(2),
.service-detail-price .figma-price-table:not(.is-wide-price-table) td:nth-child(2) {
  width: 52%;
}

.service-detail-price .figma-price-table:not(.is-wide-price-table) th:nth-child(n+3),
.service-detail-price .figma-price-table:not(.is-wide-price-table) td:nth-child(n+3) {
  width: 24%;
  min-width: 170px;
  padding-left: 14px;
  padding-right: 14px;
  white-space: nowrap;
}

.service-detail-price .figma-price-table.is-wide-price-table {
  table-layout: fixed;
  min-width: 100%;
}

.service-detail-price .figma-price-table.is-wide-price-table th:first-child,
.service-detail-price .figma-price-table.is-wide-price-table td:first-child {
  width: 17%;
  min-width: 0;
}

.service-detail-price .figma-price-table.is-wide-price-table th:nth-child(2),
.service-detail-price .figma-price-table.is-wide-price-table td:nth-child(2) {
  width: 26%;
  min-width: 0;
}

.service-detail-price .figma-price-table.is-wide-price-table th:nth-child(n+3),
.service-detail-price .figma-price-table.is-wide-price-table td:nth-child(n+3) {
  width: 9.5%;
  min-width: 0;
  padding-left: 10px;
  padding-right: 10px;
  white-space: nowrap;
}

.service-detail-price .figma-price-table .price-cell-inner {
  display: inline-block;
  max-width: 100%;
  text-align: left;
  vertical-align: middle;
}

.service-detail-price .figma-price-table.is-wide-price-table tbody td:first-child .price-cell-inner,
.service-detail-price .figma-price-table.is-wide-price-table tbody td:nth-child(2) .price-cell-inner {
  display: block;
  width: 100%;
}

.service-detail-price .figma-price-table thead th:nth-child(n+3) .price-cell-inner,
.service-detail-price .figma-price-table tbody td:nth-child(n+3) .price-cell-inner {
  text-align: center;
  white-space: nowrap;
}

.service-detail-price .figma-price-table th:first-child,
.service-detail-price .figma-price-table td:first-child {
  text-align: center;
}

.service-detail-price .figma-price-table tbody td:first-child {
  padding-left: 18px;
  padding-right: 18px;
}

.service-detail-price .figma-price-table tbody tr,
.service-detail-price .figma-price-table tbody tr:nth-child(2) {
  height: auto;
}

.service-before-after {
  padding: 0 0 60px;
  background: #1e1e20;
}

.service-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.service-section-head h2 {
  margin: 0;
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  line-height: 28px;
}

.service-section-head span {
  color: #7e8387;
  font-size: 14px;
  line-height: 18px;
}

.service-compare {
  position: relative;
  height: 550px;
  overflow: hidden;
  background: #111111;
}

.service-compare img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-compare::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.28));
  pointer-events: none;
}

.service-compare-after {
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 0 50%);
}

.service-compare-after img {
  filter: saturate(1.08) contrast(1.06) brightness(1.04);
}

.service-compare-line {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.72);
}

.service-compare-line::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ffffff;
  transform: translate(-50%, -50%);
}

.service-compare-line::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid #3b3b3b;
  border-bottom: 2px solid #3b3b3b;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.service-compare-label {
  position: absolute;
  z-index: 2;
  top: 20px;
  display: inline-flex;
  min-width: 38px;
  min-height: 26px;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.58);
  color: #ffffff;
  font-size: 12px;
  line-height: 14px;
}

.service-compare-label.is-before {
  left: 20px;
}

.service-compare-label.is-after {
  right: 20px;
}

.service-slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.service-slider-nav span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7e8387;
}

.service-slider-nav span:first-of-type {
  background: #ffffff;
}

.service-slider-nav .works-arrow {
  width: 36px;
  height: 36px;
}

.service-detail-seo {
  padding: 0 0 60px;
  background: #1e1e20;
}

.service-detail-copy {
  width: min(100%, 760px);
  padding: 0;
  overflow: visible;
  color: #ffffff;
}

.service-detail-copy .content,
.service-detail-copy .section,
.service-detail-copy .section_catalog,
.service-detail-copy .uss_section_content,
.service-detail-copy .module_catalog,
.service-detail-copy .uss_catalog_detail,
.service-detail-copy .uss_group_text {
  display: contents;
}

.service-detail-copy .bread,
.service-detail-copy .uss_img_wrapper,
.service-detail-copy .h_op,
.service-detail-copy .uss_catalog_sameelements,
.service-detail-copy .cleaner,
.service-detail-copy .uss_cleaner {
  display: none !important;
}

.service-detail-copy [style] {
  background: transparent !important;
  color: inherit !important;
  font-size: inherit !important;
  text-align: left !important;
}

.service-detail-copy h2,
.service-detail-copy h3 {
  margin: 0 0 30px;
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  line-height: 28px;
}

.service-detail-copy h2:not(:first-child),
.service-detail-copy h3:not(:first-child) {
  margin-top: 60px;
}

.service-detail-copy p {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: 16px;
  line-height: 22px;
}

.service-detail-copy ul,
.service-detail-copy ol {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.service-detail-copy li {
  position: relative;
  padding-left: 28px;
  color: #ffffff;
  font-size: 16px;
  line-height: 22px;
}

.service-detail-copy ul li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 7px;
  height: 7px;
  border-right: 1px solid #2196f3;
  border-bottom: 1px solid #2196f3;
  transform: rotate(-45deg);
}

.service-detail-copy ol {
  counter-reset: service-detail-counter;
}

.service-detail-copy ol li {
  counter-increment: service-detail-counter;
  padding-left: 42px;
}

.service-detail-copy ol li::before {
  content: "/" counter(service-detail-counter);
  position: absolute;
  top: 0;
  left: 0;
  color: #2196f3;
}

.service-detail-copy strong,
.service-detail-copy b {
  color: #ffffff;
}

.service-detail-works {
  min-height: 788px;
}

.service-detail-reviews {
  padding: 60px 0;
}

.service-detail-map {
  padding: 0;
}

@media (max-width: 1180px) {
  .service-detail-title h1 {
    max-width: calc(100vw - 204px);
    font-size: 48px;
    line-height: 54px;
  }

  .service-detail-price .figma-price-table {
    width: 1040px;
    min-width: 1040px;
  }

  .service-compare {
    height: 440px;
  }
}

@media (max-width: 760px) {
  .service-detail-title {
    min-height: 150px;
  }

  .service-detail-title::before {
    left: 12px;
    top: 48px;
    font-size: 76px;
    line-height: 76px;
  }

  .service-detail-title .container {
    align-items: flex-start;
    width: 100%;
    max-width: none;
    min-height: 150px;
    margin: 0;
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 28px;
    padding-bottom: 24px;
  }

  .service-detail-title h1 {
    max-width: 100%;
    font-size: 34px;
    line-height: 38px;
  }

  .service-detail-price {
    padding: 32px 0 48px;
  }

  .service-detail-price .figma-price-table {
    width: 920px;
    min-width: 920px;
  }

  .service-before-after,
  .service-detail-seo,
  .service-detail-reviews {
    padding-bottom: 48px;
  }

  .service-section-head {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 22px;
  }

  .service-compare {
    height: 300px;
  }

  .service-detail-copy h2,
  .service-detail-copy h3 {
    font-size: 24px;
    line-height: 28px;
  }
}

.site-footer {
  min-height: 509px;
  padding: 61px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  background: #1e1e20;
  color: #ffffff;
}

.footer-main {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 60px;
  min-height: 240px;
  padding: 0;
}

.footer-brand {
  display: flex;
  flex: 0 0 313px;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  gap: 40px;
}

.footer-logo.brand {
  flex: 0 0 27px;
  width: 240px;
  min-width: 240px;
  height: 27px;
  min-height: 27px;
}

.footer-logo img {
  width: 240px;
  height: 27px;
  object-fit: contain;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.footer-nav a,
.footer-socials a,
.footer-meta,
.footer-meta a {
  color: #ffffff;
  font-size: 16px;
  line-height: 20px;
}

.footer-nav a {
  font-weight: 400;
}

.footer-socials {
  display: flex;
  gap: 40px;
  align-items: center;
}

.footer-socials a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.footer-socials img {
  width: 27px;
  height: 27px;
}

.footer-form-card {
  display: flex;
  flex: 0 0 950px;
  gap: 40px;
  align-items: flex-start;
  min-height: 240px;
  padding: 40px;
  overflow: hidden;
  background: #1a1a1a;
}

.footer-contacts h2 {
  display: flex;
  flex: 0 0 170px;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  color: #eef4fd;
  font-size: 28px;
  font-weight: 700;
  line-height: 28px;
  white-space: nowrap;
}

.footer-form {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  min-width: 0;
  margin: 0;
}

.footer-form-fields,
.footer-form-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: center;
  width: 100%;
}

.footer-form-fields .form-field {
  gap: 8px;
}

.footer-form-fields input {
  width: 100%;
  height: 60px;
  padding: 4px 16px;
  border: 0;
  border-bottom: 1px solid #7e8387;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 16px;
  outline: 0;
}

.footer-form-fields input::placeholder {
  color: #7e8387;
}

.footer-agreement {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  line-height: 20px;
}

.footer-agreement input {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: #7e8387;
}

.footer-agreement a {
  display: block;
  color: #7e8387;
}

.footer-agreement span:not(.form-error) {
  flex: 1 1 220px;
}

.footer-agreement .form-error {
  flex-basis: 100%;
  padding-left: 30px;
}

.footer-form button {
  width: 100%;
  height: 60px;
  padding: 0 32px;
  border: 0;
  background: #ffffff;
  color: #3b3b3b;
  font-size: 18px;
  font-weight: 500;
  line-height: 18px;
  cursor: pointer;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-top: 40px;
}

.footer-meta {
  display: grid;
  flex: 0 0 950px;
  grid-template-columns: auto 1fr auto auto;
  gap: 20px;
  align-items: center;
  width: 950px;
  color: #ffffff;
  white-space: nowrap;
}

.footer-meta .footer-hours-label {
  color: #7e8387;
  font-size: 14px;
  line-height: 18px;
}

.footer-meta strong {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
}

.footer-meta a {
  font-size: 20px;
  line-height: 24px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 40px;
  padding: 40px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #7e8387;
  font-size: 16px;
  line-height: 20px;
}

.footer-bottom a {
  color: #ffffff;
}

.modal-dialog {
  border: 1px solid #3b3b3b;
  border-radius: 0;
  background:
    radial-gradient(circle at 100% 100%, rgba(33, 150, 243, 0.20), transparent 42%),
    linear-gradient(180deg, #1e1e20 0%, #151515 100%);
}

.work-detail-page {
  background: #1e1e20;
  color: #ffffff;
}

.work-detail-breadcrumbs {
  height: 52px;
  background: #1e1e20;
}

.work-detail-breadcrumbs .container {
  display: flex;
  align-items: center;
  height: 52px;
}

.work-detail-breadcrumbs .breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  color: #626262;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.work-detail-breadcrumbs .breadcrumbs a {
  color: #626262;
}

.work-detail-title {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
  background: #1e1e20;
}

.work-detail-title::before {
  content: "VRRUM!";
  position: absolute;
  left: max(12px, calc((100vw - 1430px) / 2 - 145px));
  top: 50%;
  color: #111111;
  font-size: 110px;
  font-weight: 800;
  line-height: 110px;
  opacity: 0.58;
  pointer-events: none;
  transform: translateY(-50%);
}

.work-detail-title .container {
  position: relative;
  z-index: 1;
}

.work-detail-title h1 {
  margin: 0;
  max-width: 1166px;
  color: #ffffff;
  font-size: 60px;
  font-weight: 700;
  line-height: 68px;
  text-transform: none;
  overflow-wrap: anywhere;
}

.work-detail-content {
  display: flex;
  justify-content: center;
  padding: 40px 0;
  background: #1e1e20;
}

.work-detail-shell {
  width: 1550px;
  max-width: calc(100vw - 48px);
  overflow: hidden;
  border-radius: 4px;
  background: #1a1a1a;
  padding: 60px;
}

.work-detail-gallery {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.work-detail-main {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: #7e8387;
}

.work-detail-main img,
.work-detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-detail-main img {
  transition: opacity 0.18s ease, transform 0.24s ease;
}

.work-detail-gallery.is-changing .work-detail-main img {
  opacity: 0.82;
  transform: scale(1.01);
}

.work-detail-gallery-strip {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 120px;
}

.work-detail-thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  flex: 1 1 auto;
  gap: 10px;
  min-width: 0;
  height: 120px;
}

.work-detail-thumb {
  display: none;
  position: relative;
  height: 120px;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #7e8387;
  cursor: pointer;
  opacity: 0.68;
  outline: 2px solid transparent;
  outline-offset: -2px;
  transition: opacity 0.18s ease, filter 0.18s ease, outline-color 0.18s ease, box-shadow 0.18s ease;
}

.work-detail-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 3px solid #2196f3;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.86),
    inset 0 0 30px rgba(33, 150, 243, 0.22);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.work-detail-thumb img {
  position: relative;
  z-index: 1;
}

.work-detail-thumb.is-visible-thumb {
  display: block;
}

.work-detail-thumb:hover,
.work-detail-thumb:focus-visible,
.work-detail-thumb.is-active {
  opacity: 1;
}

.work-detail-thumb.is-active {
  outline-color: #2196f3;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.work-detail-thumb.is-active::after {
  opacity: 1;
}

.work-detail-thumb:focus-visible {
  outline: 2px solid #2196f3;
  outline-offset: -2px;
}

.work-detail-thumb.is-active img {
  filter: brightness(1.16) saturate(1.12) contrast(1.08);
}

.work-detail-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
  gap: 20px;
}

.work-detail-counter {
  color: #ffffff;
  font-size: 26px;
  font-weight: 400;
  line-height: 28px;
  white-space: nowrap;
}

.work-detail-counter-total {
  color: #3b3b3b;
}

.work-detail-copy {
  width: min(100%, 800px);
  margin-top: 40px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  line-height: 27.9px;
}

.work-detail-copy p {
  margin: 0 0 28px;
  color: #ffffff;
  font-size: 18px;
  line-height: 27.9px;
}

.work-detail-copy > *:last-child {
  margin-bottom: 0;
}

.work-detail-list {
  margin-top: 40px;
}

.work-detail-list h2 {
  margin: 0 0 40px;
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  line-height: 28px;
}

.work-detail-list ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.work-detail-list li {
  position: relative;
  width: min(100%, 828px);
  padding-left: 38px;
  color: #ffffff;
  font-size: 18px;
  line-height: 27.9px;
}

.work-detail-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 10px;
  height: 10px;
  border-right: 1px solid #2196f3;
  border-bottom: 1px solid #2196f3;
  transform: rotate(-45deg);
}

.work-detail-facts {
  display: grid;
  gap: 12px;
  margin: 40px 0 0;
}

.work-detail-facts div {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.work-detail-facts dt {
  width: 200px;
  flex: 0 0 200px;
  margin: 0;
  color: #2196f3;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.work-detail-facts dd {
  width: min(100%, 800px);
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  line-height: 27.9px;
}

.breadcrumbs-band {
  height: 52px;
  background: #1e1e20;
}

.breadcrumbs-band .container {
  display: flex;
  align-items: center;
  height: 52px;
}

.breadcrumbs {
  margin: 0;
  color: #626262;
  font-size: 16px;
  line-height: 20px;
}

.breadcrumbs a {
  color: #626262;
}

.contacts-page {
  background: #1e1e20;
  color: #ffffff;
}

.contacts-intro {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: #1e1e20;
}

.contacts-intro::before {
  content: "VRRUM!";
  position: absolute;
  left: max(12px, calc((100vw - 1430px) / 2 - 148px));
  top: 62px;
  color: #111111;
  font-size: 110px;
  font-weight: 800;
  line-height: 110px;
  opacity: 0.58;
  pointer-events: none;
}

.contacts-intro .container {
  position: relative;
  z-index: 1;
  padding-top: 50px;
}

.contacts-intro h1 {
  margin: 0;
  color: #ffffff;
  font-size: 60px;
  font-weight: 700;
  line-height: 68px;
}

.contacts-details-section {
  height: 571px;
  background: #1e1e20;
}

.contacts-details-grid {
  display: grid;
  grid-template-columns: 690px 710px;
  gap: 30px;
  align-items: start;
  height: 511px;
}

.contacts-list {
  display: flex;
  flex-direction: column;
  padding-top: 10px;
}

.contacts-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: start;
  width: 690px;
  height: 54px;
  margin-bottom: 40px;
}

.contacts-row::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.contacts-row-copy {
  min-width: 0;
}

.contacts-row h2 {
  margin: 0 0 10px;
  overflow: hidden;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contacts-row h2 span {
  color: #7e8387;
  font-weight: 400;
}

.contacts-row p {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0;
  overflow: hidden;
  color: #eef4fd;
  font-size: 16px;
  line-height: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contacts-row p i {
  position: relative;
  flex: 0 0 15px;
  width: 15px;
  height: 20px;
}

.contacts-row p i::before,
.contacts-row p i::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.contacts-row p i::before {
  top: 2px;
  width: 11px;
  height: 11px;
  border: 1.5px solid #7e8387;
  border-radius: 50% 50% 50% 0;
  transform: translateX(-50%) rotate(-45deg);
}

.contacts-row p i::after {
  top: 6px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #7e8387;
}

.contacts-row-phone {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding-right: 25px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  white-space: nowrap;
}

.contacts-row-phone span {
  position: absolute;
  top: 50%;
  right: 0;
  width: 10px;
  height: 10px;
  background: url("assets/figma/arrow-br-white.svg") center / contain no-repeat;
  transform: translateY(-50%);
}

.contacts-main-phone {
  width: 690px;
}

.contacts-main-phone > span {
  display: block;
  margin-bottom: 10px;
  color: #eef4fd;
  font-size: 16px;
  line-height: 20px;
}

.contacts-main-phone div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.contacts-main-phone a {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  line-height: 28px;
  white-space: nowrap;
}

.contacts-main-phone .button {
  width: auto;
  height: 45px;
  min-height: 45px;
  padding: 0 20px;
  border: 0;
  background: #2196f3;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  line-height: 15px;
}

.contacts-main-phone p {
  margin: 0;
  color: #626262;
  font-size: 16px;
  line-height: 20px;
}

.contacts-map .map-frame {
  width: 710px;
  height: 511px;
  border: 0;
  border-radius: 0;
}

.contacts-map .map-frame iframe {
  filter: none;
}

.contacts-reviews {
  height: 570px;
  padding: 60px 0;
  background: #1e1e20;
}

.contacts-reviews h2 {
  margin: 0 0 40px;
  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
}

.contacts-reviews h2 span {
  color: #2196f3;
}

.contacts-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 470px);
  gap: 10px;
}

.contacts-review-card {
  width: 470px;
  height: 280px;
  padding: 20px;
  overflow: hidden;
  background: #1a1a1a;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.contacts-review-card.is-review-hidden {
  display: none;
}

.contacts-review-grid.is-review-changing .contacts-review-card {
  opacity: 0.72;
  transform: translateY(2px);
}

.contacts-review-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.contacts-review-head strong {
  overflow: hidden;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contacts-review-head span {
  color: #7e8387;
  font-size: 15px;
  font-weight: 500;
  line-height: 18px;
  white-space: nowrap;
}

.contacts-review-card p {
  display: -webkit-box;
  min-height: 140px;
  margin: 0 0 20px;
  overflow: hidden;
  color: #eef4fd;
  font-size: 16px;
  line-height: 20px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
}

.contacts-review-card a {
  color: #7e8387;
  font-size: 16px;
  line-height: 20px;
  text-decoration: underline;
}

.contacts-review-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 50px;
  margin-top: 40px;
}

.contacts-review-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #7e8387;
  appearance: none;
  cursor: pointer;
  transition: width 0.16s ease, height 0.16s ease, background-color 0.16s ease, opacity 0.16s ease;
}

.contacts-review-dot:hover,
.contacts-review-dot:focus-visible {
  background: #ffffff;
  opacity: 1;
}

.contacts-review-dot:focus-visible {
  outline: 2px solid #2196f3;
  outline-offset: 4px;
}

.contacts-review-dot.is-active {
  width: 12px;
  height: 12px;
  background: #ffffff;
}

.contacts-question {
  position: relative;
  height: 813px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(21, 21, 21, 0.55), rgba(21, 21, 21, 0.88) 62%, rgba(21, 21, 21, 0.58)),
    url("assets/figma/hero-cars.png") center / cover no-repeat,
    #151515;
}

.contacts-question-inner {
  display: flex;
  justify-content: flex-end;
  height: 456px;
  padding-top: 115px;
}

.contacts-question-form {
  width: 800px;
  padding: 20px;
}

.contacts-question-form h2 {
  margin: 0 0 40px;
  color: #eef4fd;
  font-size: 60px;
  font-weight: 700;
  line-height: 68px;
}

.contacts-question-form p {
  margin: 0 0 40px;
  color: #ffffff;
  font-size: 26px;
  line-height: 28px;
}

.contacts-question-fields {
  display: grid;
  gap: 20px;
  margin-bottom: 40px;
}

.contacts-question-fields .form-field {
  gap: 8px;
}

.contacts-question-fields input {
  width: 100%;
  height: 60px;
  padding: 4px 16px;
  border: 0;
  border-bottom: 1px solid #7e8387;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 16px;
  outline: 0;
}

.contacts-question-fields input::placeholder {
  color: #7e8387;
}

.contacts-question-actions {
  display: grid;
  grid-template-columns: 1fr 370px;
  gap: 20px;
  align-items: center;
}

.contacts-question-actions label {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  line-height: 20px;
}

.contacts-question-actions input {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: #2196f3;
}

.contacts-question-actions a {
  color: #2196f3;
}

.contacts-question-actions label span:not(.form-error) {
  flex: 1 1 280px;
}

.contacts-question-actions .form-error {
  flex-basis: 100%;
  padding-left: 30px;
}

.contacts-question-actions .button {
  width: 370px;
  height: 60px;
  border: 0;
  background: #2196f3;
  color: #ffffff;
}

.contacts-marquee {
  --contacts-marquee-gap: 70px;

  position: absolute;
  left: 0;
  right: 0;
  bottom: 40px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #3b3b3b;
  font-size: 82px;
  font-weight: 800;
  line-height: 82px;
  white-space: nowrap;
  pointer-events: none;
}

.contacts-marquee-track {
  display: flex;
  flex: 0 0 auto;
  gap: var(--contacts-marquee-gap);
  align-items: center;
  min-width: max-content;
  padding-right: var(--contacts-marquee-gap);
  animation: contacts-marquee-scroll 22s linear infinite;
  will-change: transform;
}

.contacts-marquee-mark {
  color: #2196f3;
}

@keyframes contacts-marquee-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-100%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .contacts-marquee-track {
    animation: none;
  }

  .contacts-marquee-track:nth-child(2) {
    display: none;
  }
}

.services-title-band {
  position: relative;
  height: 148px;
  overflow: hidden;
  background: #1e1e20;
}

.services-title-band::before {
  content: "";
  position: absolute;
  top: 50%;
  left: max(16px, calc((100vw - 1430px) / 2 - 145px));
  width: 635.997px;
  height: 104.566px;
  transform: translateY(-50%);
  background: url("assets/figma/services-title-vrrum.svg") center / 100% 100% no-repeat;
  pointer-events: none;
}

.services-title-band .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 148px;
}

.services-title-band h1 {
  margin: 0;
  color: #ffffff;
  font-family: "Wix Madefor Display", Arial, Helvetica, sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 68px;
}

.store-title-band::before {
  content: "VRRUM!";
  left: max(12px, calc((100vw - 1430px) / 2 - 145px));
  width: auto;
  height: auto;
  background: none;
  color: #111111;
  font-size: 110px;
  font-weight: 800;
  line-height: 110px;
  opacity: 0.58;
}

.services-page-catalog {
  min-height: 890px;
  padding: 60px 0;
  background: #1e1e20;
}

.price-section {
  min-height: 640px;
  padding: 60px 0;
  background: #1e1e20;
}

.price-section .container {
  overflow-x: auto;
}

.figma-price-table {
  width: 100%;
  min-width: 980px;
  height: auto;
  border-collapse: collapse;
  table-layout: fixed;
  background: transparent;
  color: #ffffff;
}

.price-table-title {
  margin: 0 0 28px;
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  line-height: 34px;
}

.figma-price-table th,
.figma-price-table td {
  border-right: 1px solid #3b3b3b;
  border-bottom: 1px solid #3b3b3b;
  padding: 20px 24px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  text-align: center;
  vertical-align: middle;
}

.figma-price-table .price-cell-inner {
  display: inline-block;
  max-width: 100%;
  text-align: left;
  vertical-align: middle;
}

.figma-price-table thead th:nth-child(n+3) .price-cell-inner,
.figma-price-table tbody td:nth-child(n+3) .price-cell-inner {
  text-align: center;
  white-space: nowrap;
}

.figma-price-table tbody td.has-tier-price {
  white-space: normal;
}

.figma-price-table tbody td.has-tier-price .price-cell-inner {
  display: block;
  width: 100%;
  text-align: left;
  white-space: normal;
}

.price-tier-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
}

.price-tier-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
  padding: 7px 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.045);
}

.price-tier-label {
  color: #7e8387;
  font-size: 12px;
  line-height: 14px;
  white-space: nowrap;
}

.price-tier-value {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  white-space: nowrap;
}

.figma-price-table th:first-child,
.figma-price-table td:first-child {
  width: 24%;
  min-width: 230px;
  text-align: center;
}

.figma-price-table th:nth-child(2),
.figma-price-table td:nth-child(2) {
  width: 52%;
  min-width: 260px;
}

.figma-price-table th:nth-child(n+3),
.figma-price-table td:nth-child(n+3) {
  width: 24%;
  min-width: 170px;
  padding-left: 18px;
  padding-right: 18px;
  white-space: nowrap;
}

.figma-price-table.is-wide-price-table {
  min-width: 1090px;
}

.figma-price-table.is-wide-price-table th:first-child,
.figma-price-table.is-wide-price-table td:first-child {
  width: 17%;
  min-width: 170px;
}

.figma-price-table.is-wide-price-table th:nth-child(2),
.figma-price-table.is-wide-price-table td:nth-child(2) {
  width: 26%;
  min-width: 260px;
}

.figma-price-table.is-wide-price-table th:nth-child(n+3),
.figma-price-table.is-wide-price-table td:nth-child(n+3) {
  width: 9.5%;
  min-width: 110px;
  padding-left: 10px;
  padding-right: 10px;
  white-space: nowrap;
}

.figma-price-table thead th {
  min-height: 120px;
  padding-top: 30px;
  padding-bottom: 30px;
  background: transparent;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.figma-price-table thead th:first-child {
  padding-left: 28px;
  padding-right: 28px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.figma-price-table tbody td {
  background: #111111;
}

.figma-price-table tbody td:first-child {
  padding-left: 24px;
  padding-right: 24px;
}

.figma-price-table tbody tr {
  min-height: 92px;
}

.figma-price-table tbody tr:nth-child(2) {
  min-height: 124px;
}

.price-empty p {
  max-width: 760px;
  margin: 18px 0 0;
  color: #7e8387;
  font-size: 15px;
  line-height: 22px;
}

.price-empty {
  min-height: 260px;
  padding: 42px 0;
  border-top: 1px solid #3b3b3b;
  border-bottom: 1px solid #3b3b3b;
}

.price-empty h2 {
  margin: 0;
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  line-height: 34px;
}

.price-muted {
  color: #7e8387;
}

@media (max-width: 1500px) {
  .service-grid {
    grid-template-columns: repeat(3, 350px);
  }
}

@media (max-width: 1180px) {
  .header-inner {
    gap: 18px;
  }

  .header-hours,
  .header-phone {
    display: none;
  }

  .service-grid {
    grid-template-columns: repeat(2, 350px);
  }

  .works-layout,
  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-main {
    flex-direction: column;
  }

  .footer-brand {
    flex-basis: auto;
    min-height: 0;
  }

  .footer-form-card,
  .footer-meta {
    flex: 1 1 auto;
    width: 100%;
  }

  .footer-contact-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .work-feature {
    width: 100%;
  }

  .works-aside {
    height: auto;
    gap: 40px;
  }

  .works-side-row {
    align-items: flex-end;
    justify-content: space-between;
  }

  .work-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 335px));
  }

  .work-mini {
    width: 100%;
  }

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

  .contacts-details-section,
  .contacts-reviews,
  .contacts-question {
    height: auto;
  }

  .contacts-details-grid {
    grid-template-columns: 1fr;
    height: auto;
  }

  .contacts-list,
  .contacts-row,
  .contacts-main-phone,
  .contacts-map .map-frame {
    width: 100%;
  }

  .contacts-map .map-frame {
    height: 420px;
  }

  .contacts-review-grid {
    grid-template-columns: 1fr;
  }

  .contacts-review-card {
    width: 100%;
  }

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

  .contacts-question-inner {
    height: auto;
    padding-top: 80px;
  }

  .contacts-question-form {
    width: min(100%, 800px);
  }

  .contacts-question-actions {
    grid-template-columns: 1fr;
  }

  .contacts-question-actions .button {
    width: 100%;
  }

  .work-detail-title h1 {
    font-size: 48px;
    line-height: 54px;
  }

  .work-detail-shell {
    padding: 32px;
  }

  .work-detail-main {
    height: 460px;
  }

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

  .work-detail-facts dt {
    flex-basis: 180px;
    width: 180px;
  }

  .store-spotlight {
    padding: 46px 0 48px;
  }

  .store-spotlight-panel {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: 0;
  }

  .store-spotlight-copy > p {
    max-width: 680px;
  }

  .store-spotlight-more {
    margin-bottom: 0;
  }

  .store-spotlight-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 32px;
  }

  .store-spotlight-facts article {
    align-items: flex-start;
  }

  .store-spotlight-media {
    grid-template-rows: minmax(260px, 42vw) auto;
  }

  .store-spotlight-thumbs a {
    min-height: 140px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, 1430px);
  }

  .work-detail-breadcrumbs {
    height: auto;
    min-height: 64px;
    padding: 0;
  }

  .work-detail-breadcrumbs .container {
    height: auto;
    min-height: 64px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .work-detail-breadcrumbs .breadcrumbs {
    gap: 0;
    font-size: 16px;
    line-height: 20px;
    overflow-x: auto;
    max-width: 100%;
  }

  .breadcrumbs {
    overflow-x: auto;
    max-width: 100%;
  }

  .breadcrumbs a,
  .breadcrumbs-current {
    height: 32px;
    padding: 6px 12px;
  }

  .breadcrumbs a:first-child {
    padding-left: 0;
  }

  .work-detail-title {
    padding: 32px 0;
  }

  .work-detail-title::before {
    left: -36px;
    font-size: 76px;
    line-height: 76px;
  }

  .work-detail-title h1 {
    font-size: 40px;
    line-height: 46px;
  }

  .work-detail-content {
    padding: 28px 0;
  }

  .work-detail-shell {
    max-width: calc(100vw - 24px);
    padding: 20px;
  }

  .work-detail-main {
    height: 300px;
  }

  .work-detail-gallery-strip {
    flex-direction: column;
    align-items: stretch;
    height: auto;
  }

  .work-detail-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    height: auto;
  }

  .work-detail-thumb {
    height: 78px;
  }

  .work-detail-nav {
    justify-content: flex-start;
  }

  .work-detail-copy,
  .work-detail-copy p,
  .work-detail-list li,
  .work-detail-facts dd {
    font-size: 16px;
    line-height: 24px;
  }

  .work-detail-list h2 {
    margin-bottom: 24px;
    font-size: 24px;
    line-height: 26px;
  }

  .work-detail-facts div {
    flex-direction: column;
    gap: 4px;
  }

  .work-detail-facts dt {
    width: auto;
    flex-basis: auto;
  }

  .site-header {
    position: fixed;
  }

  .header-inner {
    height: 65px;
    min-height: 65px;
  }

  .brand,
  .brand img {
    width: 140px;
    min-width: 140px;
  }

  .primary-nav {
    position: fixed;
    inset: 65px 0 auto;
    display: none;
    padding: 18px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    background: #1e1e20;
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav ul {
    display: grid;
    gap: 16px;
  }

  .header-socials,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .figma-hero {
    height: auto;
    padding: 20px 0;
  }

  .hero-panel {
    min-height: 520px;
    height: auto;
    padding: 28px 22px;
    background-position: center bottom;
  }

  .hero h1,
  .hero-panel h1 {
    font-size: 34px;
    line-height: 40px;
  }

  .hero-lead {
    font-size: 20px;
    line-height: 26px;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .catalog-tabs,
  .catalog-tabs-inner {
    height: auto;
  }

  .catalog-tabs-inner {
    display: grid;
    gap: 18px;
    padding: 24px 0;
  }

  .tabs-fade {
    display: none;
  }

  .tabs-viewport {
    width: 100%;
    overflow-x: auto;
  }

  .catalog-search {
    width: 100%;
    flex-basis: auto;
  }

  .services-section {
    min-height: 0;
    padding: 36px 0;
  }

  .seo-section,
  .works-showcase,
  .team-section,
  .reviews-section,
  .site-footer {
    min-height: 0;
  }

  .breadcrumbs-band,
  .services-title-band,
  .services-page-catalog,
  .price-section {
    height: auto;
  }

  .breadcrumbs-band .container,
  .services-title-band .container {
    height: auto;
    min-height: 64px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .services-title-band::before {
    top: 50%;
    left: 12px;
    width: 320px;
    height: 52.6px;
  }

  .services-title-band h1 {
    font-size: 36px;
    line-height: 42px;
  }

  .store-title-band::before {
    content: "VRRUM!";
    left: 12px;
    width: auto;
    height: auto;
    background: none;
    color: #111111;
    font-size: 76px;
    font-weight: 700;
    line-height: 76px;
    opacity: 0.58;
  }

  .services-page-catalog,
  .price-section {
    padding: 36px 0;
  }

  .contacts-intro {
    height: auto;
    min-height: 180px;
  }

  .contacts-intro::before {
    left: 12px;
    top: 56px;
    font-size: 74px;
    line-height: 74px;
  }

  .contacts-intro .container {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .contacts-intro h1 {
    font-size: 42px;
    line-height: 48px;
  }

  .contacts-details-section {
    padding-bottom: 42px;
  }

  .contacts-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: auto;
    min-height: 86px;
    margin-bottom: 24px;
    padding-bottom: 16px;
  }

  .contacts-row h2,
  .contacts-row p {
    white-space: normal;
  }

  .contacts-main-phone div {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .contacts-main-phone a {
    font-size: 26px;
    line-height: 30px;
  }

  .contacts-main-phone .button {
    width: 100%;
  }

  .contacts-map .map-frame {
    height: 320px;
  }

  .contacts-reviews {
    padding: 42px 0;
  }

  .contacts-reviews h2 {
    font-size: 32px;
    line-height: 36px;
  }

  .contacts-review-card {
    height: auto;
    min-height: 260px;
  }

  .contacts-question {
    min-height: 680px;
  }

  .contacts-question-inner {
    padding-top: 56px;
  }

  .contacts-question-form {
    padding: 0;
  }

  .contacts-question-form h2 {
    font-size: 38px;
    line-height: 44px;
  }

  .contacts-question-form p {
    font-size: 20px;
    line-height: 26px;
  }

  .contacts-question-actions label {
    align-items: flex-start;
  }

  .contacts-marquee {
    --contacts-marquee-gap: 28px;

    bottom: 30px;
    font-size: 42px;
    line-height: 48px;
  }

  .store-spotlight {
    padding: 32px 0 42px;
  }

  .store-spotlight-panel {
    gap: 24px;
    padding: 20px;
  }

  .store-spotlight-copy h2 {
    margin-bottom: 18px;
    font-size: 34px;
    line-height: 38px;
  }

  .store-spotlight-copy > p {
    max-width: 100%;
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 22px;
  }

  .store-spotlight-more {
    width: 100%;
    max-width: 160px;
  }

  .store-spotlight-facts {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
  }

  .store-spotlight-facts article {
    grid-template-columns: 45px minmax(0, 1fr);
    gap: 18px;
  }

  .store-spotlight-facts strong {
    font-size: 18px;
    line-height: 22px;
  }

  .store-spotlight-facts p {
    font-size: 15px;
    line-height: 18px;
  }

  .store-spotlight-media {
    grid-template-rows: 220px auto;
  }

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

  .store-spotlight-thumbs a {
    min-height: 0;
    height: 92px;
  }

  .store-spotlight-nav {
    margin-top: 20px;
  }

  .price-section .container {
    overflow-x: auto;
  }

  .figma-price-table {
    display: table;
    width: 920px;
    min-width: 920px;
    height: auto;
  }

  .service-grid,
  .team-grid,
  .review-grid,
  .work-mini-grid,
  .footer-form,
  .footer-form-fields,
  .footer-form-actions,
  .footer-meta {
    grid-template-columns: 1fr;
  }

  .service-card {
    width: 100%;
  }

  .work-feature,
  .work-mini,
  .team-card {
    width: 100%;
    height: 320px;
  }

  .works-side-row {
    align-items: stretch;
    flex-direction: column;
  }

  .works-arrows {
    display: none;
  }

  .work-feature span {
    left: 20px;
    right: 20px;
    top: 20px;
    font-size: 22px;
    line-height: 26px;
  }

  .work-feature em {
    left: 20px;
    bottom: 20px;
  }

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

  .showcase-head .button {
    width: 100%;
  }

  .map-section .map-frame {
    height: 460px;
  }

  .footer-main {
    padding-top: 40px;
  }

  .site-footer {
    padding: 40px 0 32px;
  }

  .footer-form-card {
    flex-direction: column;
    min-height: 0;
    padding: 24px;
  }

  .footer-contacts h2 {
    flex-basis: auto;
    white-space: normal;
  }

  .footer-form,
  .footer-form-fields,
  .footer-form-actions {
    gap: 20px;
  }

  .footer-meta {
    width: 100%;
    white-space: normal;
  }

  .footer-bottom {
    padding-top: 28px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* Temporary content visibility toggle.
   Remove this block to show reviews and the team section again. */
.team-section,
.reviews-section,
.contacts-reviews {
  display: none !important;
}
