:root {
  --bg: #03060b;
  --text: #ffffff;
  --muted: #c6ccd7;
  --soft: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.16);
  --panel: rgba(8, 12, 20, 0.74);
  --violet: #8b5cf6;
  --violet-2: #a855f7;
  --blue: #2563eb;
  --font-ui: "Inter", Arial, Helvetica, sans-serif;
  --font-display: "Inter", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

body {
  font-family: var(--font-ui);
  background: var(--bg);
  color: var(--text);
  font-feature-settings: "ss01" 1, "ss02" 1, "cv01" 1;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 6, 11, 0.96) 0%, rgba(3, 6, 11, 0.58) 47%, rgba(3, 6, 11, 0.78) 100%),
    url("/assets/hero-indoor-dooh.png") center/cover;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, transparent 0%, rgba(3, 6, 11, 0.4) 68%, rgba(3, 6, 11, 0.96) 100%),
    repeating-linear-gradient(90deg, transparent 0 115px, rgba(255, 255, 255, 0.025) 116px 117px);
  pointer-events: none;
}

.tab-control,
.menu-control,
.city-control {
  position: fixed;
  opacity: 0;
  pointer-events: none;
}

.app-shell {
  height: 100vh;
  display: grid;
  grid-template-rows: 76px 1fr;
}

