/* Deal-плакат акции = как на лазере. Извлечено из alva-laser/laser.css
   для переиспользования на лендингах лицо/тело/омоложение (24.07). */
.hero-offer {
  position: relative;
  display: block;
  padding: 16px 16px 12px;
  border-radius: var(--ds-radius-md);
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  flex-shrink: 0;
  isolation: isolate;
  background: #0a4a60;
  border: 0;
  outline: none;
  box-shadow:
    var(--elev-2);
  transition: transform 0.25s var(--btn-ease), box-shadow 0.25s ease;
}
.hero-offer--deal {
  padding: 16px 16px 16px;
  border-radius: var(--ds-radius-lg);
  min-height: 168px;
}
.hero-offer:hover {
  transform: translateY(-2px);
  box-shadow:
    var(--elev-2);
}
/* full-bleed photo (studio style) */
.hero-offer__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* shift photo down so face sits higher in frame / less clipped by content */
  object-position: right 42%;
  transition: transform 0.9s ease;
  pointer-events: none;
}
.hero-offer:hover .hero-offer__photo {
  transform: scale(1.03);
}
/* teal veil — same as studio promo */
.hero-offer__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    rgba(0, 84, 111, 0.92) 0%,
    rgba(0, 106, 136, 0.74) 40%,
    rgba(66, 139, 161, 0.4) 68%,
    rgba(66, 139, 161, 0.05) 100%
  );
}
.hero-offer__shine {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,0.1) 48%, transparent 56%);
  transform: translateX(-40%);
  pointer-events: none;
  transition: transform 0.4s ease;
}
.hero-offer:hover .hero-offer__shine {
  transform: translateX(40%);
}

.hero-offer__top {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.hero-offer__live {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 22px;
  padding: 0 8px 0 8px;
  border-radius: var(--r-pill, 9999px);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  line-height: 1.2;
}
.hero-offer__live i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ffd76a;
  animation: price-ping 1.8s ease-out infinite;
}
.hero-offer__badge {
  display: inline-flex;
  align-items: center;
  height: 20px;
  padding: 0 8px;
  border-radius: var(--r-pill, 9999px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #1a1408;
  background: #e8c56a;
  line-height: 1.2;
}
.hero-offer__chip {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 8px;
  border-radius: var(--r-pill, 9999px);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a1408;
  background: linear-gradient(135deg, #ffe08a 0%, #e8c56a 100%);
  border: 1px solid rgba(255, 240, 200, 0.4);
  box-shadow: var(--elev-1);
  line-height: 1.2;
}
.hero-offer__title {
  position: relative;
  z-index: 2;
  margin: 0 0 4px;
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 1px 16px rgba(0, 30, 45, 0.2);
  max-width: 18ch;
}
.hero-offer__title em {
  font-style: normal;
  font-weight: 500;
  color: #ffe08a;
}
.hero-offer__k {
  position: relative;
  z-index: 2;
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
  max-width: 30ch;
}

/* value bullets */
.hero-offer__perks {
  position: relative;
  z-index: 2;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
  padding: 0;
}
.hero-offer__perks li {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 24px;
  padding: 0 8px 0 8px;
  border-radius: var(--r-pill, 9999px);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 250, 240, 0.92);
  background: rgba(6, 24, 36, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  line-height: 1.5;
}
.hero-offer__perks li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ffe08a;
  box-shadow: 0 0 0 3px rgba(255, 224, 138, 0.18);
  flex-shrink: 0;
}

/* Compact timer pill */
.hero-offer__timer-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  padding: 4px 8px 4px 8px;
  border-radius: var(--r-pill, 9999px);
  background: rgba(8, 20, 32, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-offer__timer-lab {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 236, 200, 0.55);
  flex-shrink: 0;
  line-height: 1.2;
}
.clock--pill {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-variant-numeric: tabular-nums;
}
.clock--pill .clock__unit {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
}
.clock--pill .clock__unit b {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
  min-width: 1.15em;
  text-align: center;
}
.clock--pill .clock__unit--sec b {
  color: #ffe08a;
}
.clock--pill .clock__unit small {
  /* 31.07 откат: метка «ч/м/с» внутри пилюли с выравниванием по базовой
     линии. Кегль 12 и межстрочный 1.5 растягивали бокс вдвое. */
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1;
}
.clock--pill .clock__colon {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.32);
  line-height: 1;
  padding: 0 1px;
}
.clock--pill .clock__colon--pulse {
  color: rgba(255, 224, 138, 0.7);
  animation: clock-blink 1s steps(1) infinite;
}
@keyframes clock-blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0.25; }
}

/* price + CTA foot */
.hero-offer__foot {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.hero-offer__price {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.hero-offer__now {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  font-variant-numeric: tabular-nums;
}
.hero-offer__now b {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
  text-shadow: 0 1px 14px rgba(0, 25, 40, 0.28);
}
.hero-offer__now small {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 236, 200, 0.65);
  line-height: 1.5;
}
.hero-offer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  border-radius: var(--r-pill, 9999px);
  font-size: 13px;
  font-weight: 600;
  color: #04364a;
  background: #fff;
  white-space: nowrap;
  box-shadow:
    var(--elev-2);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  line-height: 1.25;
}
.hero-offer:hover .hero-offer__cta {
  background: #fff8e8;
  transform: translateX(1px);
  box-shadow:
    var(--elev-2);
}
.hero-offer__cta svg { transition: transform 0.25s ease; }
.hero-offer:hover .hero-offer__cta svg { transform: translateX(2px); }
