/* Home v2: new UI (background preserved). */

:root {
  --re-brand: #49458c;
  --re-brand-dark: #3a3670;
  --re-brand-muted: #6b6799;
  --re-accent: #67c542;
  --re-accent-dark: #56a835;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

.screen-one-container {
  max-width: 1160px;
  padding-top: 80px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Fixed topbar ── */
.re-home-topbar {
  --re-home-topbar-h: 76px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: transparent;
  transition: background .2s ease, box-shadow .2s ease;
}

.re-home-topbar.is-scrolled {
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 14px rgba(41, 38, 84, 0.04);
}

.re-home-topbar__inner {
  max-width: 1280px;
  margin: 0 auto;
  min-height: var(--re-home-topbar-h);
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 12px 16px;
  box-sizing: border-box;
}

.re-home-topbar__logo {
  flex-shrink: 0;
}

.re-home-logo {
  width: 160px;
  height: auto;
  display: block;
}

.re-home-topbar__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 4px;
  min-width: 0;
}

.re-home-topbar__link {
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  color: var(--re-brand);
  white-space: nowrap;
  transition: background .15s ease, color .15s ease;
}

.re-home-topbar__link:hover {
  background: #f3f2fa;
  color: var(--re-brand-dark);
}

.re-home-topbar.is-scrolled .re-home-topbar__link {
  color: var(--re-brand);
}

.re-home-topbar.is-scrolled .re-home-topbar__link:hover {
  background: #f3f2fa;
}

.re-home-topbar__contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  flex-shrink: 0;
}

.re-home-topbar__phone,
.re-home-topbar__email {
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  color: var(--re-brand);
  line-height: 1.2;
  white-space: nowrap;
}

.re-home-topbar__email {
  font-size: 13px;
  font-weight: 700;
  color: var(--re-brand-muted);
}

.re-home-topbar__phone:hover,
.re-home-topbar__email:hover {
  text-decoration: underline;
  color: var(--re-brand-dark);
}

.re-home-topbar.is-scrolled .re-home-topbar__phone,
.re-home-topbar.is-scrolled .re-home-topbar__email {
  color: var(--re-brand);
}

.re-home-topbar__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.re-home-topbar__toggle {
  display: none;
  height: 40px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid var(--re-brand);
  background: transparent;
  color: var(--re-brand);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}

.re-home-topbar.is-scrolled .re-home-topbar__toggle {
  border-color: #d8d5ef;
  background: #fff;
  color: var(--re-brand);
}

.re-home-topbar .re-home-btn--outline {
  border-color: var(--re-brand);
  color: var(--re-brand);
  background: transparent;
}

.re-home-topbar.is-scrolled .re-home-btn--outline {
  border-color: var(--re-brand);
  color: var(--re-brand);
  background: transparent;
}

/* ── Buttons ── */
.re-home-btn {
  height: 48px;
  padding: 0 18px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, opacity .15s ease, background .15s ease;
  font-family: inherit;
}

.re-home-btn:hover {
  opacity: .92;
  transform: translateY(-1px);
}

.re-home-btn--primary {
  background: #67c542;
  color: #fff;
}

.re-home-btn--ghost {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(73, 69, 140, 0.35);
  color: var(--re-brand);
}

.re-home-btn--outline {
  background: transparent;
  border: 1px solid var(--re-brand);
  color: var(--re-brand);
}

.re-home-btn--sm {
  height: 40px;
  padding: 0 14px;
  font-size: 14px;
  border-radius: 12px;
}

.re-home-btn--full {
  width: 100%;
}

.re-home-btn.is-disabled,
.re-home-btn[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

/* ── Hero ── */
.re-home-hero {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 24px 0 32px;
}

.re-home-hero__content {
  width: 100%;
}

.re-home-h1 {
  margin: 0 0 14px;
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--re-brand);
}

.re-home-h1 span {
  color: var(--re-accent-dark);
  font-weight: 700;
}

