:root {
  --black: #111111;
  --grey: #6b6b6b;
  --grey-btn: #ececec;
  --grey-btn-hover: #dedede;
  --line: #e6e6e6;
  --white: #ffffff;
  --yellow: #f5c400;
  --yellow-deep: #e0b000;
  --telegram: #2aabee;
  --error: #d64545;
  --ok: #1f8a4c;
  --max: 1180px;
  --section: 88px;
  --font-display: "Alumni Sans", sans-serif;
  --font-body: "Montserrat", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--black);
  background: var(--white);
  min-height: 100vh;
  position: relative;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}

.bg-chart {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.62) 100%),
    url("../assets/bg-chart-clean.jpg") center / cover no-repeat;
}

.site {
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
  display: block;
}

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

button,
input,
textarea {
  font-family: inherit;
}

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

.mark {
  background-image: linear-gradient(transparent 58%, var(--yellow) 58%);
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--line);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-sub {
  font-size: 11px;
  color: var(--grey);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  font-weight: 600;
  font-size: 14px;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang {
  display: flex;
  gap: 4px;
  background: var(--grey-btn);
  border-radius: 999px;
  padding: 4px;
}

.lang button {
  border: 0;
  background: transparent;
  color: var(--grey);
  font-weight: 600;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.lang button.is-active {
  background: var(--white);
  color: var(--black);
}

.lang button:active {
  transform: scale(0.94);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  border: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0) scale(0.97);
}

.btn-grey {
  background: var(--grey-btn);
  color: var(--black);
}

.btn-grey:hover {
  background: var(--grey-btn-hover);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--black);
}

.btn-yellow:hover {
  background: var(--yellow-deep);
}

.btn-telegram {
  background: #e8f6fd;
  color: #0b6b99;
}

.btn-telegram:hover {
  background: #d3eefb;
}

.btn-outline {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--line);
}

.block-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.hero {
  padding: 64px 0 80px;
  background: transparent;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  background: var(--grey-btn);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero h1,
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.92;
  margin-bottom: 18px;
}

.lede {
  font-size: 16px;
  color: var(--grey);
  max-width: 560px;
  margin-bottom: 28px;
}

.hero-actions,
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-bottom: 28px;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
}

.stat span {
  font-size: 13px;
  color: var(--grey);
}

.media-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 18px;
}

.media-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 18px;
  background: #fafafa;
}

