.promo-section {
  position: relative;
  margin-top: clamp(96px, 9vw, 156px);
  padding: 0 var(--page-gap);
  color: #fff;
}

.promo-card {
  isolation: isolate;
  position: relative;
  display: grid;
  grid-template-columns: minmax(520px, 1.03fr) minmax(500px, 0.97fr);
  width: min(100%, 2200px);
  min-height: clamp(300px, 21vw, 390px);
  margin: 0 auto;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: clamp(32px, 3vw, 56px);
  background: #9f7ec6;
  box-shadow: none;
  animation: promo-card-arrive 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.promo-card__copy {
  position: relative;
  z-index: 6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 3vw, 54px) clamp(32px, 4vw, 76px);
}

.promo-card__paw {
  z-index: -1;
  top: -22%;
  left: -8%;
  width: clamp(300px, 24vw, 480px);
  color: rgba(255, 255, 255, 0.08);
  transform: rotate(-23deg);
  animation: promo-paw-float 4.2s ease-in-out infinite;
  pointer-events: none;
}

.promo-card__eyebrow {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 9px;
  margin: 0 0 13px;
  padding: 8px 15px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: clamp(13px, 1vw, 17px);
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.promo-card__eyebrow span {
  color: #ffd5d8;
  animation: promo-star-spin 4s linear infinite;
}

.promo-card__eyebrow time {
  color: #fff;
  font-weight: 900;
  letter-spacing: 0;
}

.promo-card__title {
  margin: 0;
  font-family: "Oswald Local", "Arial Narrow", sans-serif;
  font-size: clamp(34px, 3.05vw, 61px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.95;
  text-transform: uppercase;
}

.promo-card__title span,
.promo-card__title strong {
  display: block;
}

.promo-card__title span {
  white-space: nowrap;
}

.promo-card__title strong {
  margin-top: 6px;
  color: #ffb0b4;
  font-size: 1.18em;
  text-shadow: 0 0 28px rgba(255, 176, 180, 0.25);
}

.promo-card__actions {
  display: flex;
  align-items: stretch;
  gap: 16px;
  margin-top: clamp(18px, 1.7vw, 30px);
}

.promo-countdown {
  display: flex;
  min-width: clamp(190px, 15vw, 270px);
  align-items: center;
  gap: 13px;
  padding: 8px 17px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 18px;
  background: rgba(61, 45, 86, 0.19);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.promo-countdown > strong {
  min-width: 1.25em;
  color: #fff;
  font-family: "Oswald Local", "Arial Narrow", sans-serif;
  font-size: clamp(34px, 2.4vw, 48px);
  font-weight: 600;
  line-height: 0.85;
  text-align: center;
  animation: promo-count-pulse 2.4s ease-in-out infinite;
}

.promo-countdown span {
  display: flex;
  flex-direction: column;
}

.promo-countdown b {
  font-size: clamp(16px, 1.1vw, 21px);
  line-height: 1.05;
}

.promo-countdown small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(11px, 0.8vw, 14px);
  white-space: nowrap;
}

.promo-card__button {
  display: flex;
  flex: 1 1 auto;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 18px;
  background: #ff9fa4;
  box-shadow: 0 14px 30px rgba(105, 58, 105, 0.2);
  color: #fff;
  font-size: clamp(17px, 1.15vw, 22px);
  font-weight: 800;
  text-align: center;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.promo-card__button:hover,
.promo-card__button:focus-visible {
  filter: brightness(1.05);
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(105, 58, 105, 0.27);
}

.promo-card__visual {
  position: relative;
  z-index: 2;
  min-width: 0;
  min-height: 100%;
  overflow: visible;
}

.promo-vehicle {
  position: absolute;
  z-index: 3;
  top: auto;
  right: -4%;
  bottom: -18%;
  display: block;
  width: auto;
  max-width: none;
  height: 145%;
  max-height: none;
  object-fit: contain;
  object-position: right center;
  transform: none;
  filter: none;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.promo-section + .services-section {
  margin-top: clamp(46px, 4vw, 78px);
}

@keyframes promo-card-arrive {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes promo-count-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@keyframes promo-paw-float {
  0%, 100% { opacity: 0.58; transform: translateY(0) rotate(-23deg) scale(1); }
  50% { opacity: 1; transform: translateY(-16px) rotate(-15deg) scale(1.05); }
}

@keyframes promo-star-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1100px) {
  .promo-card {
    grid-template-columns: minmax(430px, 1.05fr) minmax(390px, 0.95fr);
  }

  .promo-card__copy {
    padding-inline: clamp(30px, 4vw, 58px);
  }

  .promo-card__actions {
    flex-direction: column;
  }

  .promo-countdown {
    align-self: flex-start;
  }
}

@media (max-width: 820px) {
  .promo-section {
    margin-top: 32px;
    padding-inline: 0;
  }

  .promo-card {
    grid-template-columns: 1fr;
    border-radius: 32px;
  }

  .promo-card__copy {
    padding: 30px 22px 26px;
  }

  .promo-card__title {
    font-size: clamp(27px, 7.4vw, 44px);
  }

  .promo-card__actions {
    margin-top: 20px;
  }

  .promo-card__button {
    min-height: 60px;
  }

  .promo-card__visual {
    min-height: 280px;
  }

  .promo-vehicle {
    top: auto;
    right: 50%;
    bottom: -16%;
    width: auto;
    max-width: none;
    height: 140%;
    transform: translateX(50%);
  }

  .promo-card__paw {
    top: -8%;
    left: -28%;
    width: 330px;
  }

  .promo-section + .services-section {
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  .promo-section {
    margin-top: 24px;
  }

  .promo-card__eyebrow {
    margin-bottom: 16px;
    padding: 8px 13px;
  }

  .promo-countdown {
    width: 100%;
  }

  .promo-card__visual {
    min-height: 250px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .promo-card,
  .promo-card__eyebrow span,
  .promo-countdown > strong,
  .promo-card__paw {
    animation: none !important;
  }

}