.re-home-lead {
  margin: 0 auto 22px;
  font-size: 18px;
  line-height: 1.45;
  color: var(--re-brand-muted);
  font-weight: 600;
  max-width: 58ch;
}

.re-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ── Layout ── */
.re-home-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}

.re-home-wrap--wide {
  max-width: 1280px;
}

.re-home-h2 {
  margin: 0 0 10px;
  font-size: 26px;
  color: #fff;
  letter-spacing: -0.01em;
}

.re-home-h2--dark {
  color: #49458c;
}

.re-home-p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  max-width: 70ch;
}

.re-home-p--dark {
  color: #6b6799;
}

/* ── About (block 2) — как .screen-two / .honey / .benefits ── */
.re-home-about {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 100%;
}

.re-home-about__bg {
  background: url(/images/bg-1-img.png) 50% 0 no-repeat, url(/images/bg-1.png) 50% repeat;
}

.re-home-about__intro {
  max-width: 800px;
  margin: 0 auto;
  padding: 72px 16px 48px;
  text-align: center;
  box-sizing: border-box;
}

.re-home-about__icon-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, #49458c 0%, #5a56a0 100%);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(73, 69, 140, 0.28);
}

.re-home-about__icon-wrap svg {
  width: 36px;
  height: 36px;
}

.re-home-about__title {
  margin: 0 0 20px;
  font-size: 38px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #49458c;
}

.re-home-about__text {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: #7875af;
  font-weight: 600;
}

.re-home-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px 72px;
  box-sizing: border-box;
}

.re-home-benefit {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  padding: 24px 18px 22px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(41, 38, 84, 0.1);
}

.re-home-benefit__ico {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: #49458c;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px rgba(73, 69, 140, 0.22);
}

.re-home-benefit__ico svg {
  width: 28px;
  height: 28px;
}

.re-home-benefit h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
  color: #49458c;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.re-home-benefit p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #7875af;
  font-weight: 600;
}

/* ── Order section ── */
.re-home-order {
  padding: 80px 0 88px;
  box-sizing: border-box;
  background: url(/bg-2-img.png) 100% 100% no-repeat, url(/bg-2.png) 50% repeat;
}

.re-home-order .re-home-wrap--wide {
  width: 100%;
  max-width: 960px;
}

.re-home-order-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
}

.re-home-order-heading {
  margin: 0 0 12px;
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #49458c;
}

.re-home-order-lead {
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
  color: #6b6799;
  font-weight: 600;
}

.re-home-workflow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.re-home-workflow__item {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 18px;
  padding: 20px 16px 18px;
  box-shadow: 0 10px 32px rgba(41, 38, 84, 0.12);
}

.re-home-workflow__item:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  color: #67c542;
  font-size: 20px;
  font-weight: 800;
  z-index: 1;
}

.re-home-workflow__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #49458c;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}

.re-home-workflow__title {
  font-size: 15px;
  font-weight: 800;
  color: #49458c;
  margin-bottom: 6px;
  line-height: 1.25;
}

.re-home-workflow__text {
  font-size: 13px;
  line-height: 1.4;
  color: #7875af;
  font-weight: 600;
}

.re-home-order-form {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 24px;
  padding: 32px 36px 28px;
  box-shadow: 0 18px 56px rgba(41, 38, 84, 0.18);
}

.re-home-order-form__field {
  margin-bottom: 16px;
}

.re-home-label {
  display: block;
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 800;
  color: #7875af;
}

.re-home-order-input {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid #d8d5ef;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  color: #49458c;
  background: #fff;
  box-sizing: border-box;
  font-family: inherit;
}

.re-home-order-input:focus {
  outline: none;
  border-color: #49458c;
  box-shadow: 0 0 0 3px rgba(73, 69, 140, 0.15);
}

.re-home-error {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.3;
  color: #d9534f;
  font-weight: 600;
}

.re-home-order-submit {
  margin-top: 4px;
}