.media-caption {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.section {
  padding: var(--section) 0;
  border-top: 1px solid rgba(230, 230, 230, 0.7);
  background: transparent;
}

.section-head {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-head p {
  color: var(--grey);
  margin-top: 10px;
}

.section-title {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 0.95;
}

.facts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

.fact {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 22px 20px 22px 0;
  border-bottom: 1px solid var(--line);
}

.fact:nth-child(even) {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.fact svg {
  width: 36px;
  height: 36px;
}

.fact h3 {
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.fact p {
  font-size: 14px;
  color: var(--grey);
}

.section-head-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.block-cta-center {
  justify-content: center;
}

.section-learn {
  padding-top: 0;
}

.rooms-band {
  background: transparent;
  color: var(--black);
  padding: 24px 0 48px;
  margin-bottom: 24px;
}

.rooms-head .section-title {
  color: var(--black);
}

.rooms-head p {
  color: var(--grey);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

@keyframes floating {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.float-anim {
  animation: floating 4s ease-in-out infinite;
}

.rooms {
  position: relative;
  color: var(--black);
  width: min(1400px, calc(100% - 32px));
  margin: 0 auto;
  font-size: 16px;
}

.rooms-img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}

.rooms-img picture,
.rooms-img img {
  width: 100%;
  height: auto;
  display: block;
}

.rooms-list {
  position: relative;
  z-index: 1;
}

.rooms-item__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  gap: 1.5em;
  color: var(--black);
}

.rooms-item__content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 4em;
  line-height: 1;
  text-transform: uppercase;
  margin: 0;
  color: #111;
  text-shadow:
    0 0 12px rgba(255, 255, 255, 0.95),
    0 1px 0 rgba(255, 255, 255, 0.9),
    0 0 2px #fff;
}

.rooms-item__content p {
  font-size: 1.25em;
  line-height: 1.35;
  margin: 0;
  color: #222;
  max-width: 28em;
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.98),
    0 0 3px #fff,
    1px 0 0 rgba(255, 255, 255, 0.85),
    -1px 0 0 rgba(255, 255, 255, 0.85),
    0 1px 0 rgba(255, 255, 255, 0.85);
}

.rooms-item__content .info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75em;
}

.rooms-item__content .info > div {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}

.rooms-item__content .info span:last-child {
  font-size: 0.875em;
  text-transform: uppercase;
  font-weight: 700;
  color: #111;
  text-shadow:
    0 0 8px #fff,
    0 0 2px #fff;
}

.info-ico {
  color: var(--yellow-deep);
  font-size: 1.25em;
  line-height: 1;
  filter: drop-shadow(0 0 4px #fff);
}

.rooms-mobile-img {
  display: none;
  width: 100%;
  margin-bottom: 0.75rem;
}

.rooms-mobile-img img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 992px) {
  .rooms-item:not(:first-child) {
    margin-top: -12.5em;
  }

  .rooms-item:nth-child(2) {
    margin-top: -15.5em;
  }

  .rooms-item:nth-child(3) {
    margin-top: -13.5em;
  }

  .rooms-item__content {
    width: 37.5em;
    min-height: 51.5em;
    padding: 2rem 1.75rem;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.82) 18%,
      rgba(255, 255, 255, 0.9) 55%,
      rgba(255, 255, 255, 0.72) 100%
    );
    border-radius: 4px;
  }

  .rooms-item:nth-child(odd) .rooms-item__content {
    margin-left: auto;
    padding-left: 3.125em;
    background: linear-gradient(
      270deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.82) 18%,
      rgba(255, 255, 255, 0.9) 55%,
      rgba(255, 255, 255, 0.72) 100%
    );
  }

  .rooms-item:nth-child(even) .rooms-item__content {
    padding-right: 3.125em;
  }
}

@media (max-width: 991px) {
  .rooms-band {
    padding: 8px 0 24px;
  }

  .rooms-img {
    display: none;
  }

  .rooms-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .rooms-item__content {
    gap: 0.65rem;
    padding: 1rem 1rem 1.15rem;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--line);
    border-radius: 16px;
  }

  .rooms-item__content h2 {
    font-size: 1.75rem;
    text-shadow: none;
  }

  .rooms-item__content p {
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: none;
    text-shadow: none;
  }

  .rooms-item__content .info span:last-child {
    font-size: 0.75rem;
    text-shadow: none;
  }

  .rooms-mobile-img {
    display: block;
    margin: -1rem -1rem 0.75rem;
    width: calc(100% + 2rem);
    max-width: none;
  }

  .rooms-mobile-img img {
    border-radius: 16px 16px 0 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .float-anim {
    animation: none;
  }
}

.howto-title {
  font-family: var(--font-display);
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 40px 0 18px;
}

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

.howto article {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 16px 20px;
  background: rgba(255, 255, 255, 0.86);
}

.howto span {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  margin-bottom: 8px;
}

.howto h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.howto p {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.5;
}

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

.day {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 12px 16px;
  min-height: 168px;
  background: var(--white);
}

.day.is-live {
  background: #fffbeb;
  border-color: var(--yellow);
}

.day.is-off {
  opacity: 1;
  background: #f7f7f7;
  border-style: dashed;
  color: var(--grey);
}

.day.is-off .time {
  font-size: 22px;
  color: var(--grey);
}

.day .dow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.day .time {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  margin-bottom: 8px;
}

.day p {
  font-size: 13px;
  color: var(--grey);
}

.finance {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 720px;
}

.finance-copy {
  color: var(--grey);
  font-size: 15px;
  line-height: 1.6;
}

.finance-note {
  font-size: 13px;
  color: var(--grey);
}

.criteria {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  text-align: left;
}

