:root {
  color-scheme: dark;
  --bg: #050b11;
  --bg-2: #07131d;
  --navy: #0c1b2a;
  --panel: rgba(7, 17, 26, 0.88);
  --panel-solid: #091721;
  --line: rgba(222, 164, 35, 0.62);
  --line-soft: rgba(222, 164, 35, 0.22);
  --gold: #e2a51d;
  --gold-light: #ffd66a;
  --silver: #d9dde2;
  --muted: #9ba7b3;
  --red: #b12d35;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding-bottom: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 0, rgba(226, 165, 29, 0.14), transparent 28rem),
    linear-gradient(180deg, #02070c 0%, var(--bg) 38%, #07131d 100%);
  color: var(--silver);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.55;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: linear-gradient(180deg, #000, transparent 90%);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), #fff4c4);
  box-shadow: 0 0 18px rgba(255, 214, 106, 0.55);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  width: min(1240px, calc(100% - 36px));
  border: 1px solid rgba(117, 94, 58, 0.14);
  border-radius: 8px;
  padding: 10px 14px;
  background: rgba(245, 238, 224, 0.92);
  box-shadow: 0 18px 52px rgba(12, 27, 42, 0.13), 0 0 18px rgba(255, 214, 106, 0.08);
  color: var(--navy);
  transform: translateX(-50%);
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(247, 241, 229, 0.98);
  box-shadow: 0 18px 54px rgba(12, 27, 42, 0.16), 0 0 26px rgba(255, 214, 106, 0.12);
}

.brand {
  display: inline-grid;
  grid-template-columns: 44px auto;
  align-items: center;
  gap: 10px;
  font-family: Oswald, Inter, sans-serif;
  text-decoration: none;
  text-transform: uppercase;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand b,
.brand small {
  display: block;
  line-height: 1;
}

.brand b {
  color: var(--navy);
  font-size: 20px;
  font-weight: 700;
}

.brand small {
  margin-top: 5px;
  color: #7a746b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-family: Oswald, Inter, sans-serif;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  text-decoration: none;
  transition: color 0.22s ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.site-nav a:hover {
  color: var(--red);
}

.site-nav a.is-active {
  color: var(--red);
}

.site-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(117, 94, 58, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.72);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
  transition: transform 0.2s ease;
}

.header-phone {
  min-height: 42px;
  border-radius: 8px;
  padding: 10px 14px;
  background: var(--navy);
  color: #fff;
  font-family: Oswald, Inter, sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.site-header.is-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
  padding: 86px 18px 28px;
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media img {
  opacity: 0.62;
}

.hero__overlay {
  background:
    linear-gradient(180deg, rgba(2, 7, 12, 0.92) 0%, rgba(2, 7, 12, 0.76) 38%, rgba(2, 7, 12, 0.96) 100%),
    radial-gradient(circle at 50% 38%, rgba(226, 165, 29, 0.22), transparent 28rem);
}

.poster-frame {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  min-height: calc(100svh - 114px);
  margin: 0 auto;
  border: 2px solid var(--gold);
  padding: 28px 28px 22px;
  background:
    linear-gradient(180deg, rgba(2, 9, 15, 0.76), rgba(3, 12, 18, 0.9)),
    radial-gradient(circle at 50% 36%, rgba(226, 165, 29, 0.16), transparent 26rem);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 214, 106, 0.18);
  isolation: isolate;
}

.poster-frame::before,
.poster-frame::after {
  position: absolute;
  inset: 12px;
  pointer-events: none;
  border: 1px solid rgba(226, 165, 29, 0.18);
  content: "";
}

.poster-frame > * {
  position: relative;
  z-index: 1;
}

.poster-frame::after {
  inset: auto 28px 18px;
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.poster-title {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  gap: 18px;
  align-items: center;
  text-align: center;
}

.poster-title > *,
.poster-benefit > *,
.poster-contact__item > * {
  min-width: 0;
}

.poster-title p,
.poster-title h1,
.poster-unit {
  margin: 0;
  max-width: 100%;
  font-family: Oswald, Inter, sans-serif;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.poster-title p {
  color: var(--silver);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.06;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.55);
}

.poster-title h1 {
  grid-column: 2;
  color: var(--gold);
  font-size: 50px;
  font-weight: 700;
  line-height: 1.08;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.55);
}

.poster-unit {
  grid-column: 2;
  justify-self: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 28px 10px;
  background:
    linear-gradient(180deg, rgba(226, 165, 29, 0.2), rgba(7, 17, 26, 0.66)),
    rgba(3, 10, 16, 0.72);
  color: var(--silver);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  box-shadow: inset 0 0 24px rgba(226, 165, 29, 0.08);
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.55);
}

.star {
  color: var(--gold);
  font-size: 34px;
  line-height: 1;
}

.star::before,
.star::after {
  display: block;
  width: 100%;
  height: 1px;
  margin: 0 0 14px;
  background: var(--line);
  content: "";
}

.poster-grid {
  display: grid;
  grid-template-columns: minmax(230px, 1fr) minmax(300px, 430px) minmax(230px, 1fr);
  gap: 26px;
  align-items: center;
  margin-top: 24px;
}

.poster-benefits {
  display: grid;
  gap: 18px;
}

.poster-benefit {
  position: relative;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 108px;
  border-block: 1px solid var(--line-soft);
  padding: 13px 0;
  overflow: hidden;
  transition: background 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease, transform 0.32s ease;
}

.poster-benefit::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0 34%, rgba(255, 214, 106, 0.24) 48%, transparent 62% 100%);
  content: "";
  opacity: 0;
  transform: translateX(-120%) skewX(-18deg);
}