/* DaData suggestions inside order form */
.re-home-order-form .suggestions-wrapper {
  width: 100%;
  color: #49458c;
}

.re-home-order-form .suggestions-suggestions {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #d8d5ef;
  box-shadow: 0 8px 24px rgba(41, 38, 84, 0.12);
  background: #fff;
}

.re-home-order-form .suggestions-suggestion {
  color: #49458c;
  background: #fff;
  padding: 10px 14px;
  font-size: 15px;
  line-height: 1.35;
  cursor: pointer;
}

.re-home-order-form .suggestions-suggestion:hover,
.re-home-order-form .suggestions-selected {
  background: #f3f2fa;
  color: #49458c;
}

.re-home-order-form .suggestions-value,
.re-home-order-form .suggestions-subtext,
.re-home-order-form .suggestions-hint {
  color: #49458c;
}

.re-home-order-form .suggestions-subtext {
  color: #7875af;
  font-size: 13px;
}

.re-home-order-form .suggestions-promo,
.re-home-order-form .suggestions-promo:hover {
  color: #7875af;
  background: #fff;
}

/* ── Example / MacBook ── */
.re-home-example {
  padding: 72px 0 80px;
  box-sizing: border-box;
  background: url(/images/bg-3-img.png) 50% 100% no-repeat, url(/images/bg-3.png) 50% repeat;
}

.re-home-example__head {
  text-align: center;
  margin-bottom: 40px;
}

.re-home-example__head .re-home-h2,
.re-home-example__head .re-home-p {
  margin-left: auto;
  margin-right: auto;
}

.re-macbook-scene {
  width: 100%;
  padding: 0;
}

.re-macbook {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  filter: drop-shadow(0 24px 48px rgba(41, 38, 84, 0.22));
}