.topbar {
  position: relative;
  z-index: 140;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0 52px;
  background: rgba(3, 6, 11, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

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

.brand span {
  letter-spacing: 0;
}

.hamburger {
  display: none;
}

.tabs {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

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

.tabs label,
.button {
  cursor: pointer;
  user-select: none;
}

.tabs label {
  flex: 0 0 auto;
  padding: 28px 0 25px;
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 2px solid transparent;
  font-size: 13px;
  font-weight: 700;
}

.header-city-select {
  flex: 0 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 7px 10px 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.header-city-select span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-city-select select {
  min-height: 32px;
  width: 154px;
  margin: 0;
  border: 1px solid rgba(168, 85, 247, 0.5);
  border-radius: 6px;
  padding: 6px 34px 6px 10px;
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, #fff 50%) calc(100% - 16px) 52% / 6px 6px no-repeat,
    linear-gradient(135deg, #fff 50%, transparent 50%) calc(100% - 12px) 52% / 6px 6px no-repeat,
    rgba(139, 92, 246, 0.18);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.header-city-select select option {
  background: #05080e;
  color: #fff;
}

.button {
  min-height: 46px;
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.primary {
  border: 0;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  box-shadow: 0 12px 34px rgba(124, 58, 237, 0.36);
}

.outline,
.dark {
  border: 1px solid rgba(168, 85, 247, 0.75);
  background: rgba(5, 8, 14, 0.52);
}

.stage {
  position: relative;
  min-height: 0;
  overflow: hidden;
}

.panel {
  position: absolute;
  inset: 0;
  display: grid;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: none;
  padding: 44px 64px 36px;
  overflow: hidden;
}

#tab-home:checked ~ .app-shell .panel-home,
#tab-locations:checked ~ .app-shell .panel-locations,
#tab-mall:checked ~ .app-shell .panel-mall,
#tab-business:checked ~ .app-shell .panel-business,
#tab-map:checked ~ .app-shell .panel-map,
#tab-formats:checked ~ .app-shell .panel-formats,
#tab-cases:checked ~ .app-shell .panel-cases,
#tab-agencies:checked ~ .app-shell .panel-agencies,
#tab-company:checked ~ .app-shell .panel-company,
#tab-contact:checked ~ .app-shell .panel-contact {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#tab-locations:checked ~ .app-shell label[for="tab-locations"],
#tab-mall:checked ~ .app-shell label[for="tab-mall"],
#tab-business:checked ~ .app-shell label[for="tab-business"],
#tab-map:checked ~ .app-shell label[for="tab-map"],
#tab-formats:checked ~ .app-shell label[for="tab-formats"],
#tab-cases:checked ~ .app-shell label[for="tab-cases"],
#tab-agencies:checked ~ .app-shell label[for="tab-agencies"],
#tab-company:checked ~ .app-shell label[for="tab-company"],
#tab-contact:checked ~ .app-shell label[for="tab-contact"] {
  color: #fff;
  border-bottom-color: var(--violet);
}

.panel-home {
  grid-template-columns: minmax(420px, 0.9fr) minmax(480px, 1.1fr);
  grid-template-rows: 1fr auto;
  gap: 30px;
  align-items: center;
}

.hero-copy h1 {
  max-width: 720px;
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: clamp(46px, 4.7vw, 76px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-copy span,
h2 span {
  color: var(--violet);
}

.hero-copy p,
.section-copy p,
.proposal-copy p {
  max-width: 640px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 500;
}

.actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 30px;
}

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

.led-tower {
  position: absolute;
  top: 10px;
  left: 14%;
  width: 185px;
  height: 410px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(168, 85, 247, 0.5);
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.45), transparent 16%),
    linear-gradient(160deg, #1d2671, #7c3aed 52%, #050816);
  box-shadow: 0 0 54px rgba(124, 58, 237, 0.5);
}

.led-tower span {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  line-height: 0.92;
  text-align: center;
}

.led-tower small {
  margin-top: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.city-map {
  position: absolute;
  right: 0;
  bottom: 42px;
  width: min(420px, 56%);
  min-height: 158px;
  padding: 26px 28px;
  border: 1px solid rgba(139, 92, 246, 0.55);
  background:
    linear-gradient(rgba(7, 11, 19, 0.62), rgba(7, 11, 19, 0.86)),
    url("/assets/formats.jpg") center/cover;
}

.city-map span,
.map-card span,
.wide-map .pin {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 20px var(--violet);
}

.city-map span:nth-child(1) { top: 38%; left: 18%; }
.city-map span:nth-child(2) { top: 46%; left: 34%; }
.city-map span:nth-child(3) { top: 30%; left: 52%; }
.city-map span:nth-child(4) { top: 56%; left: 68%; }
.city-map span:nth-child(5) { top: 42%; left: 84%; }

.city-map b {
  position: absolute;
  top: 26px;
  right: 28px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.city-map strong {
  position: absolute;
  right: 46px;
  bottom: 42px;
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
}

.city-map small {
  position: absolute;
  right: 58px;
  bottom: 24px;
}

.stats-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 8, 14, 0.52);
}

.stats-row div {
  min-height: 108px;
  padding: 24px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.stats-row div:last-child {
  border-right: 0;
}

.stats-row b {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.stats-row span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.section-copy {
  align-self: start;
}

.section-copy.inline {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.business-copy {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.business-copy .button {
  flex: 0 0 auto;
  margin-bottom: 4px;
}

.section-copy.inline label {
  color: #d8b4fe;
  cursor: pointer;
  font-weight: 700;
}

.eyebrow {
  margin: 0 0 14px;
  color: #c084fc;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(30px, 2.9vw, 50px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}

h3,
p {
  margin-top: 0;
}

.panel-locations,
.panel-mall,
.panel-business,
.panel-map,
.panel-formats,
.panel-cases,
.panel-agencies,
.panel-company,
.panel-contact {
  grid-template-rows: auto 1fr;
  gap: 26px;
}

.filter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.filter-row button {
  min-height: 38px;
  border: 1px solid rgba(168, 85, 247, 0.45);
  border-radius: 6px;
  padding: 9px 14px;
  color: #fff;
  background: rgba(139, 92, 246, 0.14);
  font-weight: 700;
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(520px, 1.1fr);
  gap: 28px;
  min-height: 0;
}

.map-card,
.wide-map {
  position: relative;
  min-height: 0;
  border: 1px solid rgba(139, 92, 246, 0.38);
  background:
    linear-gradient(rgba(6, 10, 18, 0.42), rgba(6, 10, 18, 0.86)),
    url("/assets/formats.jpg") center/cover;
}

.map-card span:nth-child(1) { top: 24%; left: 22%; }
.map-card span:nth-child(2) { top: 36%; left: 46%; }
.map-card span:nth-child(3) { top: 58%; left: 34%; }
.map-card span:nth-child(4) { top: 50%; left: 65%; }
.map-card span:nth-child(5) { top: 70%; left: 76%; }
.map-card span:nth-child(6) { top: 76%; left: 18%; }

.place-cards,
.format-cards,
.case-cards,
.agency-grid,
.company-grid {
  display: grid;
  gap: 20px;
  min-height: 0;
}

.place-cards {
  grid-template-columns: repeat(3, 1fr);
}

.place-cards article,
.format-cards article,
.case-cards article,
.agency-grid article,
.company-grid article,
.form-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.place-cards img,
.case-cards img {
  width: 100%;
  height: 58%;
  min-height: 160px;
  display: block;
  object-fit: cover;
}

.place-cards h3,
.case-cards b {
  display: block;
  margin: 18px 18px 8px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
}

.place-cards p,
.case-cards p,
.agency-grid span,
.company-grid span {
  margin: 0 18px 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.panel-locations {
  grid-template-rows: auto 1fr;
}

.top-locations-grid {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(560px, 1.08fr);
  gap: 22px;
}

.location-feature {
  position: relative;
  min-height: 0;
  overflow: hidden;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(139, 92, 246, 0.42);
  background:
    linear-gradient(180deg, rgba(3, 6, 11, 0.06), rgba(3, 6, 11, 0.9)),
    url("/assets/location-mega.jpg") center/cover;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.location-feature::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  pointer-events: none;
}

.location-feature > * {
  position: relative;
}

.location-feature span,
.location-case-grid span {
  display: block;
  margin-bottom: 12px;
  color: #c084fc;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.location-feature b {
  max-width: 560px;
  font-family: var(--font-display);
  font-size: clamp(34px, 3vw, 56px);
  line-height: 0.98;
}

.location-feature p {
  max-width: 520px;
  margin: 16px 0 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.48;
}

.location-feature div {
  display: flex;
  align-items: end;
  gap: 12px;
}

.location-feature strong {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 0.9;
}

.location-feature small {
  color: var(--muted);
  font-weight: 700;
}

.location-case-grid {
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.location-case-grid article {
  min-height: 0;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.16), rgba(37, 99, 235, 0.06)),
    rgba(5, 8, 14, 0.58);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.location-case-grid b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.45vw, 27px);
  line-height: 1.08;
}

.location-case-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.panel-map {
  grid-template-columns: minmax(330px, 0.42fr) minmax(560px, 1fr);
  grid-template-rows: auto minmax(0, 1fr);
  align-items: stretch;
}

.map-topline {
  grid-column: 1 / -1;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(330px, 0.42fr) minmax(560px, 1fr);
  gap: 26px;
  align-items: end;
}

.map-topline .section-copy h2 {
  margin-bottom: 0;
}

.locations-map-copy {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
}

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

.map-metrics article {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
}

.map-metrics b {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1;
}

.map-metrics span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}

.map-filters {
  display: grid;
  grid-template-columns: minmax(230px, 1.45fr) repeat(5, minmax(112px, 0.75fr));
  gap: 9px;
  min-width: 0;
}

.map-filters input,
.map-filters select,
.map-filters button {
  width: 100%;
  min-height: 38px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  padding: 9px 11px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font: 700 12px/1 var(--font-ui);
  cursor: pointer;
}

.map-filters input {
  cursor: text;
}

.map-filters select {
  appearance: none;
  padding-right: 28px;
  background:
    linear-gradient(45deg, transparent 50%, #fff 50%) calc(100% - 15px) 52% / 6px 6px no-repeat,
    linear-gradient(135deg, #fff 50%, transparent 50%) calc(100% - 11px) 52% / 6px 6px no-repeat,
    rgba(255, 255, 255, 0.06);
}

.map-filters option {
  background: #05080e;
  color: #fff;
}

.map-filters button {
  border-color: rgba(168, 85, 247, 0.45);
  background: rgba(139, 92, 246, 0.14);
}

.map-filters button.is-active {
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  border-color: rgba(255, 255, 255, 0.26);
}

.locations-map-list {
  min-height: 0;
  display: grid;
  align-content: start;
  gap: 10px;
  overflow: hidden;
}

.map-location-item {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.16), rgba(37, 99, 235, 0.055));
  color: #fff;
  text-align: left;
  cursor: pointer;
}

.map-location-item span,
.map-location-item small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.map-location-item b {
  display: block;
  margin: 7px 0;
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.15;
}

.map-device-legend {
  display: grid;
  gap: 10px;
}

.map-device-legend > strong {
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
}

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

.map-device-item {
  min-width: 0;
  padding: 10px 12px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 5px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.16), rgba(37, 99, 235, 0.055));
}

.map-device-item span,
.map-device-item small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.map-device-item b {
  display: block;
  margin: 0;
  font-family: var(--font-display);
  font-size: 23px;
  line-height: 0.95;
}

.map-device-item small {
  grid-column: 1 / -1;
}

.map-device-item.compact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.map-device-item.compact b {
  margin: 0;
  font-size: 21px;
}

.map-empty {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.locations-map-shell {
  min-width: 0;
  min-height: 0;
  padding: 10px;
  border: 1px solid rgba(139, 92, 246, 0.42);
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.14), rgba(37, 99, 235, 0.05)),
    rgba(3, 6, 11, 0.58);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.yandex-map {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(139, 92, 246, 0.35), transparent 26%),
    linear-gradient(135deg, rgba(45, 98, 140, 0.4), rgba(3, 6, 11, 0.94));
}

.map-loader,
.yandex-map.is-fallback > div {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 8px;
  color: #fff;
  text-align: center;
}

.map-loader b,
.yandex-map.is-fallback b {
  font-family: var(--font-display);
  font-size: 24px;
}

.map-loader span,
.yandex-map.is-fallback span {
  color: var(--muted);
}

.yandex-map.is-ready .map-loader {
  display: none;
}

.segment-layout {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(520px, 1.08fr);
  gap: 24px;
  min-height: 0;
}

.segment-hero {
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(139, 92, 246, 0.42);
  background:
    linear-gradient(180deg, rgba(3, 6, 11, 0.08), rgba(3, 6, 11, 0.88)),
    var(--segment-image) center/cover;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.segment-mall-hero {
  --segment-image: url("/assets/format-trc.jpg");
}

.segment-business-hero {
  --segment-image: url("/assets/format-bc.jpg");
}

.segment-hero::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  pointer-events: none;
}

.segment-hero span {
  position: relative;
  width: max-content;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(139, 92, 246, 0.28);
  color: #fff;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
}

.segment-hero b {
  position: relative;
  max-width: 620px;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 38px);
  line-height: 1.08;
}

.segment-hero p {
  position: relative;
  max-width: 560px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

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

.segment-cards article {
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
}

.segment-cards img {
  width: 100%;
  height: 62%;
  min-height: 210px;
  display: block;
  object-fit: cover;
}

.card-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 16px 18px 0;
}

.card-tags span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(168, 85, 247, 0.38);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(139, 92, 246, 0.12);
  color: rgba(255, 255, 255, 0.86);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.segment-cards b {
  display: block;
  margin: 16px 20px 8px;
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.18;
}

.segment-cards p {
  margin: 0 20px 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.mall-slider {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 0;
}

.mall-slider-track {
  height: 100%;
  display: flex;
  gap: 18px;
  min-width: 0;
  min-height: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.mall-slider-track::-webkit-scrollbar {
  display: none;
}

.mall-slider-track article {
  position: relative;
  flex: 0 0 calc((100% - 18px) / 2);
  min-height: 0;
  overflow: hidden;
  scroll-snap-align: start;
}

.mall-slider-track small {
  position: absolute;
  top: 14px;
  right: 14px;
  max-width: calc(100% - 28px);
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(3, 6, 11, 0.72);
  color: rgba(255, 255, 255, 0.86);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.mall-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 44px;
  height: 64px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid rgba(168, 85, 247, 0.48);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 18%, rgba(168, 85, 247, 0.34), transparent 55%),
    rgba(3, 6, 11, 0.76);
  color: #fff;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.3);
}

.mall-slider-prev {
  left: 12px;
}

.mall-slider-next {
  right: 12px;
}

.mall-slider-arrow:hover {
  border-color: rgba(168, 85, 247, 0.9);
  background: rgba(139, 92, 246, 0.32);
}

.wide-map {
  min-height: 0;
}

.wide-map .pin.trc { top: 30%; left: 18%; }
.wide-map .pin.bc { top: 42%; left: 35%; }
.wide-map .pin.premium { top: 28%; left: 56%; }
.wide-map .pin:nth-child(4) { top: 62%; left: 48%; }
.wide-map .pin:nth-child(5) { top: 72%; left: 74%; }
.wide-map .pin:nth-child(6) { top: 50%; left: 83%; }
.wide-map .pin:nth-child(7) { top: 76%; left: 24%; }

.legend {
  position: absolute;
  left: 28px;
  bottom: 24px;
  display: flex;
  gap: 12px;
}

.legend b {
  padding: 11px 14px;
  border: 1px solid rgba(168, 85, 247, 0.45);
  background: rgba(5, 8, 14, 0.68);
}

.format-cards {
  grid-template-columns: repeat(3, 1fr);
}

.format-cards article {
  position: relative;
  min-height: 0;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
}

.format-cards article::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(3, 6, 11, 0) 0%, rgba(3, 6, 11, 0.16) 42%, rgba(3, 6, 11, 0.92) 74%);
  pointer-events: none;
}

.format-image {
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  width: 100%;
  height: 64%;
  display: block;
  object-fit: cover;
}

.format-count {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  min-height: 40px;
  padding: 11px 14px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(3, 6, 11, 0.68);
  color: #fff;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.format-cards span {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  margin-bottom: auto;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: rgba(139, 92, 246, 0.52);
  color: #fff;
  font-size: 22px;
}

.format-cards h3 {
  position: relative;
  z-index: 1;
  margin: 26px 0 12px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
}

.format-cards p {
  position: relative;
  z-index: 1;
  max-width: 260px;
  color: #fff;
  line-height: 1.45;
}

.format-cards label {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  color: #fff;
  cursor: pointer;
  font-weight: 700;
}

.format-trc {
  background-image: linear-gradient(rgba(5, 8, 14, 0.1), rgba(5, 8, 14, 0.86)), url("/assets/format-pylons-indoor.jpg");
}

.format-bc {
  background-image: linear-gradient(rgba(5, 8, 14, 0.1), rgba(5, 8, 14, 0.86)), url("/assets/format-big-screens-indoor.jpg");
}

.format-premium {
  background-image: linear-gradient(rgba(5, 8, 14, 0.1), rgba(5, 8, 14, 0.86)), url("/assets/format-unique-media-indoor.jpg");
}

.panel-cases {
  grid-template-rows: auto auto auto minmax(0, 1fr);
}

.brand-marquee,
.cases-marquee {
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.brand-marquee {
  min-height: 64px;
}

.cases-marquee {
  min-height: 0;
}

.marquee-track {
  width: max-content;
  display: flex;
  align-items: stretch;
  gap: 14px;
  will-change: transform;
  animation: marquee-left 165s linear infinite;
  animation-delay: 2.5s;
}

.case-track {
  gap: 18px;
  animation-duration: 117s;
}

.brand-marquee:hover .marquee-track,
.cases-marquee:hover .marquee-track {
  animation-play-state: paused;
}

.brand-card {
  flex: 0 0 auto;
  min-width: 168px;
  min-height: 56px;
  padding: 12px 20px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.brand-card img {
  width: auto;
  max-width: 138px;
  max-height: 42px;
  display: block;
  object-fit: contain;
  opacity: 0.9;
}

.cases-slogan {
  max-width: 980px;
  margin: -4px auto 2px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 38px);
  font-weight: 700;
  line-height: 1.08;
  text-align: center;
  letter-spacing: -0.04em;
}

.case-track article {
  flex: 0 0 330px;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.case-track img {
  width: 100%;
  height: 210px;
  display: block;
  object-fit: cover;
}

.case-track b {
  display: block;
  margin: 18px 18px 8px;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
}

.case-track span {
  display: block;
  margin: 0 18px 14px;
  color: #c084fc;
  font-weight: 700;
}

.case-track p {
  margin: 0 18px 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

@keyframes marquee-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 7px));
  }
}

.agency-grid,
.company-grid {
  grid-template-columns: repeat(4, 1fr);
}

.company-board {
  display: grid;
  grid-template-columns: 1.15fr repeat(2, 1fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 18px;
  min-height: 0;
}

.company-board article {
  min-height: 0;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(180deg, rgba(139, 92, 246, 0.14), rgba(255, 255, 255, 0.035)),
    rgba(5, 8, 14, 0.48);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.company-board .company-mission {
  grid-row: 1 / -1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(139, 92, 246, 0.24), rgba(5, 8, 14, 0.82)),
    url("/assets/format-premium.jpg") center/cover;
}

.company-board span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #c084fc;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.company-board b {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.45vw, 26px);
  font-weight: 700;
  line-height: 1.12;
}

.company-board .company-mission b {
  font-size: clamp(28px, 2.6vw, 46px);
}

.company-board p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.company-board .company-mission p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
}

.agency-grid article,
.company-grid article {
  padding: 28px;
}

.agency-grid b,
.company-grid b {
  display: block;
  margin-bottom: 12px;
  font-size: 25px;
}

.agency-grid span,
.company-grid span {
  margin: 0;
}

.panel-contact {
  grid-template-columns: 0.72fr 1.28fr;
  grid-template-rows: 1fr;
  align-items: center;
}

.proposal-copy h2 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(34px, 3.4vw, 56px);
  font-weight: 700;
}

.proposal-copy ul {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.proposal-copy li {
  margin: 18px 0;
}

.contact-main {
  margin-top: 34px;
  padding: 26px;
  border: 1px solid rgba(168, 85, 247, 0.45);
  background:
    linear-gradient(180deg, rgba(139, 92, 246, 0.18), rgba(255, 255, 255, 0.035)),
    rgba(5, 8, 14, 0.58);
}

.contact-main span,
.city-card span {
  display: block;
  margin-bottom: 12px;
  color: #c084fc;
  font-size: 12px;
    font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-main strong,
.city-card b {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.18;
}

.contact-main a,
.city-card a {
  display: inline-flex;
  margin: 18px 18px 0 0;
  color: #fff;
    font-weight: 700;
  text-decoration: none;
}

.contact-side {
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(145px, 0.75fr) minmax(0, 1fr);
  gap: 16px;
}

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

.city-switch label {
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  font-size: 13px;
    font-weight: 700;
}

#city-nsk:checked ~ .app-shell label[for="city-nsk"],
#city-tomsk:checked ~ .app-shell label[for="city-tomsk"],
#city-tyumen:checked ~ .app-shell label[for="city-tyumen"],
#city-kemerovo:checked ~ .app-shell label[for="city-kemerovo"] {
  border-color: rgba(168, 85, 247, 0.85);
  background: rgba(139, 92, 246, 0.22);
  color: #fff;
}

.city-cards {
  position: relative;
  min-height: 0;
}

.city-card {
  position: absolute;
  inset: 0;
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  border: 1px solid rgba(168, 85, 247, 0.36);
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.18), rgba(37, 99, 235, 0.08)),
    rgba(5, 8, 14, 0.68);
}