.poster-benefit::after {
  position: absolute;
  top: -5px;
  right: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
  box-shadow: 0 0 18px rgba(226, 165, 29, 0.8);
}

.poster-benefits--right .poster-benefit::after {
  right: auto;
  left: 0;
}

.poster-benefit:hover {
  border-color: rgba(255, 214, 106, 0.55);
  background: rgba(226, 165, 29, 0.055);
  box-shadow: inset 0 0 34px rgba(226, 165, 29, 0.11), 0 0 28px rgba(226, 165, 29, 0.12);
  transform: translateY(-2px);
}

.poster-benefit:hover::before {
  animation: panel-shine 0.9s ease;
  opacity: 1;
}

.poster-icon,
.poster-contact__icon {
  position: relative;
  display: grid;
  place-items: center;
  place-content: center;
  border: 2px solid var(--gold);
  border-radius: 8px;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 232, 139, 0.75), rgba(226, 165, 29, 0.52) 28%, rgba(5, 11, 17, 0.5) 70%),
    #07131d;
  color: #ffd66a;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 0;
  padding-top: 0.04em;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 0 16px rgba(226, 165, 29, 0.18), 0 0 22px rgba(226, 165, 29, 0.12);
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.poster-icon {
  width: 82px;
  height: 82px;
}

.poster-benefit:hover .poster-icon,
.poster-contact__item:hover .poster-contact__icon {
  border-color: var(--gold-light);
  box-shadow: inset 0 0 22px rgba(255, 214, 106, 0.22), 0 0 30px rgba(226, 165, 29, 0.34);
}

.poster-icon--clock::before {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 38px;
  height: 38px;
  border: 5px solid currentColor;
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.poster-icon--clock::after {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 16px;
  height: 18px;
  border-bottom: 5px solid currentColor;
  border-left: 5px solid currentColor;
  border-radius: 0 0 0 3px;
  content: "";
  transform: translate(-1px, -15px);
  transform-origin: left bottom;
}

.poster-icon--wallet::before {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 38px;
  height: 28px;
  border: 5px solid currentColor;
  border-radius: 6px;
  content: "";
  transform: translate(-50%, -38%);
}

.poster-icon--wallet::after {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 17px;
  height: 13px;
  border: 5px solid currentColor;
  border-right: 0;
  border-radius: 6px 0 0 6px;
  content: "";
  transform: translate(1px, -18%);
}

.poster-icon--chart::before {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 42px;
  height: 34px;
  background:
    linear-gradient(currentColor, currentColor) 3px 22px / 8px 12px no-repeat,
    linear-gradient(currentColor, currentColor) 17px 14px / 8px 20px no-repeat,
    linear-gradient(currentColor, currentColor) 31px 6px / 8px 28px no-repeat;
  content: "";
  transform: translate(-50%, -40%);
}

.poster-icon--chart::after {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 34px;
  height: 22px;
  border-top: 5px solid currentColor;
  border-right: 5px solid currentColor;
  content: "";
  transform: translate(-48%, -70%) rotate(-22deg) skew(-18deg);
}

.poster-icon--medical::before,
.poster-icon--medical::after {
  position: absolute;
  inset: 50% auto auto 50%;
  border-radius: 3px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
}

.poster-icon--medical::before {
  width: 39px;
  height: 13px;
}

.poster-icon--medical::after {
  width: 13px;
  height: 39px;
}

.poster-icon--house::before {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 34px;
  height: 34px;
  border-top: 5px solid currentColor;
  border-left: 5px solid currentColor;
  content: "";
  transform: translate(-50%, -64%) rotate(45deg);
}

.poster-icon--house::after {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 34px;
  height: 26px;
  border: 5px solid currentColor;
  border-top: 0;
  border-radius: 0 0 4px 4px;
  content: "";
  transform: translate(-50%, -14%);
}

.poster-icon--education::before {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 44px;
  height: 28px;
  background: currentColor;
  clip-path: polygon(50% 0, 100% 38%, 50% 76%, 0 38%);
  content: "";
  transform: translate(-50%, -68%);
}

.poster-icon--education::after {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 30px;
  height: 14px;
  border: 5px solid currentColor;
  border-top: 0;
  border-radius: 0 0 18px 18px;
  content: "";
  transform: translate(-50%, 2px);
}

.poster-icon--vacation::before {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
}

.poster-icon--vacation::after {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 46px;
  height: 46px;
  background:
    linear-gradient(currentColor, currentColor) 50% 0 / 5px 12px no-repeat,
    linear-gradient(currentColor, currentColor) 50% 100% / 5px 12px no-repeat,
    linear-gradient(90deg, currentColor, currentColor) 0 50% / 12px 5px no-repeat,
    linear-gradient(90deg, currentColor, currentColor) 100% 50% / 12px 5px no-repeat,
    linear-gradient(45deg, transparent 44%, currentColor 45% 55%, transparent 56%) 50% 50% / 46px 46px no-repeat,
    linear-gradient(-45deg, transparent 44%, currentColor 45% 55%, transparent 56%) 50% 50% / 46px 46px no-repeat;
  content: "";
  transform: translate(-50%, -50%);
}

.poster-icon--pension::before {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 40px;
  height: 46px;
  border: 5px solid currentColor;
  border-radius: 4px 4px 12px 12px;
  content: "";
  transform: translate(-50%, -50%);
}

.poster-icon--pension::after {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 28px;
  height: 28px;
  background:
    linear-gradient(currentColor, currentColor) 50% 0 / 5px 28px no-repeat,
    linear-gradient(90deg, currentColor, currentColor) 0 50% / 28px 5px no-repeat,
    linear-gradient(45deg, transparent 42%, currentColor 43% 57%, transparent 58%) 50% 50% / 28px 28px no-repeat,
    linear-gradient(-45deg, transparent 42%, currentColor 43% 57%, transparent 58%) 50% 50% / 28px 28px no-repeat;
  content: "";
  transform: translate(-50%, -50%);
}

.poster-contact__icon--phone::before {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 38px;
  height: 38px;
  border: 7px solid currentColor;
  border-top-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%) rotate(-32deg);
}