.criteria-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.criteria-acc {
  display: grid;
  gap: 10px;
}

.crit-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.crit-item.is-open {
  border-color: #111;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.crit-btn {
  width: 100%;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 10px;
  text-align: left;
  padding: 16px 16px;
  min-height: 64px;
  background: var(--grey-btn);
  border: 0;
  border-radius: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--black);
  transition: background 0.2s ease, transform 0.15s ease;
}

.crit-btn:hover {
  background: var(--grey-btn-hover);
}

.crit-btn:active {
  transform: scale(0.99);
}

.crit-item.is-open .crit-btn {
  background: #111;
  color: #fff;
}

.crit-num {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0;
}

.crit-label {
  line-height: 1.25;
}

.crit-label-blur {
  filter: blur(4px);
  user-select: none;
  opacity: 0.7;
}

.crit-plus {
  width: 22px;
  height: 22px;
  position: relative;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  opacity: 0.7;
}

.crit-plus::before,
.crit-plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.crit-plus::before {
  width: 10px;
  height: 1.5px;
}

.crit-plus::after {
  width: 1.5px;
  height: 10px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.crit-item.is-open .crit-plus::after {
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0;
}

.crit-lock {
  width: 22px;
  height: 22px;
  border: 1.5px solid currentColor;
  border-radius: 4px;
  position: relative;
  opacity: 0.75;
}

.crit-lock::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -6px;
  width: 10px;
  height: 8px;
  border: 1.5px solid currentColor;
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
  transform: translateX(-50%);
}

.crit-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.crit-item.is-open .crit-panel {
  grid-template-rows: 1fr;
}

.crit-panel-inner {
  overflow: hidden;
}

.crit-panel p {
  margin: 0;
  padding: 14px 16px 16px;
  color: var(--grey);
  font-size: 14px;
  line-height: 1.55;
  text-transform: none;
  font-weight: 500;
  letter-spacing: 0;
}

.crit-buy {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 16px;
}

.crit-item.is-locked .crit-btn {
  background: #f3f3f3;
}

.crit-item.is-locked.is-open .crit-btn {
  background: #111;
  color: #fff;
}

.discord-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
}

.discord-box ul {
  list-style: none;
}

.discord-box li {
  padding: 10px 0 10px 22px;
  position: relative;
  border-bottom: 1px solid var(--line);
}

.discord-box li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--yellow);
  position: absolute;
  left: 0;
  top: 18px;
}

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

.plan {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.plan-hit {
  background: linear-gradient(165deg, #ffe566 0%, #f5c400 48%, #e8b400 100%);
  border: 2px solid #111;
  box-shadow: 0 18px 40px rgba(245, 196, 0, 0.35);
  transform: scale(1.03);
  z-index: 1;
}

.plan-hit .plan-term,
.plan-hit .price-note {
  color: #3a3200;
}

.plan-hit .badge {
  background: #111;
  color: var(--yellow);
  font-size: 12px;
  padding: 6px 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.plan-hit .price {
  font-size: 58px;
}

.plan-hit li::before {
  background: #111;
}

.plan-hit .btn-yellow {
  background: #111;
  color: var(--yellow);
}

.plan-hit .btn-yellow:hover {
  background: #222;
  color: #ffe566;
}

.plan-hit .btn-outline {
  border-color: #111;
  background: rgba(255, 255, 255, 0.45);
}

.plan-hit .btn-telegram {
  background: #111;
  color: #7dd3fc;
}

.plan-hit .btn-telegram:hover {
  background: #222;
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--yellow);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 999px;
}

.plan h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.plan-term,
.price-note {
  color: var(--grey);
  font-size: 13px;
}

.price {
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1;
  margin: 12px 0 6px;
}

.old-price {
  text-decoration: line-through;
  margin-right: 8px;
}

.plan ul {
  list-style: none;
  margin: 18px 0 24px;
  flex: 1;
}

.plan li {
  padding-left: 18px;
  position: relative;
  margin-bottom: 8px;
  font-size: 14px;
}

.plan li::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--yellow);
  position: absolute;
  left: 0;
  top: 8px;
}

