@font-face {
  font-family: "Mont";
  src: url("/fonts/mont-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Mont";
  src: url("/fonts/mont-semibold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Mont";
  src: url("/fonts/mont-bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Zinovia";
  src: url("/fonts/zinovia.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

.product-router {
  background: #fff;
  display: flex;
  min-height: calc(100vh - 86px);
  padding: 72px 0 88px;
}

.product-router__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-router__eyebrow,
.solo-section__eyebrow {
  color: var(--feature-color);
  font-family: "Mont", "Helvetica", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin: 0 0 14px;
  text-transform: lowercase;
}

.product-router__eyebrow {
  text-transform: none;
}

.product-router__title,
.solo-hero__title,
.solo-section__title {
  color: var(--copy-color);
  font-family: "Mont", "Helvetica", sans-serif;
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin: 0;
}

.product-router__title {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 50px;
  white-space: nowrap;
}

.solo-section__title {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 50px;
}

.solo-section__title#testday {
  scroll-margin-top: 150px;
}

.product-router__title .decorative,
.solo-hero__title .decorative,
.solo-section__title .decorative {
  font-family: "Zinovia", "Helvetica", sans-serif;
  font-weight: 400;
}

.product-router__lead {
  color: var(--secondary-copy-color);
  font-size: 20px;
  line-height: 1.45;
  margin: 24px 0 38px;
  max-width: 710px;
}

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

.product-router__card {
  background: #222;
  border: 1px solid transparent;
  border-radius: 20px;
  box-shadow: 0 18px 38px rgba(51, 51, 51, 0.14);
  color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  overflow: hidden;
  padding: 30px;
  position: relative;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-router__card::before {
  background-position: center;
  background-size: cover;
  content: "";
  inset: 0;
  filter: saturate(1.12) contrast(1.02);
  opacity: 0.92;
  position: absolute;
  transition: opacity 180ms ease, transform 300ms ease;
}

.product-router__card::after {
  background: linear-gradient(
    180deg,
    rgba(20, 20, 20, 0.08) 0%,
    rgba(20, 20, 20, 0.28) 34%,
    rgba(20, 20, 20, 0.82) 72%,
    rgba(20, 20, 20, 0.94) 100%
  );
  content: "";
  inset: 0;
  position: absolute;
}

.product-router__card--office::before {
  background-image: url("/images/router/01.jpg");
  background-position: center;
}

.product-router__card--solo::before {
  background-image: url("/images/router/03.jpg");
  background-position: center;
}

.product-router__card--meeting::before {
  background-image: url("/images/router/02.jpg");
  background-position: center 58%;
}

.samara-page .product-router__card--office::before {
  background-image: url("/img/samara/router-office.webp?v=20260805");
  background-position: center 64%;
}

.samara-page .product-router__card--solo::before {
  background-image: url("/img/samara/router-workplace.webp?v=20260805");
  background-position: center 54%;
}

.samara-page .product-router__card--meeting::before {
  background-image: url("/img/samara/router-meeting.webp?v=20260805");
  background-position: center 55%;
}

.kazan-page .product-router__card--office::before {
  background-image: url("/img/town/feature/kazan-feature-1.jpg?v=20260810");
  background-position: center;
}

.kazan-page .product-router__card--solo::before {
  background-image: url("/img/town/feature/kazan-feature-3.jpg?v=20260810");
  background-position: center;
}

.kazan-page .product-router__card--meeting::before {
  background-image: url("/img/town/feature/kazan-feature-4.jpg?v=20260810");
  background-position: center;
}

.izhevsk-page .product-router__card--office::before {
  background-image: url("/img/town/izhevsk-flexible-office.webp?v=20260828");
  background-position: center;
}

.izhevsk-page .product-router__card--solo::before {
  background-image: url("/img/town/feature/izhevsk-feature-3.webp?v=20260828");
  background-position: center;
}

.izhevsk-page .product-router__card--meeting::before {
  background-image: url("/img/town/izhevsk-conference-room.webp?v=20260828");
  background-position: center;
}

.product-router__card:hover,
.product-router__card:focus-visible {
  border-color: var(--feature-color);
  box-shadow: 0 16px 42px rgba(240, 103, 36, 0.14);
  outline: none;
  transform: translateY(-4px);
}

.product-router__card:hover::before,
.product-router__card:focus-visible::before {
  opacity: 1;
  transform: scale(1.03);
}

.product-router__index,
.product-router__card h2,
.product-router__card p,
.product-router__action {
  position: relative;
  z-index: 1;
}

.product-router__index {
  align-items: center;
  background: var(--feature-color);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-family: "Mont", "Helvetica", sans-serif;
  font-size: 14px;
  font-weight: 700;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.product-router__card h2 {
  color: #fff;
  font-family: "Mont", "Helvetica", sans-serif;
  font-size: 34px;
  line-height: 1.05;
  margin: 44px 0 14px;
  min-height: 72px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.24);
}

.product-router__card p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.45;
  margin: 0 0 auto;
  min-height: 47px;
  padding-bottom: 24px;
}

.product-router__action {
  align-items: center;
  background: var(--feature-color);
  border-radius: 999px;
  color: #fff;
  display: flex;
  font-family: "Mont", "Helvetica", sans-serif;
  font-size: 15px;
  font-weight: 600;
  justify-content: space-between;
  padding: 11px 15px;
}

.product-router__action::after {
  content: "→";
  font-size: 24px;
}

.ecosystem {
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
  right: 50%;
  width: 100vw;
}

.ecosystem .scroll-track {
  animation-duration: 56s;
}

.ecosystem .scroll-track .ecosystem-photo {
  height: var(--ecosystem-photo-height);
  object-fit: cover;
  object-position: var(--ecosystem-photo-position, center);
  width: var(--ecosystem-photo-width);
}

.ecosystem-photo--slot-1 {
  --ecosystem-photo-height: 346px;
  --ecosystem-photo-width: 360px;
}

.ecosystem-photo--slot-2 {
  --ecosystem-photo-height: 406px;
  --ecosystem-photo-width: 276px;
}

.ecosystem-photo--slot-3 {
  --ecosystem-photo-height: 333px;
  --ecosystem-photo-width: 413px;
}

.ecosystem-photo--slot-4 {
  --ecosystem-photo-height: 352px;
  --ecosystem-photo-width: 516px;
}

.ecosystem-photo--slot-5 {
  --ecosystem-photo-height: 523px;
  --ecosystem-photo-width: 433px;
}

.ecosystem-photo--slot-6 {
  --ecosystem-photo-height: 377px;
  --ecosystem-photo-width: 512px;
}

.ecosystem-photo--slot-7 {
  --ecosystem-photo-height: 540px;
  --ecosystem-photo-width: 389px;
}

.ecosystem-photo--slot-8 {
  --ecosystem-photo-height: 346px;
  --ecosystem-photo-width: 459px;
}

.ecosystem-photo--slot-9 {
  --ecosystem-photo-height: 514px;
  --ecosystem-photo-width: 332px;
}

.ecosystem-photo--slot-10 {
  --ecosystem-photo-height: 385px;
  --ecosystem-photo-width: 426px;
}

.ecosystem-photo--building {
  --ecosystem-photo-position: 50% 48%;
}

.ecosystem-photo--people {
  --ecosystem-photo-position: 56% 50%;
}

.ecosystem-photo--atrium {
  --ecosystem-photo-position: 50% 52%;
}

#office-start {
  scroll-margin-top: 80px;
}

.solo-page .page-header__intro {
  min-height: 680px;
}

.description__illustration.ekt {
  animation-name: preview-ekt-header;
}

.samara-page .description__illustration.ekt {
  animation-name: preview-samara-header;
}

.kazan-page .description__illustration.ekt {
  animation-name: preview-kazan-header;
}

.izhevsk-page .description__illustration.ekt {
  animation-name: preview-izhevsk-header;
  margin-top: 24px;
}

@keyframes preview-ekt-header {
  0%, 10%, 80%, 100% {
    background-image: url("/images/ekaterinburg/header-1.jpg?v=20260724");
  }

  15%, 25% {
    background-image: url("/images/solo/header-2.jpg?v=20260721");
  }

  30%, 50% {
    background-image: url("https://func.town/img/town/header/ekt-header-3.jpg");
  }

  55%, 75% {
    background-image: url("/images/solo/header-4.jpg?v=20260721");
  }
}

@keyframes preview-ekt-header-mobile {
  0%, 10%, 80%, 100% {
    background-image: url("/images/ekaterinburg/header-1.jpg?v=20260724");
    background-position: center;
  }

  15%, 25% {
    background-image: url("/images/solo/header-2.jpg?v=20260721");
    background-position: center;
  }

  30%, 50% {
    background-image: url("/img/town/header/ekt-header-3.jpg");
    background-position: left center;
  }

  55%, 75% {
    background-image: url("/images/solo/header-4.jpg?v=20260721");
    background-position: center;
  }
}

@keyframes preview-samara-header {
  0%, 10%, 80%, 100% {
    background-image: url("/img/samara/header-1.webp?v=20260805");
    background-position: center;
  }

  15%, 25% {
    background-image: url("/img/samara/header-2.webp?v=20260805");
    background-position: center;
  }

  30%, 50% {
    background-image: url("/img/samara/header-3.webp?v=20260805");
    background-position: center;
  }

  55%, 75% {
    background-image: url("/img/samara/header-4.webp?v=20260805");
    background-position: center;
  }
}

@keyframes preview-samara-header-mobile {
  0%, 10%, 80%, 100% {
    background-image: url("/img/samara/header-1.webp?v=20260805");
    background-position: center;
  }

  15%, 25% {
    background-image: url("/img/samara/header-2.webp?v=20260805");
    background-position: center;
  }

  30%, 50% {
    background-image: url("/img/samara/header-3.webp?v=20260805");
    background-position: center;
  }

  55%, 75% {
    background-image: url("/img/samara/header-4.webp?v=20260805");
    background-position: center;
  }
}

@keyframes preview-kazan-header {
  0%, 10%, 80%, 100% {
    background-image: url("/img/town/header/kazan-header-1.jpg?v=20260810");
    background-position: center;
  }

  15%, 25% {
    background-image: url("/img/town/header/kazan-header-2.jpg?v=20260810");
    background-position: center;
  }

  30%, 50% {
    background-image: url("/img/town/header/kazan-header-3.jpg?v=20260810");
    background-position: center;
  }

  55%, 75% {
    background-image: url("/img/town/header/kazan-header-4.jpg?v=20260810");
    background-position: center;
  }
}

@keyframes preview-kazan-header-mobile {
  0%, 10%, 80%, 100% {
    background-image: url("/img/town/header/kazan-header-1.jpg?v=20260810");
    background-position: center;
  }

  15%, 25% {
    background-image: url("/img/town/header/kazan-header-2.jpg?v=20260810");
    background-position: center;
  }

  30%, 50% {
    background-image: url("/img/town/header/kazan-header-3.jpg?v=20260810");
    background-position: left center;
  }

  55%, 75% {
    background-image: url("/img/town/header/kazan-header-4.jpg?v=20260810");
    background-position: center;
  }
}

@keyframes preview-izhevsk-header {
  0%, 10%, 80%, 100% {
    background-image: url("/img/town/header/izhevsk-header-1.webp?v=20260828");
    background-position: center;
  }

  15%, 25% {
    background-image: url("/img/town/header/izhevsk-header-2.webp?v=20260828");
    background-position: center;
  }

  30%, 50% {
    background-image: url("/img/town/header/izhevsk-header-3.webp?v=20260828");
    background-position: center;
  }

  55%, 75% {
    background-image: url("/img/town/header/izhevsk-header-4.webp?v=20260828");
    background-position: center;
  }
}

@keyframes preview-izhevsk-header-mobile {
  0%, 10%, 80%, 100% {
    background-image: url("/img/town/header/izhevsk-header-1.webp?v=20260828");
    background-position: center;
  }

  15%, 25% {
    background-image: url("/img/town/header/izhevsk-header-2.webp?v=20260828");
    background-position: center;
  }

  30%, 50% {
    background-image: url("/img/town/header/izhevsk-header-3.webp?v=20260828");
    background-position: center;
  }

  55%, 75% {
    background-image: url("/img/town/header/izhevsk-header-4.webp?v=20260828");
    background-position: center;
  }
}

.samara-page .become-resident__flex-button > div.flex-button__btn,
.kazan-page .become-resident__flex-button > div.flex-button__btn,
.izhevsk-page .become-resident__flex-button > div.flex-button__btn {
  margin-top: 0;
}

.izhevsk-page .office-benefits__image::after {
  background-image: linear-gradient(to bottom, rgba(51, 51, 51, 0.1) 30%, rgba(51, 51, 51, 0.8) 90%), url("/img/town/izhevsk-flexible-office.webp?v=20260828");
}

.solo-page .description__headline.ekt h1 {
  max-width: 780px;
}

@media (min-width: 769px) {
  .solo-page .page-header__curve.ekt {
    background-position: left top;
    background-repeat: no-repeat;
    background-size: 100% auto;
    height: calc(100vw * 290 / 1644);
  }
}

.solo-content {
  background: #fff;
}

.solo-hero-copy__location,
.solo-hero-copy__format,
.solo-hero-copy__included,
.solo-hero-copy__amenities {
  display: block;
}

.solo-hero-copy__format,
.solo-hero-copy__included {
  margin-top: 22px;
}

.solo-hero-copy__location,
.solo-hero-copy__included {
  font-weight: 700;
}

.solo-section {
  padding: 100px 0;
}

@media (min-width: 769px) {
  .solo-page #solo-about {
    margin-top: -190px;
    padding-top: 52px;
    position: relative;
    z-index: 1;
  }
}

.solo-section--soft {
  background: #f8f8f8;
}

.solo-section--orange {
  background: var(--feature-color);
  color: #fff;
}

.solo-section--orange .solo-section__eyebrow,
.solo-section--orange .solo-section__title,
.solo-section--orange .solo-section__copy {
  color: #fff;
}

.solo-section__heading {
  align-items: end;
  display: flex;
  gap: 48px;
  justify-content: space-between;
  margin-bottom: 52px;
}

.solo-section__copy {
  color: var(--secondary-copy-color);
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
  max-width: 470px;
}

.solo-highlight {
  align-items: stretch;
  display: grid;
  gap: 24px;
  grid-template-columns: 1.15fr 0.85fr;
}

.solo-highlight__offer,
.solo-highlight__rules {
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 38px;
}

.solo-highlight__offer {
  background: #fbae19;
  border-color: #fbae19;
  color: var(--copy-color);
}

.solo-highlight__offer .button {
  background: var(--feature-color);
  color: #fff;
}

.solo-highlight__offer .button:hover,
.solo-highlight__offer .button:focus-visible {
  background: var(--feature-hover-color);
  color: #fff;
}

.solo-highlight__title {
  font-family: "Mont", "Helvetica", sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.15;
  margin: 0;
}

.solo-highlight__price {
  display: block;
  font-family: "Mont", "Helvetica", sans-serif;
  font-size: 78px;
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1;
  margin-top: 18px;
}

.solo-highlight__lead {
  font-size: 17px;
  line-height: 1.45;
  margin: 24px 0;
  max-width: 540px;
}

.solo-highlight__included-title {
  font-family: "Mont", "Helvetica", sans-serif;
  font-size: 18px;
  margin: 0 0 14px;
}

.solo-highlight__included-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.solo-highlight__included-list li {
  font-size: 16px;
  line-height: 1.45;
  padding-left: 22px;
  position: relative;
}

.solo-highlight__included-list li + li {
  margin-top: 8px;
}

.solo-highlight__included-list li::before {
  content: "—";
  left: 0;
  position: absolute;
}

.solo-highlight__note {
  font-size: 15px;
  margin: 24px 0;
}

.solo-highlight__rules h3,
.solo-inout h3,
.solo-faq h3 {
  font-family: "Mont", "Helvetica", sans-serif;
  font-size: 28px;
  line-height: 1.15;
  margin: 0 0 24px;
}

.solo-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.solo-checklist li {
  border-top: 1px solid var(--border-color);
  font-size: 16px;
  line-height: 1.4;
  padding: 14px 0 14px 30px;
  position: relative;
}

.solo-checklist li::before {
  color: var(--feature-color);
  content: "✓";
  font-weight: 700;
  left: 0;
  position: absolute;
}

.solo-checklist--minus li::before {
  content: "—";
}

.solo-checklist--extras li::before {
  content: "+";
}

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

.solo-tariff {
  --solo-card-border: var(--feature-color);
  --solo-perforation-step: 10.5px;
  --solo-ticket-height: 94px;
  background: transparent;
  border: 0;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  min-height: 340px;
  padding: 30px;
  position: relative;
}

.solo-tariff::before {
  -webkit-mask: radial-gradient(
    circle at 5.25px 100%,
    transparent 0 4.75px,
    #000 5px
  ) 0 0 / var(--solo-perforation-step) 100% repeat-x;
  background: #fff;
  border: 1px solid var(--solo-card-border);
  border-bottom: 0;
  border-radius: 20px 20px 0 0;
  bottom: var(--solo-ticket-height);
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  mask: radial-gradient(
    circle at 5.25px 100%,
    transparent 0 4.75px,
    #000 5px
  ) 0 0 / var(--solo-perforation-step) 100% repeat-x;
}

.solo-tariff::after {
  background: radial-gradient(
    circle at 5.25px 100%,
    transparent 0 3.75px,
    var(--feature-color) 4px 5px,
    transparent 5.25px
  ) 0 0 / var(--solo-perforation-step) 5px repeat-x;
  bottom: var(--solo-ticket-height);
  content: "";
  height: 5px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  z-index: 2;
}

.solo-tariff--featured {
  box-shadow: 0 12px 38px rgba(240, 103, 36, 0.12);
}

.solo-tariff__tag {
  color: var(--feature-color);
  font-family: "Mont", "Helvetica", sans-serif;
  font-size: 14px;
  font-weight: 600;
  min-height: 20px;
}

.solo-tariff h3 {
  font-family: "Mont", "Helvetica", sans-serif;
  font-size: 30px;
  line-height: 1.1;
  margin: 28px 0 12px;
}

.solo-tariff__description {
  color: var(--secondary-copy-color);
  font-size: 15px;
  line-height: 1.45;
  margin-bottom: 20px;
  min-height: calc(3em * 1.45);
}

.solo-tariff__price {
  color: var(--feature-color);
  font-family: "Mont", "Helvetica", sans-serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.035em;
  margin: 0 0 20px;
}

.solo-tariff__price--weekend {
  white-space: nowrap;
}

.solo-ticket {
  -webkit-mask: radial-gradient(
    circle at 5.25px 0,
    transparent 0 4.75px,
    #000 5px
  ) 0 0 / var(--solo-perforation-step) 100% repeat-x;
  align-items: center;
  background: var(--feature-color);
  border-radius: 0 0 19px 19px;
  color: #fff;
  display: flex;
  flex-direction: column;
  height: var(--solo-ticket-height);
  justify-content: center;
  margin: 0 -30px -30px;
  overflow: hidden;
  padding: 14px 20px 10px;
  position: relative;
  text-decoration: none;
  transform-origin: 0 0;
  transition: transform 200ms linear, box-shadow 200ms linear;
  width: calc(100% + 60px);
  mask: radial-gradient(
    circle at 5.25px 0,
    transparent 0 4.75px,
    #000 5px
  ) 0 0 / var(--solo-perforation-step) 100% repeat-x;
}

.solo-ticket__label {
  font-family: "Mont", "Helvetica", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-transform: lowercase;
}

.solo-ticket__barcode {
  background: repeating-linear-gradient(
    90deg,
    #fff 0 4px,
    transparent 4px 7px,
    #fff 7px 9px,
    transparent 9px 12px,
    #fff 12px 13px,
    transparent 13px 16px
  );
  display: block;
  height: 25px;
  margin-top: 12px;
  width: 64%;
}

.solo-ticket:hover,
.solo-ticket:focus-visible {
  box-shadow: 0 14px 24px rgba(240, 103, 36, 0.22);
  color: #fff;
  transform: rotate(3deg) translateY(2px);
}

.solo-ticket:focus-visible {
  outline: 3px solid #333;
  outline-offset: 4px;
}

.solo-ticket:active {
  transform: rotate(1deg) translateY(3px);
}

.solo-schedule-fields {
  align-items: start;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 12px 0 16px;
}

.solo-schedule-fields[hidden] {
  display: none;
}

.tour__form .solo-schedule-field,
.tour__form .solo-schedule-field:nth-of-type(2) {
  margin: 0;
  padding: 0;
}

.tour__form .solo-schedule-field .form__input {
  box-sizing: border-box;
  color: var(--copy-color);
  font-family: "Verdana", "Helvetica", sans-serif;
  font-size: 14px;
  height: 40px;
  line-height: 20px;
  margin: 0;
  min-width: 0;
  padding: 10px 20px;
  width: 100%;
}

@media (min-width: 577px) {
  .solo-page .new-popup__background {
    height: 410px;
  }

  .solo-page .new-popup__content#thank-you-content {
    height: 410px;
  }
}

.solo-inout {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
}

.solo-inout > article {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 34px;
}

.solo-photo-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.solo-photo-grid figure {
  margin: 0;
}

.solo-photo-grid img {
  border-radius: 20px;
  height: 420px;
  object-fit: cover;
  width: 100%;
}

.solo-photo-grid figcaption {
  color: var(--secondary-copy-color);
  font-size: 14px;
  margin-top: 12px;
}

.solo-faq {
  display: grid;
  gap: 0 60px;
  grid-template-columns: 1fr 1fr;
}

.solo-faq details {
  border-top: 1px solid var(--border-color);
  padding: 20px 0;
}

.solo-faq summary {
  cursor: pointer;
  font-family: "Mont", "Helvetica", sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.solo-faq details p {
  color: var(--secondary-copy-color);
  line-height: 1.5;
  margin: 16px 0 0;
}

.solo-crosslinks {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
  margin-top: 52px;
}

.solo-crosslinks a {
  align-items: center;
  background: #fff;
  border-radius: 20px;
  color: var(--copy-color);
  display: flex;
  font-family: "Mont", "Helvetica", sans-serif;
  font-size: 24px;
  font-weight: 600;
  justify-content: space-between;
  min-height: 120px;
  padding: 28px;
}

.solo-crosslinks a::after {
  color: var(--feature-color);
  content: "→";
  font-size: 30px;
}

.office-plans {
  margin-bottom: 110px;
}

.office-description p + p {
  margin-top: 18px;
}

.new-prices.office-plans .office-plans__heading {
  margin-bottom: 48px;
  text-align: left;
}

.office-plans__heading .solo-section__title {
  margin: 8px 0 0;
}

.office-plans__lead {
  color: var(--secondary-copy-color);
  font-size: 20px;
  line-height: 1.5;
  margin: 22px 0 0;
  max-width: 720px;
}

.office-plan-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
}

.office-plan-card {
  min-height: 420px;
}

.office-plan-card--plus,
.office-plan-details--plus {
  background: #fff8e8;
}

.office-plan-card__price {
  white-space: nowrap;
}

.office-plan-card > .office-plan-card__price {
  margin-top: auto;
}

.office-plan-card__price span {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.25;
}

.izhevsk-page .office-plan-card__pricing {
  align-items: start;
  display: grid;
  gap: 8px;
  margin: auto 0 20px;
}

.izhevsk-page .office-plan-card__pricing .office-plan-card__price {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  margin: 0;
  white-space: normal;
}

.izhevsk-page .office-plan-card__regular-price,
.izhevsk-page .office-plan-details__regular-price {
  color: var(--secondary-copy-color);
  text-decoration: line-through;
  text-decoration-color: var(--feature-color);
  text-decoration-thickness: 2px;
}

.izhevsk-page .office-plan-card__regular-price {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 3px 8px;
  font-family: "Mont", "Helvetica", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
  text-decoration: none;
}

.izhevsk-page .office-plan-card__regular-amount {
  font-size: 18px;
  font-weight: 600;
  text-decoration: line-through;
  text-decoration-color: var(--feature-color);
  text-decoration-thickness: 2px;
}

.izhevsk-page .office-plan-card__discount-amount {
  color: var(--feature-color);
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
}

.izhevsk-page .office-plan-card__price-unit {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
}

.izhevsk-page .office-plan-card__discount-note {
  background: rgba(240, 103, 36, 0.1);
  border-radius: 999px;
  color: var(--feature-color);
  font-family: "Mont", "Helvetica", sans-serif;
  font-size: 12px;
  font-weight: 600;
  margin: 0;
  padding: 6px 10px;
  width: fit-content;
}

.izhevsk-page .office-plan-details__regular-price {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  margin-right: 8px;
}

.office-plan-card__price--custom {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: normal;
}

.office-plan-card .solo-ticket__label {
  font-size: 24px;
}

.office-plan-services {
  align-items: start;
  background: #f7f7f7;
  border-radius: 24px;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  margin-top: 64px;
  padding: 40px;
}

.office-plan-services__heading h3 {
  font-family: "Mont", "Helvetica", sans-serif;
  font-size: 32px;
  line-height: 1.2;
  margin: 8px 0 0;
}


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

.office-plan-services__list li {
  margin: 0;
}

.office-plan-comparison {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.office-plan-details {
  border: 1px solid var(--feature-color);
  border-radius: 24px;
  padding: 34px;
}

.office-plan-details__eyebrow {
  color: var(--feature-color);
  font-family: "Mont", "Helvetica", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
}

.office-plan-details h3 {
  font-family: "Mont", "Helvetica", sans-serif;
  font-size: 26px;
  line-height: 1.25;
  margin: 0 0 24px;
}

.office-plans__note {
  color: var(--secondary-copy-color);
  font-size: 16px;
  line-height: 1.5;
  margin: 24px 0 0;
}

/* Keep the office tariff summary visually attached to its FAQ. */
.izhevsk-page .office-plans {
  margin-bottom: 0;
}

.izhevsk-page #office-faq {
  padding-top: 48px;
}

/* The consent control sits over a light photo area on both Izhevsk forms. */
.izhevsk-page .tour .form__footer .popup__checkmark-label.orange::before {
  background-color: #fff;
  border-color: var(--copy-color);
}

/* The Kazan office tariffs and FAQ form one continuous content block. */
.kazan-page .office-plans {
  margin-bottom: 0;
}

.kazan-page #office-faq {
  padding-top: 48px;
}