.poster-contact__icon--phone::after {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 42px;
  height: 42px;
  background:
    linear-gradient(currentColor, currentColor) 2px 26px / 14px 9px no-repeat,
    linear-gradient(currentColor, currentColor) 26px 2px / 9px 14px no-repeat;
  content: "";
  transform: translate(-50%, -50%) rotate(-32deg);
}

.poster-contact__icon--pin::before {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 34px;
  height: 34px;
  border: 7px solid currentColor;
  border-radius: 50% 50% 50% 0;
  content: "";
  transform: translate(-50%, -62%) rotate(-45deg);
}

.poster-contact__icon--pin::after {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: currentColor;
  content: "";
  transform: translate(-50%, -72%);
}

.poster-benefit p {
  margin: 0;
  color: var(--silver);
  font-family: Oswald, Inter, sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.12;
  overflow-wrap: anywhere;
  text-transform: uppercase;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.48);
  transition: color 0.28s ease, text-shadow 0.28s ease, transform 0.28s ease;
}

.poster-benefit strong {
  display: block;
  color: var(--gold);
  font-weight: 700;
  transition: color 0.28s ease, text-shadow 0.28s ease;
}

.poster-benefit .text-white {
  color: var(--silver);
}

.poster-benefit:hover p,
.poster-benefit p:hover {
  color: #fff5dc;
  text-shadow: 0 0 14px rgba(255, 214, 106, 0.48), 0 3px 0 rgba(0, 0, 0, 0.55);
  transform: translateX(4px);
}

.poster-benefit:hover strong,
.poster-benefit p:hover strong {
  color: var(--gold-light);
  text-shadow: 0 0 16px rgba(255, 214, 106, 0.62), 0 3px 0 rgba(0, 0, 0, 0.55);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  min-width: 0;
  text-align: center;
}

.insignia {
  position: relative;
  display: grid;
  width: 320px;
  height: 380px;
  place-items: center;
  border-radius: 18px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.insignia__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero__lead {
  position: relative;
  z-index: 2;
  max-width: 380px;
  margin: 38px auto 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 16px;
  background:
    linear-gradient(180deg, rgba(7, 17, 26, 0.9), rgba(3, 10, 16, 0.82)),
    radial-gradient(circle at 50% 0, rgba(226, 165, 29, 0.16), transparent 70%);
  color: rgba(234, 238, 243, 0.9);
  font-size: 15px;
  line-height: 1.5;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32), inset 0 0 24px rgba(226, 165, 29, 0.08);
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.85);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 100%;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 22px;
  font: inherit;
  font-family: Oswald, Inter, sans-serif;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s ease, text-shadow 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  color: #fff8e8;
  text-shadow: 0 0 14px rgba(255, 214, 106, 0.56);
  transform: translateY(-2px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.62;
  text-shadow: none;
  transform: none;
}

.button--primary {
  border: 1px solid #ffc34d;
  background: linear-gradient(180deg, #f0b63b, #9f232a);
  color: #fff;
  box-shadow: 0 16px 34px rgba(226, 165, 29, 0.24);
}

.button--ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.button--light {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffd66a, #bf7d0d);
  color: #07131d;
}

.poster-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 22px;
  overflow: hidden;
  border: 2px solid var(--gold);
  border-radius: 8px;
  background: rgba(5, 11, 17, 0.38);
  box-shadow: inset 0 0 24px rgba(226, 165, 29, 0.06);
}

.poster-contact__item {
  position: relative;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  min-height: 112px;
  padding: 18px 24px;
  text-decoration: none;
  overflow: hidden;
  transition: background 0.28s ease, box-shadow 0.28s ease;
}