.re-macbook__screen-frame {
  background: linear-gradient(180deg, #d4d4d8 0%, #a1a1aa 100%);
  border-radius: 16px 16px 0 0;
  padding: 12px 12px 8px;
  position: relative;
}

.re-macbook__camera {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3f3f46;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.re-macbook__screen {
  background: #1a1a1a;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #27272a;
  display: flex;
  flex-direction: column;
}

.re-macbook__toolbar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  background: linear-gradient(180deg, #3f3f46 0%, #27272a 100%);
  border-bottom: 1px solid #18181b;
  flex-shrink: 0;
}

.re-macbook__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}

.re-macbook__dot--red { background: #ff5f57; }
.re-macbook__dot--yellow { background: #febc2e; }
.re-macbook__dot--green { background: #28c840; }

.re-macbook__title {
  flex: 1;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  padding-right: 44px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.re-macbook__viewport {
  background: #e8e8e8;
  overflow: hidden;
  padding: 14px;
  display: flex;
  align-items: flex-start;
}

.re-macbook__sheet {
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  width: 100%;
}

.re-macbook__hinge {
  height: 5px;
  margin: 0 8%;
  background: linear-gradient(180deg, #9ca3af 0%, #6b7280 100%);
  border-radius: 0 0 2px 2px;
}

.re-macbook__base {
  height: 20px;
  margin: 0 5%;
  background: linear-gradient(180deg, #c4c4c8 0%, #9a9aa0 55%, #7c7c82 100%);
  border-radius: 0 0 12px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.re-macbook__trackpad {
  width: 16%;
  height: 5px;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.12);
}

.re-registry-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 11.5px;
  line-height: 1.45;
  color: #333;
}

.re-registry-table th,
.re-registry-table td {
  border: 1px solid #bbb;
  padding: 8px 7px;
  text-align: left;
  vertical-align: top;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.re-registry-table col.col-num { width: 4%; }
.re-registry-table col.col-room { width: 13%; }
.re-registry-table col.col-owner { width: 11%; }
.re-registry-table col.col-doc { width: 24%; }
.re-registry-table col.col-area { width: 9%; }
.re-registry-table col.col-share { width: 10%; }
.re-registry-table col.col-vpct { width: 14%; }
.re-registry-table col.col-vsqm { width: 15%; }

.re-registry-table thead tr:first-child th {
  background: #49458c;
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  padding: 12px 8px;
  line-height: 1.35;
}

.re-registry-table thead tr:nth-child(2) th {
  background: #e8e7f4;
  color: #49458c;
  font-weight: 700;
  font-size: 8.5px;
  line-height: 1.2;
  padding: 6px 4px;
  white-space: normal;
  vertical-align: top;
}

.re-registry-table tbody tr:nth-child(even):not(.re-registry-table__total) {
  background: #fafafa;
}

.re-registry-table__total td {
  background: #f0eff8;
  font-weight: 700;
}

.re-home-example-note {
  margin: 24px auto 0;
  max-width: 720px;
  text-align: center;
  font-size: 13px;
  line-height: 1.45;
  color: #7875af;
  font-weight: 600;
}

/* ── Footer / Contacts ── */
.re-home-footer {
  background: #2a2758;
  color: rgba(255, 255, 255, 0.88);
  padding: 48px 0 32px;
}

.re-home-footer__title {
  margin: 0 0 24px;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}

.re-home-footer__lines {
  margin-bottom: 28px;
}

.re-home-footer__line {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

.re-home-footer__line--legal {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.re-home-footer__key {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 700;
  margin-right: 4px;
}

.re-home-footer__sep {
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.35);
}

.re-home-footer__line a {
  color: #fff;
  text-decoration: none;
}

.re-home-footer__line a:hover {
  text-decoration: underline;
}

.re-site-copyright {
  padding: 20px 16px 28px;
  text-align: center;
  background: #2a2758;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.re-site-copyright p {
  margin: 0 auto;
  max-width: 720px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
}

/* ── To top ── */
.re-home-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #49458c;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(41, 38, 84, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s, visibility .2s, transform .2s;
  z-index: 100;
}

.re-home-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.re-home-to-top:hover {
  background: #5a56a0;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .re-home-topbar__contacts {
    display: none;
  }
}

@media (max-width: 991px) {
  html {
    scroll-padding-top: 72px;
  }

  .screen-one-container {
    padding-top: 72px;
  }

  .re-home-topbar__inner {
    flex-wrap: wrap;
    min-height: 72px;
  }

  .re-home-topbar__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .re-home-topbar__nav {
    display: none;
    order: 4;
    flex: 1 1 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 8px 0 4px;
  }

  .re-home-topbar__nav.is-open {
    display: flex;
  }

  .re-home-topbar__link {
    text-align: center;
  }

  .re-home-topbar__actions {
    display: none;
  }

  .re-home-topbar__nav.is-open + .re-home-topbar__contacts,
  .re-home-topbar__nav.is-open ~ .re-home-topbar__actions {
    display: none;
  }

  .re-home-logo {
    width: 140px;
  }
}

@media (max-width: 1024px) {
  .re-home-h1 {
    font-size: 40px;
  }

  .re-home-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 900px;
  }

  .re-home-workflow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .re-home-workflow__item:nth-child(2)::after,
  .re-home-workflow__item:nth-child(4)::after {
    display: none;
  }
}

@media (max-width: 991px) {
  .re-home-about__intro {
    padding: 48px 16px 32px;
  }

  .re-home-about__title {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .re-home-about__text {
    font-size: 16px;
  }

  .re-home-benefits {
    padding-bottom: 48px;
  }

  .re-home-order {
    padding: 48px 0 56px;
  }

  .re-home-example {
    padding: 48px 0 56px;
  }
}

@media (max-width: 600px) {
  .re-home-logo {
    width: 140px;
  }

  .re-home-h1 {
    font-size: 32px;
  }

  .re-home-lead {
    font-size: 16px;
  }

  .re-home-header__contacts {
    flex-direction: column;
    gap: 12px;
  }

  .re-home-order-heading {
    font-size: 28px;
  }

  .re-home-benefits {
    grid-template-columns: 1fr;
  }

  .re-home-workflow {
    grid-template-columns: 1fr;
  }

  .re-home-workflow__item::after {
    display: none;
  }

  .re-home-order-form {
    padding: 22px 18px 20px;
  }

  .re-macbook__viewport {
    padding: 8px;
  }

  .re-registry-table {
    font-size: 9px;
  }

  .re-registry-table thead tr:first-child th {
    font-size: 9px;
    padding: 6px 4px;
  }

  .re-registry-table thead tr:nth-child(2) th {
    font-size: 7.5px;
    padding: 4px 3px;
  }

  .re-registry-table th,
  .re-registry-table td {
    padding: 3px 3px;
  }

  .re-home-footer__sep {
    display: none;
  }

  .re-home-footer__line .re-home-footer__key + .re-home-footer__key {
    display: block;
    margin-top: 4px;
  }
}

/* ── Register page ── */
.re-register-page {
  min-height: 100vh;
  padding: calc(var(--re-home-topbar-h, 76px) + 16px) 0 72px;
  box-sizing: border-box;
  background: url(/bg-2-img.png) 100% 100% no-repeat, url(/bg-2.png) 50% repeat;
}

.re-register-page .re-home-wrap--wide {
  max-width: 720px;
}

.re-register-head {
  text-align: center;
  margin-bottom: 24px;
}

.re-register-head .re-home-order-heading {
  margin-bottom: 6px;
}

.re-register-topbar__contacts {
  margin-left: auto;
}

.re-register-note--fields {
  margin-bottom: 16px;
}

.re-home-label__req {
  color: #c0392b;
  font-weight: 800;
}

.re-register-address {
  margin-bottom: 20px;
  padding: 18px 22px;
  border-radius: 18px;
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 10px 32px rgba(41, 38, 84, 0.1);
}

.re-register-address__label {
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7875af;
}

.re-register-address__value {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 800;
  color: var(--re-brand);
}

.re-register-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 16px;
}

.re-home-order-input[readonly] {
  background: #f3f2fa;
  color: #7875af;
  cursor: default;
}

.re-register-note {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.45;
  color: #7875af;
  font-weight: 600;
}

.re-register-note a {
  color: var(--re-brand);
  font-weight: 700;
}

.re-register-note--muted {
  margin-top: -4px;
  margin-bottom: 20px;
  font-size: 13px;
}

.re-register-alert {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #fff5f5;
  border: 1px solid #f0caca;
}

.re-register-alert p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: #c0392b;
  font-weight: 600;
}

.re-register-alert p + p {
  margin-top: 6px;
}

.re-register-checks {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 4px 0 22px;
}

.re-register-check {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  cursor: pointer;
}

.re-register-check__input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--re-brand);
  cursor: pointer;
}

.re-register-check__text {
  font-size: 14px;
  line-height: 1.45;
  color: #6b6799;
  font-weight: 600;
}

.re-register-check__text a {
  color: var(--re-brand);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.re-register-empty {
  max-width: 560px;
  margin: 0 auto;
  padding: 48px 32px;
  text-align: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 24px;
  box-shadow: 0 18px 56px rgba(41, 38, 84, 0.18);
}

.re-register-empty__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 18px;
  background: #f3f2fa;
  color: var(--re-brand);
  display: grid;
  place-items: center;
}

.re-register-empty__icon--success {
  background: #eaf8e6;
  color: #3d9b2a;
}

.re-register-result-hint {
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.re-register-empty .re-home-order-heading {
  margin-bottom: 10px;
}

.re-register-empty .re-home-order-lead {
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .re-home-topbar__actions {
    display: none;
  }

  .re-register-form__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .re-register-page {
    padding-top: calc(var(--re-home-topbar-h, 76px) + 12px);
  }
}