@media (max-width: 1024px) {
  .solo-page .description__text-wrapper {
    align-items: stretch;
    flex-direction: column;
  }

  .solo-page .solo-hero-copy {
    font-size: 17px;
    line-height: 1.5;
    max-width: none;
    width: 100%;
  }

  .product-router__grid,
  .solo-tariff-grid {
    grid-template-columns: 1fr;
  }

  .product-router__card {
    min-height: 250px;
  }

  .solo-highlight,
  .solo-section__heading {
    align-items: start;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .solo-tariff {
    min-height: 290px;
  }

  .office-plan-grid {
    max-width: 580px;
    width: 100%;
  }

  .office-plan-card {
    min-height: 390px;
  }
}

@media (max-width: 768px) {
  .solo-section__title#testday {
    scroll-margin-top: 90px;
  }

  .page-header .description__text.ekt {
    font-size: 17px;
    line-height: 1.5;
    max-width: none;
    width: 100%;
  }

  .product-router {
    min-height: auto;
    padding: 52px 0 72px;
  }

  .product-router__title,
  .solo-section__title {
    font-size: 24px;
    line-height: 34px;
  }


  .product-router__lead,
.solo-section__copy {
    font-size: 17px;
  }

  .product-router__card {
    min-height: 230px;
    padding: 24px;
  }

  .solo-section {
    padding: 70px 0;
  }

  .solo-ticket {
    margin: 0 -24px -24px;
    width: calc(100% + 48px);
  }

  .solo-tariff__price {
    padding: 18px 0;
  }

  .solo-tariff {
    --solo-ticket-height: 90px;
  }

  .solo-schedule-fields {
    grid-template-columns: 1fr;
  }

  .solo-section__heading {
    display: flex;
    gap: 24px;
  }

  .solo-highlight__offer,
  .solo-highlight__rules,
  .solo-tariff,
  .solo-inout > article {
    padding: 24px;
  }

  .solo-highlight__price {
    font-size: 58px;
  }

  .solo-inout,
  .solo-photo-grid,
  .solo-faq,
  .solo-crosslinks {
    grid-template-columns: 1fr;
  }

  .solo-photo-grid img {
    height: 300px;
  }

  .office-plans {
    margin-bottom: 80px;
  }

  .kazan-page .office-plans {
    margin-bottom: 0;
  }

  .kazan-page #office-faq {
    padding-top: 36px;
  }

  .new-prices.office-plans .office-plans__heading {
    margin-bottom: 34px;
  }

  .office-plans__lead {
    font-size: 17px;
  }

  .office-plan-services,
  .office-plan-comparison {
    grid-template-columns: 1fr;
  }

  .office-plan-services {
    gap: 28px;
    margin-top: 48px;
    padding: 28px;
  }

  .office-plan-services__list {
    grid-template-columns: 1fr;
  }

  .office-plan-details {
    padding: 28px;
  }
}