.poster-contact__item::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0 34%, rgba(255, 214, 106, 0.2) 48%, transparent 62% 100%);
  content: "";
  opacity: 0;
  transform: translateX(-120%) skewX(-18deg);
}

.poster-contact__item:hover {
  background: rgba(226, 165, 29, 0.06);
  box-shadow: inset 0 0 28px rgba(226, 165, 29, 0.08);
}

.poster-contact__item:hover::before {
  animation: panel-shine 0.9s ease;
  opacity: 1;
}

.poster-contact__item + .poster-contact__item {
  border-left: 1px solid var(--line);
}

.poster-contact__icon {
  width: 72px;
  height: 72px;
  font-size: 36px;
}

.poster-contact b,
.poster-contact strong {
  display: block;
  font-family: Oswald, Inter, sans-serif;
  line-height: 1.12;
  text-transform: uppercase;
  transition: color 0.28s ease, text-shadow 0.28s ease, transform 0.28s ease;
}

.poster-contact b {
  color: var(--gold);
  font-size: 24px;
}

.poster-contact strong {
  color: var(--silver);
  font-size: 34px;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.5);
}

.poster-contact .poster-contact__phones {
  display: grid;
  gap: 4px;
}

.poster-contact .poster-contact__phones a {
  text-decoration: none;
  transition: color 0.28s ease, text-shadow 0.28s ease, transform 0.28s ease;
}

.poster-contact__route {
  display: inline-block;
  margin-top: 8px;
  color: var(--gold);
  font-family: Oswald, Inter, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: color 0.28s ease, text-shadow 0.28s ease, transform 0.28s ease;
}

.poster-contact__item:hover b,
.poster-contact b:hover {
  color: var(--gold-light);
  text-shadow: 0 0 16px rgba(255, 214, 106, 0.6);
  transform: translateX(3px);
}

.poster-contact__item:hover strong,
.poster-contact__item:hover .poster-contact__phones a,
.poster-contact strong:hover,
.poster-contact .poster-contact__phones a:hover {
  color: #fff5dc;
  text-shadow: 0 0 15px rgba(255, 214, 106, 0.52), 0 3px 0 rgba(0, 0, 0, 0.55);
}

.poster-contact__item:hover .poster-contact__phones a,
.poster-contact .poster-contact__phones a:hover {
  transform: translateX(3px);
}

.poster-contact__item--route:hover .poster-contact__route {
  color: var(--gold-light);
  text-shadow: 0 0 14px rgba(255, 214, 106, 0.54);
  transform: translateX(3px);
}

h2,
h3,
p {
  margin-top: 0;
}

h2,
h3,
.eyebrow {
  font-family: Oswald, Inter, sans-serif;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 22px;
  color: var(--silver);
  font-size: 46px;
  line-height: 1.05;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.4);
}

h3 {
  margin-bottom: 12px;
  color: var(--gold-light);
  font-size: 25px;
  line-height: 1.15;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 15px;
  font-weight: 700;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0;
}

.intro,
.apply {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 62px;
  align-items: center;
}

.section__copy,
.apply__copy {
  border-left: 3px solid var(--gold);
  padding-left: 24px;
}

.section__copy p,
.apply__copy p {
  color: var(--muted);
  font-size: 18px;
}

.photo-stack,
.gallery,
.unit-card,
.banner {
  --photo-glow: rgba(226, 165, 29, 0.22);
}

.photo-stack {
  position: relative;
  min-height: 540px;
}

.photo-stack::before {
  position: absolute;
  inset: -1px;
  z-index: 2;
  pointer-events: none;
  border-radius: 8px;
  background: linear-gradient(115deg, transparent 0 36%, rgba(255, 240, 185, 0.22) 48%, transparent 60% 100%);
  content: "";
  opacity: 0;
  transform: translateX(-120%) skewX(-14deg);
}