.plan-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.team-featured,
.team-roster,
.reviews-grid {
  display: grid;
  gap: 16px;
}

.team-featured {
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 16px;
}

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

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

.person,
.review-photo {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px;
  background: var(--white);
}

.person--compact {
  padding: 18px 16px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(244, 246, 248, 0.96)),
    var(--white);
}

.avatar {
  height: 200px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--grey-btn);
  font-family: var(--font-display);
  font-size: 48px;
  margin-bottom: 14px;
}

.avatar--photo {
  position: relative;
  overflow: hidden;
  padding: 0;
  background:
    linear-gradient(145deg, #eceff3 0%, #d7dde5 100%);
}

.avatar--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  position: relative;
  z-index: 1;
}

.person--photo .avatar {
  height: auto;
  aspect-ratio: 3 / 4;
}

.avatar-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--ink);
  z-index: 0;
}

.avatar--photo:not(.is-fallback) .avatar-fallback {
  opacity: 0;
}

.role {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--grey);
}

.person h3 {
  font-size: 20px;
  margin: 4px 0 8px;
}

.person p,
.review-photo p {
  color: var(--grey);
  font-size: 14px;
}

.review-top {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grey-btn);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.dot-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--line);
}

.review-top strong {
  display: block;
  font-size: 15px;
}

.review-top span {
  display: block;
  font-size: 12px;
  color: var(--grey);
}

.review-tg {
  color: #2aabee;
  text-decoration: none;
  font-weight: 600;
}

.review-tg:hover {
  text-decoration: underline;
}

.swipe-hint {
  display: none;
}

.stars {
  color: var(--yellow-deep);
  margin-bottom: 6px;
}

.reviews-empty {
  display: none;
  color: var(--grey);
  margin: 8px 0 20px;
}

.reviews-empty.is-show {
  display: block;
}

.person--compact .role {
  line-height: 1.35;
  word-break: break-word;
}

.person--compact h3 {
  margin-top: 6px;
}

.person--compact p:not(.role) {
  line-height: 1.45;
}

.review-compose {
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px 20px;
  background: var(--white);
  max-width: 720px;
  width: 100%;
  box-sizing: border-box;
}

.review-compose h3 {
  font-family: var(--font-display);
  font-size: 32px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 8px;
}

.review-compose-lead {
  color: var(--grey);
  font-size: 14px;
  margin-bottom: 18px;
}

.review-form {
  display: grid;
  gap: 14px;
}

.review-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  resize: vertical;
  min-height: 110px;
  background: var(--white);
}

.review-form textarea:focus {
  outline: 2px solid var(--yellow);
  border-color: transparent;
}

.review-stars {
  border: 0;
  padding: 0;
  margin: 0;
}

.review-stars legend {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}

.review-stars-row {
  display: flex;
  gap: 6px;
}

.review-stars-row button {
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  color: #d0d0d0;
  cursor: pointer;
  padding: 0;
}

.review-stars-row button.is-on {
  color: var(--yellow-deep);
}

.review-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 640px) {
  .review-form-actions {
    flex-direction: column;
  }

  .review-form-actions .btn {
    width: 100%;
  }
}

.form-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  max-width: 720px;
}

.form-grid {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
}

input {
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  font-size: 15px;
  background: var(--white);
}

