:root {
  --red: #E0553D;
  --red-dark: #C9442E;
  --ink: #1B1A19;
  --ink-2: #3C3A38;
  --paper: #F6F5F3;
  --card: #FFFFFF;
  --muted: #6E6A66;
  --line: #ECEAE7;
  --ok: #1FA45A;
  --r: 16px;
  --r-sm: 11px;
  --font: "YS Text", "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --sticky-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.45;
  padding-bottom: calc(var(--sticky-h) + env(safe-area-inset-bottom, 0px));
}

.page {
  max-width: 560px;
  margin: 0 auto;
  padding: 20px 16px 32px;
}

.header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.mark {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  box-shadow: 0 6px 18px rgba(224, 85, 61, 0.35);
}

.mark b {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  transform: translateY(-1px);
}

.header-text h1 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.header-text p {
  margin-top: 4px;
  font-size: 14px;
  color: var(--muted);
}

.header-address {
  color: inherit;
  text-decoration: none;
}

.header-address:hover {
  color: var(--red-dark);
  text-decoration: underline;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px;
  margin-bottom: 14px;
}

.hero {
  background: linear-gradient(135deg, #fff 0%, #fff8f6 100%);
  border-color: rgba(224, 85, 61, 0.18);
}

.hero-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--red-dark);
  background: rgba(224, 85, 61, 0.1);
  border-radius: 999px;
  padding: 6px 12px;
  margin-bottom: 12px;
}

.hero-pay {
  margin-bottom: 8px;
}

.hero-pay-lead {
  font-size: clamp(16px, 4.2vw, 20px);
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin-bottom: 5px;
}

.hero-price {
  font-size: clamp(28px, 7vw, 36px);
  font-weight: 800;
  color: var(--red);
  line-height: 1.1;
  margin-bottom: 0;
}

.hero-sub {
  font-size: 15px;
  color: var(--ink-2);
  margin-bottom: 6px;
}

.hero-meta {
  font-size: 14px;
  color: var(--muted);
}

.card h2 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
}

.card--comfort {
  background: #fff;
}

.perk-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.perk-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 2px;
  align-items: center;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  box-shadow: 0 2px 8px rgba(27, 26, 25, 0.04);
}

.perk-icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(224, 85, 61, 0.14);
  color: var(--red-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.perk-label {
  grid-column: 2;
  grid-row: 1;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin: 0;
}

.perk-text {
  grid-column: 2;
  grid-row: 2;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
  margin: 0;
}

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

.list li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  color: var(--ink-2);
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

.contacts-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.contacts-lead {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 16px;
  background: #fff;
}

.contact-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-role {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}

.contact-phone {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.2px;
  margin-bottom: 12px;
}

.contact-phone a {
  color: inherit;
  text-decoration: none;
}

.btn-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn-row--contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.btn-row--contact .btn {
  min-height: 44px;
  padding: 10px 12px;
  font-size: 14px;
}

.btn-row--contact-wide {
  grid-column: 1 / -1;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 14px rgba(224, 85, 61, 0.28);
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

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

.sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(246, 245, 243, 0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
}

.sticky-inner {
  max-width: 560px;
  margin: 0 auto;
}

.sticky-bar .btn {
  width: 100%;
}

@media (min-width: 640px) {
  .page {
    padding: 32px 24px 40px;
  }

  .btn-row:not(.btn-row--contact) {
    flex-direction: row;
  }

  .btn-row:not(.btn-row--contact) .btn {
    flex: 1;
  }

  .perk-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .perk-item {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    justify-items: center;
    text-align: center;
    padding: 16px 12px;
  }

  .perk-icon {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 4px;
  }

  .perk-label {
    grid-column: 1;
    grid-row: 2;
  }

  .perk-text {
    grid-column: 1;
    grid-row: 3;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn {
    transition: none;
  }
}

.video-showcase-lead {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}

.video-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  justify-items: center;
}

.video-card {
  width: 100%;
  max-width: 280px;
}

.video-player {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 2px 8px rgba(27, 26, 25, 0.06);
  background: #000;
}

.video-player__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.video-player__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: rgba(27, 26, 25, 0.18);
  cursor: pointer;
  padding: 0;
}

.video-player__play span {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 6px 18px rgba(224, 85, 61, 0.45);
  position: relative;
}

.video-player__play span::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 17px;
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent #fff;
}

.video-player.is-playing .video-player__play {
  display: none;
}

.video-card__title {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

.video-card__text {
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.35;
}

@media (max-width: 420px) {
  .video-showcase {
    grid-template-columns: 1fr;
  }
}