.photo-stack__main {
  height: 500px;
  border: 2px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.photo-stack__float {
  position: absolute;
  right: -16px;
  bottom: 0;
  width: 52%;
  height: 230px;
  border: 2px solid var(--gold);
  border-radius: 8px;
  outline: 8px solid var(--bg);
  box-shadow: var(--shadow), 0 0 24px rgba(226, 165, 29, 0.2);
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.photo-stack:hover::before {
  animation: luxury-photo-sheen 0.95s ease;
  opacity: 1;
}

.photo-stack:hover .photo-stack__main {
  border-color: rgba(255, 214, 106, 0.62);
  box-shadow: var(--shadow), 0 0 34px var(--photo-glow);
  transform: translateY(-4px) scale(1.015);
}

.photo-stack:hover .photo-stack__float {
  border-color: var(--gold-light);
  box-shadow: var(--shadow), 0 0 34px rgba(255, 214, 106, 0.26);
  transform: translateY(-6px) scale(1.025);
}

.section--muted {
  width: 100%;
  max-width: none;
  padding-right: 42px;
  padding-left: 42px;
  border-block: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(6, 17, 26, 0.94), rgba(8, 22, 33, 0.96)),
    radial-gradient(circle at 50% 0, rgba(226, 165, 29, 0.14), transparent 30rem);
}

.section__heading {
  width: min(880px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.section__heading h2::before,
.section__heading h2::after {
  color: var(--gold);
  content: "★";
  margin: 0 18px;
  font-size: 28px;
}

.unit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.unit-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.unit-card::after,
.benefit::after,
.candidate-card::after,
.process-step::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(120deg, transparent 0 28%, rgba(255, 242, 192, 0.13) 42%, transparent 56% 100%),
    radial-gradient(circle at 50% 0%, rgba(255, 214, 106, 0.12), transparent 58%);
  content: "";
  opacity: 0;
  transform: translateX(-110%);
}

.unit-card:hover {
  border-color: rgba(255, 214, 106, 0.72);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.34), 0 0 28px rgba(226, 165, 29, 0.12);
  transform: translateY(-6px);
}

.unit-card:hover::after,
.benefit:hover::after,
.candidate-card:hover::after,
.process-step:hover::after {
  animation: luxury-card-sheen 1s ease;
  opacity: 1;
}

.unit-card img {
  height: 250px;
  transform-origin: 50% 50%;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.unit-card:hover img {
  opacity: 0.96;
  transform: scale(1.055);
}

.unit-card div {
  padding: 24px;
}

.unit-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.banner {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.banner::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 7, 12, 0.52), rgba(2, 7, 12, 0.9)),
    radial-gradient(circle at 50% 46%, rgba(226, 165, 29, 0.22), transparent 28rem);
  content: "";
}

.banner img {
  position: absolute;
  inset: 0;
  transform: scale(1);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.banner:hover img {
  opacity: 0.92;
  transform: scale(1.025);
}

.banner__content {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 36px));
  border-block: 1px solid var(--line);
  padding: 34px 0;
}

.banner__content h2 {
  margin-bottom: 28px;
}

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

.benefit {
  position: relative;
  overflow: hidden;
  min-height: 194px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--panel);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.26);
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.benefit:hover {
  border-color: rgba(255, 214, 106, 0.72);
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.32), 0 0 34px rgba(226, 165, 29, 0.18);
  transform: translateY(-4px);
}

.benefit span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  font-family: Oswald, Inter, sans-serif;
  font-weight: 700;
  transition: border-color 0.24s ease, color 0.24s ease, text-shadow 0.24s ease;
}

.benefit:hover span {
  border-color: var(--gold-light);
  color: var(--gold-light);
  text-shadow: 0 0 16px rgba(255, 214, 106, 0.5);
}

.benefit p {
  margin-bottom: 0;
  color: var(--silver);
  font-weight: 700;
}

.benefit__three-lines {
  line-height: 1.34;
}

.candidate-info {
  padding-top: 40px;
}

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

.candidate-card,
.process-step {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 214, 106, 0.08), transparent 42%),
    var(--panel);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.candidate-card {
  min-height: 270px;
  padding: 24px;
}

.candidate-card:hover,
.process-step:hover {
  border-color: rgba(255, 214, 106, 0.72);
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.3), 0 0 34px rgba(226, 165, 29, 0.18);
  transform: translateY(-4px);
}

.candidate-card span,
.process-step span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: Oswald, Inter, sans-serif;
  font-weight: 800;
}

.candidate-card p,
.process-step p {
  margin-bottom: 0;
  color: var(--muted);
}

.process {
  padding-top: 36px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.process-step {
  min-height: 210px;
  padding: 22px;
}

.gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1.1fr;
  gap: 14px;
  padding-top: 0;
}

.gallery img {
  height: 420px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform-origin: 50% 50%;
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.gallery img:nth-child(2) {
  margin-top: 54px;
  object-position: 42% 72%;
}

.gallery img:hover {
  z-index: 2;
  border-color: rgba(255, 214, 106, 0.7);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34), 0 0 36px rgba(226, 165, 29, 0.2);
  transform: translateY(-8px) scale(1.025);
}

.apply {
  align-items: start;
}

.apply__copy a {
  font-weight: 800;
  text-decoration-color: var(--gold);
}

.telegram {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold-light);
  transition: color 0.2s ease, text-shadow 0.2s ease, transform 0.2s ease;
}

.telegram:hover {
  color: #fff5dc;
  text-shadow: 0 0 14px rgba(255, 214, 106, 0.5);
  transform: translateY(-2px);
}