input:focus {
  outline: 2px solid var(--yellow);
  border-color: transparent;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.form-ok,
.form-err {
  display: none;
  font-size: 14px;
  margin-top: 10px;
}

.form-ok.is-show {
  display: block;
  color: var(--ok);
}

.form-err.is-show {
  display: block;
  color: var(--error);
}

.footer {
  padding: 48px 0 36px;
  border-top: 1px solid rgba(230, 230, 230, 0.7);
  font-size: 14px;
  color: var(--grey);
  background: transparent;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

.footer h3 {
  color: var(--black);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer a:hover {
  color: var(--black);
}

.legal-links {
  display: flex;
  gap: 12px 16px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 90;
}

.modal-overlay.is-open {
  display: flex;
}

.modal {
  width: min(920px, 100%);
  max-height: min(90vh, 920px);
  overflow: auto;
  background: var(--white);
  border-radius: 24px;
  padding: 32px 28px;
  position: relative;
  animation: pop 0.28s ease;
}

.modal-block {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.modal-block h3 {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.modal-block > p {
  color: var(--grey);
  font-size: 14px;
  margin-bottom: 12px;
}

.modal-list {
  list-style: none;
  display: grid;
  gap: 8px;
}

.modal-list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: var(--grey);
  line-height: 1.45;
}

.modal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
}

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

.modal-prices div {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 12px;
  display: grid;
  gap: 4px;
  background: #fafafa;
}

.modal-prices strong {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.modal-prices span {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
}

.modal-prices em {
  font-style: normal;
  font-size: 12px;
  color: var(--grey);
}

.rooms-cta {
  margin: 8px 0 28px;
}

@keyframes pop {
  from {
    transform: translateY(16px) scale(0.98);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}

.modal h2 {
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-right: 40px;
}

.modal-lead {
  color: var(--grey);
  margin-bottom: 22px;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.modal-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(180deg, var(--yellow), transparent 42%) border-box;
}

.modal-card span {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 6px;
}

.modal-card h3 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}

.modal-card p {
  font-size: 13px;
  color: var(--grey);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--grey-btn);
  font-size: 20px;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.modal-close:active {
  transform: scale(0.92);
  background: var(--yellow);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--grey-btn);
  cursor: pointer;
}

.calc {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 16px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

#calculator {
  scroll-margin-top: 88px;
  overflow-x: hidden;
}

#calculator .container {
  width: min(var(--max), calc(100% - 48px));
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

.calc-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  min-width: 0;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.calc-card-wide {
  grid-column: 1 / -1;
}

.calc-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.calc-card-head h3 {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.calc-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.calc-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  min-width: 0;
}

.calc-fields label,
.calc-fields input,
.calc-fields input[type="number"],
.calc-fields input[type="range"],
.calc-range {
  min-width: 0;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

.calc-slider {
  margin-top: 18px;
}

.calc-slider-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}

.calc-slider-head strong {
  font-size: 18px;
  letter-spacing: 0.02em;
}

.calc-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  max-width: 100%;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: linear-gradient(
    to right,
    var(--yellow) 0 var(--pct, 50%),
    var(--line) var(--pct, 50%) 100%
  );
}

.calc-range:focus {
  outline: none;
}

.calc-range::-moz-range-track {
  height: 6px;
  border: 0;
  border-radius: 99px;
  background: transparent;
}

.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--black);
  border: 3px solid var(--yellow);
  cursor: pointer;
}

.calc-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--black);
  border: 3px solid var(--yellow);
  cursor: pointer;
}

.calc-ends {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 11px;
  color: var(--grey);
  font-weight: 600;
}

.calc-table-wrap {
  overflow-x: auto;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
}

.calc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  table-layout: fixed;
}

.calc-table th {
  text-align: left;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--grey);
  padding: 0 8px 10px 0;
  border-bottom: 1px solid var(--line);
}

.calc-table td {
  padding: 12px 8px 12px 0;
  border-bottom: 1px solid var(--line);
  white-space: normal;
  word-break: break-word;
}

.calc-table tr:last-child td {
  border-bottom: 0;
}

.calc-n {
  font-weight: 700;
  color: var(--ok);
}

.calc-plus {
  font-weight: 700;
  color: var(--ok);
}

.calc-muted {
  color: var(--grey);
  font-size: 11px;
}

.calc-table tr.is-over td {
  color: var(--error);
}

.calc-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.calc-stat {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  background: #fafafa;
}

.calc-stat span,
.calc-stat em {
  display: block;
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--grey);
}

.calc-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1;
  margin: 8px 0 4px;
}

.calc-stat.is-warn strong {
  color: var(--yellow-deep);
}

.calc-stat.is-bad strong {
  color: var(--error);
}

.calc-stat-ok strong {
  color: var(--ok);
}