.solo-section__aside {
  align-items: center;
  display: flex;
  gap: 32px;
  justify-content: space-between;
  margin-top: 18px;
  max-width: 620px;
}

.solo-section__aside-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.solo-section__office-copy {
  color: var(--copy-color);
  font-size: 18px;
  margin: 0;
}

.solo-section__office-button {
  display: inline-flex;
  flex-shrink: 0;
  text-decoration: none;
  white-space: nowrap;
}

@media (max-width: 576px) {
  .solo-section__aside {
    align-items: start;
    flex-direction: column;
  }

  .product-router__title,
  .solo-section__title {
    font-size: 20px;
    line-height: 28px;
  }


  .office-plan-card {
    min-height: 400px;
  }

  .izhevsk-page .office-plan-card {
    min-height: 430px;
  }

  .office-plan-card .solo-ticket__label {
    font-size: 20px;
  }

  .office-plan-card__price--custom {
    font-size: 18px;
  }

  .office-plan-services__heading h3,
  .office-plan-details h3 {
    font-size: 22px;
  }

}

/* Office-page feature cards: keep photography sharp until its description is requested. */
.features__card.ekt .features__card--top img {
  filter: none !important;
  transition: filter 0.3s ease;
}

.product-router[hidden] {
  display: none !important;
}