.apply-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.apply-form__status {
  border: 1px solid rgba(255, 214, 106, 0.26);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(226, 165, 29, 0.08);
  color: var(--gold-light);
  font-family: Oswald, Inter, sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

label {
  display: grid;
  gap: 8px;
  color: var(--gold);
  font-family: Oswald, Inter, sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

input,
select {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(226, 165, 29, 0.45);
  border-radius: 8px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font: inherit;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

select option {
  color: #07131d;
}

input:focus,
select:focus {
  outline: 3px solid rgba(226, 165, 29, 0.28);
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 20px rgba(226, 165, 29, 0.1);
}

.button:focus-visible,
.site-nav a:focus-visible,
.quick-actions a:focus-visible,
.quick-actions button:focus-visible,
.poster-contact a:focus-visible,
.telegram:focus-visible {
  outline: 3px solid rgba(255, 214, 106, 0.55);
  outline-offset: 4px;
}

.form-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-note a {
  color: var(--gold-light);
  font-weight: 700;
  text-decoration-color: rgba(255, 214, 106, 0.55);
}

.quick-actions-section {
  display: grid;
  gap: 22px;
  padding-block: 58px;
}

.quick-actions-section__heading {
  max-width: 680px;
}

.quick-actions {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 214, 106, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 214, 106, 0.1), transparent 36%),
    rgba(3, 10, 16, 0.82);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28), inset 0 0 30px rgba(226, 165, 29, 0.1), 0 0 24px rgba(226, 165, 29, 0.08);
  overflow: hidden;
}

.quick-actions::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(255, 214, 106, 0.12), transparent);
  transform: translateX(-100%);
  pointer-events: none;
}

.quick-actions:hover::before {
  animation: luxury-wide-sheen 1.05s ease;
}

.quick-actions a,
.quick-actions button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border: 1px solid rgba(226, 165, 29, 0.36);
  border-radius: 8px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--silver);
  font: inherit;
  font-family: Oswald, Inter, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.15;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.quick-actions a:hover,
.quick-actions button:hover {
  border-color: var(--gold-light);
  background: rgba(226, 165, 29, 0.14);
  color: #fff5dc;
  box-shadow: 0 0 24px rgba(226, 165, 29, 0.22), inset 0 0 18px rgba(255, 214, 106, 0.08);
  transform: translateY(-2px);
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 84px;
  z-index: 40;
  max-width: min(340px, calc(100vw - 36px));
  border: 1px solid rgba(255, 214, 106, 0.45);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(3, 10, 16, 0.94);
  color: #fff5dc;
  font-weight: 700;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38), 0 0 24px rgba(226, 165, 29, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.mobile-contact-bar {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 45;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  border: 1px solid rgba(255, 214, 106, 0.38);
  border-radius: 8px;
  padding: 8px;
  background: rgba(3, 10, 16, 0.92);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42), inset 0 0 24px rgba(226, 165, 29, 0.08);
}

.mobile-contact-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(226, 165, 29, 0.42);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--silver);
  font-family: Oswald, Inter, sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 42px;
  border-top: 1px solid var(--line);
  background: #02070c;
  color: rgba(217, 221, 226, 0.78);
  font-size: 14px;
}

.footer a {
  text-decoration: none;
}

.legal-page {
  background:
    radial-gradient(circle at 50% 0, rgba(226, 165, 29, 0.12), transparent 26rem),
    linear-gradient(180deg, #02070c 0%, var(--bg) 100%);
}

.legal {
  width: min(900px, calc(100% - 36px));
  margin: 0 auto;
  padding: 64px 0 84px;
}

.legal__back {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--gold-light);
  font-weight: 800;
}

.legal h1 {
  margin: 0 0 26px;
  color: #fff;
  font-family: Oswald, Inter, sans-serif;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1;
}

.legal h2 {
  margin-top: 34px;
  font-size: clamp(24px, 4vw, 34px);
}

.legal p {
  color: var(--silver);
  font-size: 18px;
}