#city-nsk:checked ~ .app-shell .city-card-nsk,
#city-tomsk:checked ~ .app-shell .city-card-tomsk,
#city-tyumen:checked ~ .app-shell .city-card-tyumen,
#city-kemerovo:checked ~ .app-shell .city-card-kemerovo {
  opacity: 1;
  visibility: visible;
}

.city-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.form-card {
  padding: 28px;
}

.form-card span {
  color: var(--muted);
    font-weight: 700;
}

.form-card b {
  display: block;
  margin: 10px 0 20px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  margin-bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font: inherit;
}

textarea {
  grid-column: 1 / -1;
  min-height: 126px;
  resize: none;
}

.lead-form .button {
  grid-column: 1 / -1;
}

@media (max-width: 1180px) {
  .topbar {
    padding: 0 26px;
    gap: 14px;
  }

  .tabs {
    justify-content: flex-start;
    gap: 16px;
  }

  .header-city-select {
    min-height: 40px;
    padding: 6px 8px 6px 10px;
  }

  .header-city-select select {
    width: 132px;
    font-size: 11px;
  }

  .panel {
    padding: 30px 28px 24px;
  }

  .panel-home {
    grid-template-columns: 1fr 0.95fr;
  }

  .hero-media {
    min-height: 450px;
  }

  .location-layout,
  .segment-layout,
  .panel-contact {
    grid-template-columns: 1fr;
  }

  .panel-map {
    grid-template-columns: minmax(300px, 0.45fr) minmax(420px, 1fr);
  }

  .map-topline {
    grid-template-columns: minmax(300px, 0.45fr) minmax(420px, 1fr);
  }

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

  .map-filters input {
    grid-column: 1 / -1;
  }

  .top-locations-grid {
    grid-template-columns: 1fr;
  }

  .place-cards,
  .segment-cards,
  .format-cards,
  .case-cards,
  .agency-grid,
  .company-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .app-shell {
    grid-template-rows: 46px 1fr;
  }

  .topbar {
    position: relative;
    align-content: center;
    flex-wrap: nowrap;
    padding: 0 20px;
    gap: 10px;
  }

  .brand {
    font-size: 20px;
  }

  .brand img {
    width: 30px;
    height: 30px;
  }

  .tabs {
    position: fixed;
    top: 46px;
    left: 0;
    right: 0;
    z-index: 120;
    width: 100%;
    max-height: calc(100vh - 46px);
    padding: 16px 20px 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    overflow-y: auto;
    background: rgba(3, 6, 11, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(139, 92, 246, 0.35);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  }

  .tabs label {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.045);
    font-size: 15px;
  }

  .topbar .button {
    margin-left: auto;
    min-height: 38px;
    padding: 10px 12px;
    font-size: 12px;
  }

  .header-city-select {
    order: 2;
    width: auto;
    min-height: 15px;
    margin-left: 2px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .header-city-select span {
    display: none;
  }

  .header-city-select select {
    flex: 0 0 auto;
    width: 92px;
    min-height: 15px;
    border: 0;
    border-radius: 0;
    padding: 0;
    appearance: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.72);
    font-size: 10px;
    font-weight: 700;
    line-height: 15px;
    letter-spacing: 0.02em;
  }

  .hamburger {
    order: 3;
    width: 42px;
    height: 38px;
    margin-left: auto;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 1px solid rgba(168, 85, 247, 0.65);
    border-radius: 6px;
    background: rgba(5, 8, 14, 0.56);
    cursor: pointer;
    position: relative;
    z-index: 130;
  }

  .hamburger span {
    width: 18px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: #fff;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

  .menu-control:checked ~ .app-shell .tabs {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .menu-control:checked ~ .app-shell .hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-control:checked ~ .app-shell .hamburger span:nth-child(2) {
    opacity: 0;
  }

  .menu-control:checked ~ .app-shell .hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .panel {
    padding: 18px 20px 86px;
    min-width: 0;
  }

  .panel-home,
  .panel-locations,
  .panel-mall,
  .panel-business,
  .panel-map,
  .panel-formats,
  .panel-cases,
  .panel-agencies,
  .panel-company,
  .panel-contact {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    gap: 14px;
  }

  .panel-home {
    display: flex;
    flex-direction: column;
  }

  .business-copy {
    display: block;
  }

  .business-copy .button {
    width: max-content;
    min-height: 40px;
    margin-top: 10px;
    padding: 11px 16px;
  }

  .panel-home > * {
    width: 100%;
    min-width: 0;
  }

  .hero-copy h1 {
    font-size: 36px;
    margin-bottom: 12px;
  }

  .hero-copy p,
  .section-copy p,
  .proposal-copy p {
    font-size: 15px;
    line-height: 1.42;
    max-width: 100%;
  }

  .actions {
    margin-top: 14px;
    gap: 10px;
  }

  .button {
    min-height: 38px;
    padding: 10px 12px;
    font-size: 12px;
  }

  .hero-media {
    min-width: 0;
    min-height: 184px;
    flex: 1 1 auto;
    overflow: hidden;
  }

  .led-tower {
    left: 11%;
    width: 88px;
    height: 178px;
  }

  .led-tower span {
    font-size: 22px;
  }

  .led-tower small {
    font-size: 9px;
  }

  .city-map {
    display: none;
  }

  .stats-row {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    flex: 0 0 auto;
    width: 100vw;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    overflow: hidden;
    z-index: 30;
    background: rgba(3, 6, 11, 0.94);
  }

  .stats-row div {
    min-width: 0;
    min-height: 68px;
    padding: 12px 8px;
  }

  .stats-row b {
    font-size: 22px;
  }

  .stats-row span {
    font-size: 9px;
    line-height: 1.25;
  }

  h2 {
    font-size: 28px;
  }

  .location-layout {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .panel-locations {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .panel-map {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr;
  }

  .map-topline {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .locations-map-copy {
    gap: 10px;
  }

  .panel-map .section-copy p {
    display: none;
  }

  .top-locations-grid,
  .location-case-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .location-feature {
    min-height: 220px;
    padding: 22px;
  }

  .location-feature::before {
    inset: 12px;
  }

  .location-feature b {
    font-size: 28px;
  }

  .location-feature p {
    margin: 10px 0 14px;
    font-size: 12px;
    line-height: 1.35;
  }

  .location-feature strong {
    font-size: 30px;
  }

  .location-case-grid article {
    padding: 14px 15px;
  }

  .location-case-grid article:nth-child(n+4) {
    display: none;
  }

  .location-case-grid b {
    font-size: 17px;
  }

  .location-case-grid p {
    margin-top: 8px;
    font-size: 11px;
    line-height: 1.35;
  }

  .map-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .map-metrics article {
    padding: 10px 8px;
  }

  .map-metrics b {
    font-size: 19px;
  }

  .map-metrics span {
    margin-top: 5px;
    font-size: 9px;
  }

  .map-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .map-filters input {
    min-height: 34px;
  }

  .map-filters select,
  .map-filters button {
    min-height: 32px;
    padding: 7px 9px;
    font-size: 10px;
  }

  .locations-map-list {
    display: none;
  }

  .locations-map-shell {
    padding: 6px;
  }

  .yandex-map {
    min-height: 260px;
  }

  .segment-layout {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .map-card,
  .wide-map {
    min-height: 170px;
  }

  .segment-hero {
    min-height: 176px;
    padding: 22px;
  }

  .segment-hero::before {
    inset: 12px;
  }

  .segment-hero span {
    margin-bottom: 10px;
    padding: 6px 9px;
    font-size: 10px;
  }

  .segment-hero b {
    font-size: 20px;
  }

  .segment-hero p {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.35;
  }

  .place-cards,
  .segment-cards,
  .format-cards,
  .case-cards,
  .agency-grid,
  .company-grid,
  .company-board,
  .contact-side,
  .lead-form {
    grid-template-columns: 1fr;
    gap: 10px;
    overflow: hidden;
  }

  .panel-contact {
    grid-template-rows: auto 1fr;
    gap: 10px;
  }

  .panel-contact .proposal-copy h2 {
    margin-bottom: 10px;
    font-size: 31px;
    line-height: 1.05;
  }

  .panel-contact .proposal-copy p {
    font-size: 14px;
  }

  .contact-main {
    margin-top: 10px;
    padding: 12px 15px;
  }

  .contact-main strong,
  .city-card b {
    font-size: 16px;
  }

  .contact-main a,
  .city-card a {
    margin: 8px 10px 0 0;
    font-size: 12px;
  }

  .contact-side {
    grid-template-rows: auto 1fr;
  }

  .city-switch {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .city-switch label {
    min-height: 34px;
    font-size: 12px;
  }

  .city-card {
    padding: 13px 14px;
  }

  .city-card p {
    margin-top: 6px;
    font-size: 12px;
  }

  .panel-contact .lead-form {
    display: none;
  }

  .place-cards article:nth-child(n+3) {
    display: none;
  }

  .place-cards img,
  .segment-cards img {
    height: 88px;
    min-height: 88px;
  }

  .mall-slider-track {
    gap: 10px;
  }

  .mall-slider-track article {
    flex-basis: 224px;
  }

  .mall-slider-track small {
    top: 8px;
    right: 8px;
    padding: 5px 7px;
    font-size: 8px;
  }

  .mall-slider-arrow {
    width: 34px;
    height: 50px;
    font-size: 28px;
  }

  .mall-slider-prev {
    left: 8px;
  }

  .mall-slider-next {
    right: 8px;
  }

  .brand-marquee {
    min-height: 48px;
  }

  .brand-card {
    min-width: 118px;
    min-height: 42px;
    padding: 8px 12px;
    font-size: 14px;
  }

  .brand-card img {
    max-width: 94px;
    max-height: 28px;
  }

  .cases-slogan {
    max-width: 320px;
    margin: -2px auto 0;
    font-size: 20px;
    line-height: 1.08;
  }

  .case-track article {
    flex-basis: 238px;
    min-height: 286px;
  }

  .case-track img {
    height: 128px;
  }

  .case-track b {
    margin: 12px 14px 6px;
    font-size: 16px;
  }

  .case-track span {
    margin: 0 14px 8px;
    font-size: 12px;
  }

  .case-track p {
    margin: 0 14px 12px;
    font-size: 11px;
    line-height: 1.35;
  }

  .segment-cards b {
    margin: 12px 14px 6px;
    font-size: 14px;
  }

  .segment-cards p {
    margin: 0 14px 12px;
    font-size: 11px;
  }

  .card-tags {
    gap: 5px;
    margin: 9px 12px 0;
  }

  .card-tags span {
    min-height: 22px;
    padding: 4px 7px;
    font-size: 8px;
  }

  .format-cards article,
  .agency-grid article,
  .company-grid article,
  .form-card {
    padding: 16px;
  }

  .format-cards article:nth-child(n+3),
  .agency-grid article:nth-child(n+3),
  .company-grid article:nth-child(n+3),
  .company-board article:nth-child(n+4) {
    display: none;
  }

  .company-board {
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }

  .company-board .company-mission {
    grid-row: auto;
  }

  .company-board article {
    padding: 13px 15px;
  }

  .company-board b,
  .company-board .company-mission b {
    margin-bottom: 6px;
    font-size: 17px;
  }

  .company-board p,
  .company-board .company-mission p {
    font-size: 11px;
    line-height: 1.3;
  }

  .company-board span {
    margin-bottom: 6px;
    font-size: 10px;
  }

  .company-board article:not(.company-mission) p {
    display: none;
  }

  .proposal-copy ul {
    display: none;
  }

  .form-card:nth-child(2) {
    display: none;
  }
}