@media (min-width: 769px) {
  .workspaces > .section__headline .headline {
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  .description__illustration.ekt {
    animation-name: preview-ekt-header-mobile;
  }

  .samara-page .description__illustration.ekt {
    animation-name: preview-samara-header-mobile;
  }

  .kazan-page .description__illustration.ekt {
    animation-name: preview-kazan-header-mobile;
  }

  .izhevsk-page .description__illustration.ekt {
    animation-name: preview-izhevsk-header-mobile;
  }

  .features__card.ekt {
    border: 1px solid var(--feature-color);
  }

  .features__card.ekt .features__card--top > img,
  .features__card.ekt:hover .features__card--top > img,
  .features__card.ekt:active .features__card--top > img {
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: inherit;
  }

  .features__card.ekt .features__card--bottom {
    top: auto;
    bottom: 0;
    z-index: 10;
    display: block;
    height: auto;
    min-height: 0;
    padding: 16px;
    border: 0;
    border-top: 1px solid var(--feature-color);
    border-radius: 0 0 15px 15px;
  }

  #new-popup__headline {
    font-size: 14px;
    line-height: 20px;
    white-space: nowrap;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }
}

@media (max-width: 576px) {
  .new-price {
    height: 725px;
  }

  .new-price__content {
    min-height: 591px;
  }

  .new-price__description {
    height: 360px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-router__card,
  .product-router__card::before {
    transition: none;
  }
}

/* Ensure all page/section headers are consistently left-justified */
.product-router__title,
.headline,
.solo-section__title,
.contacts__headline,
.solo-highlight__title,
.office-plan-services__heading h3,
.office-plan-details h3 {
  text-align: left;
}

/*
 * Zinovia renders shorter than Mont at the same pixel size, so the accent words
 * need a multiplier to end up the same visual height as the black text.
 * 1.085 is the measured ratio of the two fonts' lowercase letter height
 * (Mont 0.5660em vs Zinovia 0.5218em). Using em keeps it correct at every
 * breakpoint automatically, instead of hard-coding a size per breakpoint.
 */
h1 span.decorative,
h2 span.decorative,
h3 span.decorative,
.product-router__title .decorative,
.headline .decorative,
.solo-section__title .decorative,
.office-plan-services__heading .decorative {
  font-size: 1.085em;
  line-height: inherit;
}

/* Раскладка зоны «выберите свою рабочую зону» на solo-samara.
 *
 * Эти правила были удалены вместе с чисткой ekb-workflow.css под Екатеринбург,
 * хотя относятся к Самаре. Без них .workspace сохраняет из town.css отступ
 * снизу и позиционирование, из-за чего карточки преимуществ наезжали на
 * следующую секцию «тест-день». */
.solo-page.samara-page .solo-workspace-zones,
.solo-page.kazan-page .solo-workspace-zones,
.solo-page.izhevsk-page .solo-workspace-zones {
  padding-top: 18px;
}

.solo-page.samara-page .solo-workspace-zones > .section__headline,
.solo-page.kazan-page .solo-workspace-zones > .section__headline,
.solo-page.izhevsk-page .solo-workspace-zones > .section__headline {
  text-align: center;
  width: 100%;
}

.solo-page.samara-page .solo-workspace-zones .workspace,
.solo-page.kazan-page .solo-workspace-zones .workspace,
.solo-page.izhevsk-page .solo-workspace-zones .workspace {
  margin-bottom: 0;
  position: static;
}

.solo-page.samara-page .solo-workspace-zones .workspace__image,
.solo-page.kazan-page .solo-workspace-zones .workspace__image,
.solo-page.izhevsk-page .solo-workspace-zones .workspace__image {
  z-index: 0;
}

@media (min-width: 769px) {
  .solo-page.samara-page main.page-main,
  .solo-page.kazan-page main.page-main,
  .solo-page.izhevsk-page main.page-main {
    margin-top: 0;
  }

  .solo-page.samara-page .solo-workspace-zones + #solo-about,
  .solo-page.kazan-page .solo-workspace-zones + #solo-about,
  .solo-page.izhevsk-page .solo-workspace-zones + #solo-about {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .solo-page.samara-page .solo-workspace-zones,
  .solo-page.kazan-page .solo-workspace-zones,
  .solo-page.izhevsk-page .solo-workspace-zones {
    padding-top: 28px;
  }
}