.legal a {
  color: var(--gold-light);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.2, 0.85, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.unit-card.reveal.is-visible,
.benefit.reveal.is-visible,
.candidate-card.reveal.is-visible,
.process-step.reveal.is-visible,
.gallery img.reveal.is-visible,
.apply-form.reveal.is-visible {
  animation: luxury-panel-in 0.82s cubic-bezier(0.2, 0.85, 0.2, 1) backwards;
}

.unit-grid .unit-card:nth-child(2),
.benefit-list .benefit:nth-child(2),
.candidate-grid .candidate-card:nth-child(2),
.process-steps .process-step:nth-child(2),
.gallery img:nth-child(2) {
  transition-delay: 0.06s;
}

.unit-grid .unit-card:nth-child(3),
.benefit-list .benefit:nth-child(3),
.candidate-grid .candidate-card:nth-child(3),
.process-steps .process-step:nth-child(3),
.gallery img:nth-child(3) {
  transition-delay: 0.12s;
}

.benefit-list .benefit:nth-child(4),
.candidate-grid .candidate-card:nth-child(4),
.process-steps .process-step:nth-child(4) {
  transition-delay: 0.18s;
}

.process-steps .process-step:nth-child(5) {
  transition-delay: 0.24s;
}

.poster-frame.is-visible .poster-title {
  animation: poster-drop 0.72s cubic-bezier(0.2, 0.85, 0.2, 1) backwards;
}

.poster-frame.is-visible .insignia {
  animation: emblem-rise 0.9s cubic-bezier(0.2, 0.85, 0.2, 1) 0.14s backwards;
}

.poster-frame.is-visible .hero__lead,
.poster-frame.is-visible .hero__actions {
  animation: poster-fade-up 0.72s ease 0.22s backwards;
}

.poster-frame.is-visible .poster-benefit {
  animation: poster-fade-side 0.68s cubic-bezier(0.2, 0.85, 0.2, 1) backwards;
}

.poster-frame.is-visible .poster-benefits--left .poster-benefit:nth-child(1) {
  animation-delay: 0.08s;
}

.poster-frame.is-visible .poster-benefits--left .poster-benefit:nth-child(2) {
  animation-delay: 0.18s;
}

.poster-frame.is-visible .poster-benefits--left .poster-benefit:nth-child(3) {
  animation-delay: 0.28s;
}

.poster-frame.is-visible .poster-benefits--left .poster-benefit:nth-child(4) {
  animation-delay: 0.38s;
}

.poster-frame.is-visible .poster-benefits--right .poster-benefit:nth-child(1) {
  animation-name: poster-fade-side-right;
  animation-delay: 0.16s;
}

.poster-frame.is-visible .poster-benefits--right .poster-benefit:nth-child(2) {
  animation-name: poster-fade-side-right;
  animation-delay: 0.26s;
}

.poster-frame.is-visible .poster-benefits--right .poster-benefit:nth-child(3) {
  animation-name: poster-fade-side-right;
  animation-delay: 0.36s;
}

.poster-frame.is-visible .poster-benefits--right .poster-benefit:nth-child(4) {
  animation-name: poster-fade-side-right;
  animation-delay: 0.46s;
}

.poster-frame.is-visible .poster-contact {
  animation: poster-fade-up 0.72s ease 0.48s backwards;
}

.poster-frame.is-visible .poster-contact__item {
  animation: contact-light 0.9s ease backwards;
}

.poster-frame.is-visible .poster-contact__item:nth-child(1) {
  animation-delay: 0.64s;
}

.poster-frame.is-visible .poster-contact__item:nth-child(2) {
  animation-delay: 0.76s;
}

@keyframes slow-zoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

@keyframes poster-drop {
  from {
    opacity: 0;
    transform: translateY(-18px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes emblem-rise {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.94);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes poster-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes poster-fade-side {
  from {
    opacity: 0;
    transform: translateX(-18px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes poster-fade-side-right {
  from {
    opacity: 0;
    transform: translateX(18px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes contact-light {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }

  55% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes panel-shine {
  from {
    transform: translateX(-120%) skewX(-18deg);
  }

  to {
    transform: translateX(120%) skewX(-18deg);
  }
}

@keyframes luxury-card-sheen {
  from {
    transform: translateX(-110%) skewX(-14deg);
  }

  to {
    transform: translateX(110%) skewX(-14deg);
  }
}

@keyframes luxury-photo-sheen {
  from {
    transform: translateX(-120%) skewX(-14deg);
  }

  to {
    transform: translateX(120%) skewX(-14deg);
  }
}

@keyframes luxury-wide-sheen {
  0%,
  18% {
    opacity: 0;
    transform: translateX(-100%);
  }

  34% {
    opacity: 1;
  }

  52%,
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}

@keyframes luxury-panel-in {
  0% {
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.22), 0 0 0 rgba(226, 165, 29, 0);
    transform: translateY(22px) scale(0.985);
  }

  58% {
    box-shadow: 0 22px 62px rgba(0, 0, 0, 0.28), 0 0 30px rgba(226, 165, 29, 0.18);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes gold-dot-pulse {
  0%,
  100% {
    opacity: 0.68;
    transform: scale(0.92);
  }

  50% {
    opacity: 1;
    transform: scale(1.18);
  }
}

@media (max-width: 1080px) {
  .poster-title p {
    font-size: 34px;
  }

  .poster-title h1 {
    font-size: 39px;
  }

  .poster-unit {
    font-size: 25px;
  }

  .poster-grid {
    grid-template-columns: 1fr;
  }

  .poster-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    order: 2;
  }

  .poster-benefit {
    min-height: 94px;
  }

  .poster-benefit p {
    font-size: 22px;
  }

  .hero__content {
    order: 1;
  }

  .poster-benefits--right {
    order: 3;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto;
    padding-inline: 18px;
  }

  .header-phone {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    overflow: hidden;
  border: 1px solid rgba(117, 94, 58, 0.14);
    border-radius: 8px;
    background: rgba(247, 241, 229, 0.98);
    box-shadow: 0 18px 46px rgba(12, 27, 42, 0.15);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-header.is-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 17px 18px;
    border-bottom: 1px solid rgba(12, 27, 42, 0.1);
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    padding-top: 82px;
  }

  .poster-frame {
    padding: 22px 18px;
  }

  .poster-title {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 8px;
    overflow: hidden;
  }

  .poster-title h1 {
    grid-column: auto;
  }

  .poster-unit {
    grid-column: auto;
  }

  .star {
    display: none;
  }

  .poster-contact,
  .intro,
  .apply,
  .unit-grid,
  .benefit-list,
  .candidate-grid,
  .process-steps,
  .gallery {
    grid-template-columns: 1fr;
  }

  .poster-contact__item + .poster-contact__item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .unit-card img {
    height: 380px;
  }

  .section {
    padding: 72px 0;
  }

  .section--muted {
    padding-right: 18px;
    padding-left: 18px;
  }

  .photo-stack {
    min-height: auto;
  }

  .photo-stack__main {
    height: 420px;
  }

  .photo-stack__float {
    right: 14px;
    bottom: -34px;
    width: 58%;
    height: 190px;
  }

  .gallery img,
  .gallery img:nth-child(2) {
    height: 320px;
    margin-top: 0;
  }

  .footer {
    display: grid;
    padding-inline: 18px;
  }

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

  .quick-actions a,
  .quick-actions button {
    justify-content: center;
    min-width: 0;
    padding: 0 12px;
    font-size: 14px;
    text-align: center;
  }

  .toast {
    right: 12px;
    bottom: 78px;
    left: 12px;
    max-width: none;
  }
}

@media (max-width: 560px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    padding: 8px 10px;
  }

  .brand {
    grid-template-columns: 38px auto;
  }

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

  .brand small {
    display: none;
  }

  .brand b {
    font-size: 18px;
  }

  .hero {
    padding: 78px 10px 18px;
  }

  .poster-frame {
    min-height: auto;
    width: 100%;
    max-width: calc(100vw - 20px);
    padding: 20px 12px;
    overflow: hidden;
  }

  .poster-frame::before {
    inset: 8px;
  }

  .poster-title p {
    display: block;
    inline-size: 100%;
    max-width: calc(100vw - 54px);
    font-size: 22px;
    line-height: 1.08;
    white-space: normal;
    word-break: break-word;
  }

  .poster-title h1 {
    display: block;
    inline-size: 100%;
    max-width: calc(100vw - 54px);
    font-size: 25px;
    line-height: 1.12;
    white-space: normal;
    word-break: break-word;
  }

  .poster-unit {
    width: fit-content;
    max-width: 100%;
    padding: 8px 16px 10px;
    font-size: 21px;
  }

  .poster-grid {
    gap: 16px;
    margin-top: 14px;
  }

  .poster-benefits {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .poster-benefit {
    grid-template-columns: 64px minmax(0, 1fr);
    min-height: 78px;
    gap: 12px;
    padding: 8px 0;
  }

  .poster-icon {
    width: 58px;
    height: 58px;
    font-size: 30px;
  }

  .poster-benefit p {
    font-size: 18px;
  }

  .insignia {
    width: 220px;
    height: 285px;
  }

  .hero__lead {
    max-width: calc(100vw - 82px);
    margin-top: 30px;
    padding: 12px 11px;
    font-size: 14px;
    overflow-wrap: anywhere;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .hero__actions {
    display: grid;
  }

  .poster-contact__item {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
    min-height: 88px;
    padding: 14px;
  }

  .poster-contact__icon {
    width: 56px;
    height: 56px;
    font-size: 28px;
  }

  .poster-contact b {
    font-size: 18px;
  }

  .poster-contact strong {
    font-size: 24px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 23px;
  }

  .section {
    width: calc(100% - 28px);
  }

  .section__copy,
  .apply__copy {
    padding-left: 16px;
  }

  .section__heading h2::before,
  .section__heading h2::after {
    display: none;
  }

  .photo-stack__main {
    height: 360px;
  }

  .photo-stack__float {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 32px);
    margin: -64px auto 0;
  }

  .unit-card img {
    height: 300px;
  }

  .banner {
    min-height: 440px;
  }

  .benefit {
    min-height: 150px;
  }

  .candidate-card,
  .process-step {
    min-height: auto;
    padding: 20px;
  }

  .apply-form {
    padding: 20px;
  }

  .quick-actions {
    gap: 6px;
    padding: 6px;
  }

  .quick-actions a,
  .quick-actions button {
    min-height: 46px;
    font-size: 12px;
  }

  body {
    padding-bottom: 76px;
  }

  .mobile-contact-bar {
    display: grid;
    gap: 6px;
    right: auto;
    left: 8px;
    width: calc(100vw - 16px);
    max-width: calc(100vw - 16px);
    padding: 6px;
    overflow: hidden;
  }

  .mobile-contact-bar a {
    min-width: 0;
    min-height: 42px;
    font-size: 12px;
  }

  .toast {
    bottom: 84px;
  }
}

@media (hover: none) {
  :root {
    --shadow: 0 16px 44px rgba(0, 0, 0, 0.34);
  }

  body::before {
    display: none;
  }

  .site-header,
  .poster-frame,
  .poster-icon,
  .poster-contact__icon,
  .unit-card,
  .benefit,
  .candidate-card,
  .process-step,
  .apply-form,
  .quick-actions,
  .mobile-contact-bar {
    box-shadow: var(--shadow);
  }

  .poster-benefit:hover,
  .unit-card:hover,
  .benefit:hover,
  .candidate-card:hover,
  .process-step:hover,
  .quick-actions a:hover,
  .quick-actions button:hover {
    transform: none;
  }

  .photo-stack:hover .photo-stack__main,
  .photo-stack:hover .photo-stack__float,
  .gallery img:hover {
    transform: none;
  }

  .banner:hover img,
  .unit-card:hover img {
    transform: scale(1.015);
  }

  .photo-stack:hover::before,
  .gallery img:hover::after {
    animation-duration: 0.01ms;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