.calc-profit {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #fff8d6;
  font-size: 14px;
  font-weight: 600;
}

.calc-profit b {
  color: var(--ok);
}

.calc-income {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  align-items: start;
  min-width: 0;
  max-width: 100%;
}

.calc-income-list {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 4px 18px;
  background: #fafafa;
}

.calc-income-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.calc-income-list div:last-child {
  border-bottom: 0;
}

.calc-income-list dt {
  font-size: 13px;
  color: var(--grey);
}

.calc-income-list dd {
  font-weight: 700;
}

.calc-income-list .is-total dd {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  color: var(--ok);
}

.calc-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--grey);
}

.legal-page {
  padding: 48px 0 88px;
  max-width: 760px;
}

.legal-back {
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 600;
}

.legal-back a:hover {
  color: var(--telegram);
}

.legal-nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 -8px 28px;
  padding: 2px 8px 10px;
}

.legal-nav::-webkit-scrollbar {
  display: none;
}

.legal-nav a {
  flex: 0 0 auto;
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.legal-nav a:hover {
  border-color: #cfcfcf;
  background: #fff;
}

.legal-nav a.is-active {
  background: var(--black);
  border-color: var(--black);
  color: #fff;
}

.legal-header {
  margin-bottom: 22px;
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 8vw, 52px);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.legal-meta {
  font-size: 13px;
  color: var(--grey);
  margin-bottom: 14px;
}

.legal-lead {
  font-size: 16px;
  color: #333;
}

.legal-lead a,
.legal-body a,
.legal-callout a,
.legal-toc a,
.legal-next a,
.legal-related a {
  color: #0b6e99;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-callout {
  margin: 0 0 24px;
  padding: 14px 16px;
  border-left: 4px solid var(--yellow);
  background: rgba(245, 196, 0, 0.12);
  font-size: 14px;
  line-height: 1.55;
}

.legal-callout--warn {
  border-left-color: var(--error);
  background: rgba(214, 69, 69, 0.08);
}

.legal-toc {
  margin: 0 0 28px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
}

.legal-toc h2 {
  font-family: var(--font-display);
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.legal-toc ol {
  margin: 0;
  padding-left: 1.2em;
  display: grid;
  gap: 6px;
}

.legal-toc a {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.legal-toc a:hover {
  text-decoration: underline;
}

.legal-body section {
  margin-bottom: 28px;
  scroll-margin-top: 20px;
}

.legal-body h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 5vw, 30px);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 10px;
}

.legal-body p,
.legal-body li {
  font-size: 15px;
  color: #2a2a2a;
}

.legal-body p + p,
.legal-body p + ul,
.legal-body p + ol,
.legal-body ul + p,
.legal-body ol + p {
  margin-top: 10px;
}

.legal-body ul,
.legal-body ol {
  margin: 8px 0 0;
  padding-left: 1.25em;
  display: grid;
  gap: 6px;
}

.legal-contacts {
  list-style: none;
  padding-left: 0 !important;
}

.legal-related {
  margin-top: 14px;
  font-size: 14px;
}

.legal-next {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 980px) {
  .container {
    width: min(var(--max), calc(100% - 32px));
  }

  #calculator .container {
    width: min(var(--max), calc(100% - 32px));
  }

  .section {
    padding: 56px 0;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .section-title {
    font-size: clamp(32px, 8vw, 46px);
  }

  .hero {
    padding: 36px 0 48px;
  }

  .hero-grid,
  .facts-grid,
  .howto,
  .discord-box,
  .modal-grid,
  .modal-prices,
  .footer-grid,
  .calc,
  .calc-income {
    grid-template-columns: 1fr;
  }

  .week.h-scroll,
  .pricing-grid.h-scroll,
  .team-roster.h-scroll,
  .reviews-grid.h-scroll {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-inline: -16px;
    padding: 4px 16px 12px;
  }

  .week.h-scroll::-webkit-scrollbar,
  .pricing-grid.h-scroll::-webkit-scrollbar,
  .team-roster.h-scroll::-webkit-scrollbar,
  .reviews-grid.h-scroll::-webkit-scrollbar {
    display: none;
  }

  .team-featured {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .team-featured .person {
    min-width: 0;
    padding: 12px;
  }

  .person--photo .avatar {
    height: auto;
    aspect-ratio: 3 / 4;
  }

  .team-featured .role {
    font-size: 10px;
    letter-spacing: 0.03em;
  }

  .team-featured h3 {
    font-size: 16px;
  }

  .team-featured .person p:not(.role) {
    font-size: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .team-roster.h-scroll > .person {
    flex: 0 0 min(72vw, 260px);
    scroll-snap-align: start;
  }

  .team-roster.h-scroll > .person p:not(.role) {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .reviews-grid.h-scroll > .review-photo {
    flex: 0 0 min(82vw, 300px);
    scroll-snap-align: start;
  }

  .swipe-hint {
    display: block;
    margin: 0 0 8px;
    font-size: 12px;
    color: var(--grey);
    text-align: center;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero h1 {
    font-size: clamp(34px, 9vw, 48px);
  }

  .hero-actions,
  .block-cta,
  .plan-actions,
  .criteria-actions,
  .crit-buy,
  .form-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .block-cta .btn,
  .plan-actions .btn,
  .crit-buy .btn,
  .form-actions .btn {
    width: 100%;
  }

  .hero-stats {
    gap: 20px;
  }

  .media-card {
    max-width: 320px;
    margin: 0 auto;
    border-radius: 20px;
    padding: 14px;
  }

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

  .fact:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

  .header-inner {
    gap: 10px;
    min-height: 64px;
  }

  .brand-name {
    font-size: 15px;
    max-width: 118px;
    line-height: 1.1;
  }

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

  .header-actions .btn:not(.btn-telegram) {
    display: none;
  }

  .header-actions .btn-telegram {
    display: inline-flex;
    padding: 10px 12px;
    min-height: 40px;
    font-size: 12px;
  }

  .lang {
    padding: 3px;
  }

  .lang button {
    min-width: 36px;
    min-height: 32px;
    padding: 0 8px;
    font-size: 12px;
  }

  .nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    flex-shrink: 0;
  }

  .nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 68px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px;
    gap: 12px;
    z-index: 50;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  }

  .crit-btn {
    grid-template-columns: 40px 1fr auto;
    min-height: 58px;
    padding: 14px 12px;
    font-size: 12px;
  }

  .crit-num {
    font-size: 24px;
  }

  .modal {
    width: 100%;
    max-height: min(92vh, 100%);
    border-radius: 18px;
    padding: 22px 16px 18px;
  }

  .modal h2 {
    font-size: 32px;
    padding-right: 36px;
  }

  .modal-block h3 {
    font-size: 24px;
  }

  .modal-overlay {
    padding: 12px;
    align-items: flex-end;
  }

  .form-card {
    padding: 22px 16px;
    border-radius: 18px;
  }

.calc-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}

.calc-card-head h3 {
  font-size: 26px;
  min-width: 0;
  flex: 1 1 auto;
}

.calc-card {
  padding: 16px;
  width: 100%;
  max-width: 100%;
}

.calc-card-head {
  flex-wrap: wrap;
  gap: 8px;
}

.calc-chip {
  max-width: 100%;
  white-space: normal;
  text-align: left;
  line-height: 1.3;
  flex: 0 1 auto;
}

.calc-table {
  min-width: 0 !important;
  width: 100%;
  font-size: 12px;
}

.calc-table th,
.calc-table td {
  padding: 10px 6px 10px 0;
}

.calc-table th:nth-child(1),
.calc-table td:nth-child(1) {
  width: 12%;
}

.calc-table th:nth-child(2),
.calc-table td:nth-child(2) {
  width: 22%;
}

.calc-table th:nth-child(3),
.calc-table td:nth-child(3) {
  width: 40%;
}

.calc-table th:nth-child(4),
.calc-table td:nth-child(4) {
  width: 26%;
}

.calc-stat strong {
  font-size: 34px;
}

.calc-profit {
  font-size: 13px;
  padding: 12px 14px;
  overflow-wrap: anywhere;
}

.calc-income-list {
  padding: 4px 14px;
  min-width: 0;
}

.calc-income-list div {
  gap: 10px;
}

.calc-income-list .is-total dd {
  font-size: 28px;
}

  .discord-box {
    gap: 20px;
    padding: 22px 18px;
  }

  .plan {
    padding: 22px 18px;
  }

  .plan-hit {
    transform: none;
  }

  .howto-title {
    font-size: 28px;
    margin-top: 28px;
  }

  .footer-grid {
    gap: 22px;
  }
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 28px);
  }

  #calculator .container {
    width: calc(100% - 28px);
  }

  .section {
    padding: 44px 0;
  }

  .howto,
  .calc-fields,
  .calc-stats,
  .facts-grid {
    grid-template-columns: 1fr;
  }

  .calc-stat {
    padding: 12px 14px;
  }

  .calc-stat strong {
    font-size: 30px;
  }

  .calc-card-head h3 {
    font-size: 24px;
  }

  .calc-muted {
    display: block;
  }

  .review-compose {
    padding: 18px 14px;
    border-radius: 16px;
  }

  .review-compose h3 {
    font-size: 26px;
  }

  .review-form input,
  .review-form textarea {
    font-size: 16px;
  }

  .header-actions .btn-telegram {
    display: none;
  }

  .brand-name {
    font-size: 14px;
    max-width: 112px;
  }

  .brand-sub {
    font-size: 10px;
  }

  .eyebrow {
    font-size: 11px;
    padding: 6px 10px;
    max-width: 100%;
    white-space: normal;
    text-align: left;
    line-height: 1.3;
    border-radius: 12px;
  }

  .hero {
    padding: 28px 0 40px;
  }

  .hero h1 {
    font-size: clamp(30px, 10vw, 40px);
    margin-bottom: 14px;
  }

  .lede {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .stat strong {
    font-size: 34px;
  }

  .media-card {
    max-width: 260px;
  }

  .fact {
    padding: 18px 0;
  }

  .rooms-item__content h2 {
    font-size: 1.55rem;
  }

  .day {
    padding: 14px;
  }

  .person,
  .review-photo {
    padding: 16px;
  }

  .modal-close {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
  }

  .legal-page {
    padding: 28px 0 72px;
  }

  .legal-nav {
    margin-bottom: 20px;
  }

  .legal-nav a {
    padding: 9px 12px;
    font-size: 12px;
  }

  .legal-toc {
    padding: 14px;
  }

  .legal-body p,
  .legal-body li {
    font-size: 14px;
  }

  .legal-callout {
    padding: 12px 14px;
    font-size: 13px;
  }

  .legal-next {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .lang button {
    min-width: 32px;
    padding: 0 6px;
  }

  .crit-btn {
    font-size: 11px;
    letter-spacing: 0.01em;
  }
}

.sticky-buy {
  display: none;
}

@media (max-width: 980px) {
  .sticky-buy {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.08);
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
  }

  .sticky-buy__btn {
    width: 100%;
    min-height: 54px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 12px;
    background: #2aabee !important;
    color: #fff !important;
    box-shadow: 0 0 0 0 rgba(42, 171, 238, 0.55);
    animation: stickyGlow 1.8s ease-in-out infinite;
    transform: none !important;
  }

  .sticky-buy__btn:hover,
  .sticky-buy__btn:active {
    background: #1d9edf !important;
    color: #fff !important;
    transform: none !important;
  }

  .site {
    padding-bottom: 96px;
  }
}

@keyframes stickyGlow {
  0%,
  100% {
    box-shadow:
      0 0 0 0 rgba(42, 171, 238, 0.55),
      0 8px 24px rgba(42, 171, 238, 0.35);
  }
  50% {
    box-shadow:
      0 0 0 12px rgba(42, 171, 238, 0),
      0 10px 28px rgba(42, 171, 238, 0.55);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sticky-buy__btn {
    animation: none;
    box-shadow: 0 8px 24px rgba(42, 171, 238, 0.4);
  }
}
