.pricing-page.promotion-dialog-open {
  overflow: hidden;
}

.pricing-promotion-dialog {
  width: min(960px, calc(100% - 32px));
  max-width: none;
  max-height: calc(100vh - 32px);
  max-height: calc(100dvh - 32px);
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 1px solid rgba(255, 183, 3, .28);
  border-radius: 26px;
  background: #fff;
  color: var(--pricing-ink, #0d1b30);
  box-shadow: 0 40px 120px rgba(1, 12, 32, .48), 0 0 70px rgba(255, 116, 56, .12);
  overscroll-behavior: contain;
  scrollbar-color: #b9c9dc transparent;
  scrollbar-width: thin;
}

.pricing-promotion-dialog::-webkit-scrollbar {
  width: 8px;
}

.pricing-promotion-dialog::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: 999px;
  background: #b9c9dc;
  background-clip: padding-box;
}

.pricing-promotion-dialog::backdrop {
  background: radial-gradient(circle at 72% 48%, rgba(190, 56, 27, .2), transparent 34%), rgba(2, 8, 22, .84);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  animation: pricing-promotion-backdrop .28s ease both;
}

.pricing-promotion-dialog[open] {
  animation: pricing-promotion-enter .34s cubic-bezier(.2, .75, .25, 1) both;
}

.pricing-promotion-layout {
  display: grid;
  grid-template-columns: 292px minmax(0, 1fr);
  min-height: 590px;
  overflow: hidden;
  border-radius: inherit;
}

.pricing-promotion-deadline {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--pricing-navy, #071a3d);
  color: #fff;
}

.pricing-promotion-deadline::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(2, 9, 24, .32) 0%, transparent 35%, transparent 55%, rgba(2, 9, 24, .88) 100%), linear-gradient(90deg, rgba(8, 103, 209, .12), rgba(255, 90, 79, .1));
  content: "";
  pointer-events: none;
}

.pricing-promotion-deadline > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transform: scale(1.025);
  transition: filter .3s ease, transform .55s ease;
}

.pricing-promotion-dialog[open] .pricing-promotion-deadline > img {
  transform: scale(1);
}

.pricing-promotion-visual-top,
.pricing-promotion-visual-bottom {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
}

.pricing-promotion-visual-top {
  top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pricing-promotion-visual-top span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 201, 90, .58);
  border-radius: 999px;
  background: rgba(6, 19, 41, .78);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
  color: #ffd26f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.pricing-promotion-visual-top i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff5a4f;
  box-shadow: 0 0 0 7px rgba(255, 90, 79, .17), 0 0 20px #ff5a4f;
  animation: pricing-promotion-pulse 1.6s ease-in-out infinite;
}

.pricing-promotion-visual-bottom {
  bottom: 22px;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 15px;
  background: rgba(4, 14, 35, .76);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .3);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.pricing-promotion-visual-bottom small,
.pricing-promotion-visual-bottom strong {
  display: block;
}

.pricing-promotion-visual-bottom small {
  margin-bottom: 5px;
  color: #ffbd68;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.pricing-promotion-visual-bottom strong {
  color: #fff;
  font-family: Manrope, sans-serif;
  font-size: 18px;
  line-height: 1.18;
  letter-spacing: -.025em;
}

.pricing-promotion-content {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 27px 34px 29px;
  background: radial-gradient(circle at 98% 0%, rgba(255, 190, 89, .12), transparent 30%), linear-gradient(145deg, #fff 0%, #fff 62%, #f3f8ff 100%);
}

.pricing-promotion-content::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff5a4f, #ffb703 58%, #59e6c5);
  content: "";
}

.pricing-promotion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 19px;
}

.pricing-promotion-header img {
  display: block;
  width: 150px;
  height: auto;
}

.pricing-promotion-close {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  padding: 0;
  border: 1px solid #d8e3ee;
  border-radius: 13px;
  background: #f7faff;
  color: #3e526d;
  cursor: pointer;
  place-items: center;
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}

.pricing-promotion-close svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.pricing-promotion-close:hover {
  border-color: #b8cee5;
  background: #edf5ff;
  color: var(--pricing-blue, #0867d1);
  transform: rotate(4deg);
}

.pricing-promotion-close:focus-visible,
.pricing-promotion-action:focus-visible {
  outline: 3px solid rgba(8, 103, 209, .28);
  outline-offset: 3px;
}

.pricing-promotion-copy {
  max-width: 570px;
}

.pricing-promotion-kicker {
  position: relative;
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  margin: 0 0 12px;
  padding: 8px 12px;
  overflow: hidden;
  border: 1px solid rgba(218, 111, 24, .24);
  border-radius: 999px;
  background: linear-gradient(135deg, #fff9ef 0%, #fff2dd 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9), 0 7px 18px rgba(154, 76, 18, .08);
  color: #963d16;
  font-family: Manrope, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .045em;
  line-height: 1;
  isolation: isolate;
}

.pricing-promotion-kicker::after {
  position: absolute;
  z-index: 0;
  top: -70%;
  bottom: -70%;
  left: -25%;
  width: 22%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .92), transparent);
  content: "";
  pointer-events: none;
  transform: translateX(-220%) skewX(-18deg);
  animation: pricing-promotion-kicker-sheen 4.6s ease-in-out infinite;
}

.pricing-promotion-kicker span {
  position: relative;
  z-index: 1;
}

.pricing-promotion-kicker i {
  position: relative;
  z-index: 1;
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: #ef8b20;
  box-shadow: 0 0 0 5px rgba(239, 139, 32, .13);
  animation: pricing-promotion-pulse 2.2s ease-in-out infinite;
}

.pricing-promotion-copy h2 {
  margin: 0 0 12px;
  color: var(--pricing-navy, #071a3d);
  font-family: Manrope, sans-serif;
  font-size: clamp(32px, 4.2vw, 44px);
  line-height: 1.02;
  letter-spacing: -.05em;
}

.pricing-promotion-copy > p:last-child {
  max-width: 555px;
  margin: 0;
  color: #586a81;
  font-size: 15px;
  line-height: 1.58;
}

.pricing-promotion-copy > p strong {
  color: #263b58;
}

.pricing-promotion-timer {
  position: relative;
  margin-top: 22px;
  padding: 18px 19px 17px;
  overflow: hidden;
  border: 1px solid #24496f;
  border-radius: 18px;
  background: radial-gradient(circle at 93% 12%, rgba(8, 103, 209, .34), transparent 34%), linear-gradient(135deg, #071a3d 0%, #0a244d 100%);
  box-shadow: 0 17px 36px rgba(7, 26, 61, .18);
}

.pricing-promotion-timer::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff5a4f, #ffb703 68%, rgba(255, 183, 3, 0));
  content: "";
}

.pricing-promotion-timer > p {
  margin: 0 0 13px;
  color: #ffcd78;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.pricing-promotion-countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.pricing-promotion-countdown > div {
  min-width: 0;
  padding: 0 14px;
  border-right: 1px solid rgba(255, 255, 255, .16);
}

.pricing-promotion-countdown > div:first-child {
  padding-left: 0;
}

.pricing-promotion-countdown > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.pricing-promotion-countdown strong,
.pricing-promotion-countdown span {
  display: block;
}

.pricing-promotion-countdown strong {
  color: #fff;
  font-family: Manrope, sans-serif;
  font-size: 39px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  letter-spacing: -.045em;
}

.pricing-promotion-countdown > div:first-child strong {
  color: #ffd16f;
}

.pricing-promotion-countdown > div:last-child strong {
  color: #ff786f;
}

.pricing-promotion-countdown span {
  margin-top: 5px;
  overflow: hidden;
  color: #aebed2;
  font-size: 11px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pricing-promotion-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: auto;
  padding: 20px 0 0;
  background: transparent;
  color: inherit;
}

.pricing-promotion-dialog .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  border: 0;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.pricing-promotion-action {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 10px 0 20px;
  border-radius: 15px;
  background: linear-gradient(135deg, #0878ed, #0867d1);
  box-shadow: 0 14px 30px rgba(8, 103, 209, .28);
  color: #fff;
  font-family: Manrope, sans-serif;
  font-size: 13px;
  font-weight: 800;
  transition: background .2s ease, transform .2s ease;
}

.pricing-promotion-action b {
  display: grid;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 208, 105, .2);
  color: #ffd069;
  font-size: 17px;
  place-items: center;
  transition: transform .2s ease;
}

.pricing-promotion-action:hover {
  background: #005fc7;
  transform: translateY(-2px);
}

.pricing-promotion-action:hover b {
  transform: translateX(2px);
}

.pricing-promotion-dialog.is-expired .pricing-promotion-visual-top span {
  color: #ffcf70;
}

.pricing-promotion-dialog.is-expired .pricing-promotion-kicker {
  border-color: #dbe2ea;
  background: #f3f6f9;
  box-shadow: none;
  color: #64748a;
}

.pricing-promotion-dialog.is-expired .pricing-promotion-kicker::after {
  animation: none;
}

.pricing-promotion-dialog.is-expired .pricing-promotion-deadline > img {
  filter: grayscale(.55) brightness(.72);
}

.pricing-promotion-dialog.is-expired .pricing-promotion-visual-top i {
  background: #95a4b8;
  box-shadow: 0 0 0 7px rgba(149, 164, 184, .13);
  animation: none;
}

.pricing-promotion-dialog.is-expired .pricing-promotion-kicker i {
  background: #95a4b8;
  box-shadow: 0 0 0 5px rgba(149, 164, 184, .13);
  animation: none;
}

.pricing-promotion-dialog.is-expired .pricing-promotion-countdown strong {
  color: #bbc5d3;
}

.pricing-promotion-dialog.is-expired .pricing-promotion-timer::before {
  background: #74839a;
}

.pricing-promotion-dialog.is-expired .pricing-promotion-action {
  background: var(--pricing-navy, #071a3d);
}

.pricing-page.pricing-promotion-expired .snapshot-price.is-promotion-expired {
  align-items: flex-start;
  flex-direction: column;
  gap: 7px;
}

.pricing-page.pricing-promotion-expired .snapshot-price.is-promotion-expired > span {
  padding: 0;
  color: #9a6200;
}

.pricing-page.pricing-promotion-expired .snapshot-price.is-promotion-expired > p {
  color: var(--pricing-navy, #071a3d);
  font-size: 21px;
  line-height: 1.15;
}

.pricing-page.pricing-promotion-expired .plan-price.is-promotion-expired {
  min-height: 52px;
  align-items: center;
  color: var(--pricing-blue, #0867d1);
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: -.025em;
}

.pricing-page.pricing-promotion-expired .plan-card-dark .plan-price.is-promotion-expired {
  color: var(--pricing-mint, #5ef0cf);
}

.pricing-page.pricing-promotion-expired .plan-price-caption {
  color: #8a5b08;
  font-weight: 700;
}

.pricing-page.pricing-promotion-expired .plan-card-dark .plan-price-caption {
  color: #e7c77f;
}

.pricing-promotion-expired-notice {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: -18px 0 32px;
  padding: 16px 18px;
  border: 1px solid #e5c77f;
  border-radius: 15px;
  background: #fff9ea;
  color: #655126;
}

.pricing-promotion-expired-notice strong {
  flex: 0 0 auto;
  color: #674400;
  font-family: Manrope, sans-serif;
  font-size: 14px;
}

.pricing-promotion-expired-notice span {
  font-size: 13px;
}

@keyframes pricing-promotion-enter {
  from { opacity: 0; transform: translateY(18px) scale(.975); }
  to { opacity: 1; transform: none; }
}

@keyframes pricing-promotion-backdrop {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pricing-promotion-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .58; transform: scale(.82); }
}

@keyframes pricing-promotion-kicker-sheen {
  0%, 68% { opacity: 0; transform: translateX(-220%) skewX(-18deg); }
  76% { opacity: .9; }
  92%, 100% { opacity: 0; transform: translateX(650%) skewX(-18deg); }
}

@media (max-width: 720px) {
  .pricing-promotion-dialog {
    width: min(570px, calc(100% - 24px));
    max-height: calc(100vh - 24px);
    max-height: calc(100dvh - 24px);
    border-radius: 22px;
  }

  .pricing-promotion-layout {
    display: block;
    min-height: 0;
  }

  .pricing-promotion-deadline {
    min-height: 142px;
  }

  .pricing-promotion-deadline::after {
    display: block;
    background: linear-gradient(90deg, rgba(2, 9, 24, .22), transparent 48%, rgba(2, 9, 24, .78)), linear-gradient(0deg, rgba(2, 9, 24, .74), transparent 68%);
  }

  .pricing-promotion-deadline > img {
    object-position: 50% 49%;
  }

  .pricing-promotion-visual-top {
    top: 16px;
    left: 18px;
    right: 18px;
  }

  .pricing-promotion-visual-top span {
    padding: 7px 9px;
    font-size: 9px;
  }

  .pricing-promotion-visual-bottom {
    right: 18px;
    bottom: 14px;
    left: auto;
    width: max-content;
    max-width: calc(100% - 36px);
    padding: 9px 11px;
    border-radius: 12px;
  }

  .pricing-promotion-visual-bottom small {
    display: none;
  }

  .pricing-promotion-visual-bottom strong {
    font-size: 13px;
  }

  .pricing-promotion-content {
    padding: 22px;
  }

  .pricing-promotion-header {
    position: sticky;
    top: -1px;
    z-index: 4;
    margin: -4px -4px 15px;
    padding: 4px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 10px 22px rgba(7, 26, 61, .06);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }

  .pricing-promotion-copy h2 {
    font-size: clamp(29px, 8vw, 38px);
  }

  .pricing-promotion-footer {
    align-items: stretch;
    padding: 20px 0 0;
  }

  .pricing-promotion-action {
    width: 100%;
  }

  .pricing-promotion-expired-notice {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    margin-top: -8px;
  }
}

@media (min-width: 721px) and (max-height: 680px) {
  .pricing-promotion-layout {
    min-height: 520px;
  }

  .pricing-promotion-content {
    padding: 22px 28px 24px;
  }

  .pricing-promotion-header {
    margin-bottom: 14px;
  }

  .pricing-promotion-copy h2 {
    font-size: 36px;
  }

  .pricing-promotion-copy > p:last-child {
    font-size: 14px;
  }

  .pricing-promotion-timer {
    margin-top: 16px;
    padding: 15px 17px;
  }

  .pricing-promotion-countdown strong {
    font-size: 34px;
  }

  .pricing-promotion-footer {
    padding-top: 16px;
  }
}

@media (max-width: 430px) {
  .pricing-promotion-deadline {
    min-height: 124px;
  }

  .pricing-promotion-visual-top {
    top: 13px;
    left: 14px;
    right: 14px;
  }

  .pricing-promotion-visual-top span {
    padding: 6px 8px;
    font-size: 8px;
  }

  .pricing-promotion-visual-bottom {
    right: 14px;
    bottom: 11px;
  }

  .pricing-promotion-content {
    padding: 18px;
  }

  .pricing-promotion-header {
    margin-bottom: 16px;
  }

  .pricing-promotion-header img {
    width: 132px;
  }

  .pricing-promotion-copy > p:last-child {
    font-size: 14px;
  }

  .pricing-promotion-timer {
    margin-top: 18px;
    padding: 15px;
  }

  .pricing-promotion-countdown {
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
  }

  .pricing-promotion-countdown > div,
  .pricing-promotion-countdown > div:first-child,
  .pricing-promotion-countdown > div:last-child {
    padding: 10px 11px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 11px;
    background: rgba(255, 255, 255, .055);
  }

  .pricing-promotion-countdown strong {
    font-size: 29px;
  }

  .pricing-promotion-countdown span {
    margin-top: 3px;
    font-size: 9px;
  }
}

@media (max-width: 430px) and (max-height: 700px) {
  .pricing-promotion-deadline {
    min-height: 92px;
  }

  .pricing-promotion-visual-top {
    top: 11px;
  }

  .pricing-promotion-visual-bottom {
    display: none;
  }

  .pricing-promotion-content {
    padding: 15px 17px 17px;
  }

  .pricing-promotion-header {
    margin-bottom: 11px;
  }

  .pricing-promotion-close {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .pricing-promotion-copy h2 {
    margin-bottom: 9px;
    font-size: 27px;
  }

  .pricing-promotion-copy > p:last-child {
    font-size: 13px;
    line-height: 1.46;
  }

  .pricing-promotion-timer {
    margin-top: 14px;
    padding: 12px;
  }

  .pricing-promotion-timer > p {
    margin-bottom: 10px;
  }

  .pricing-promotion-countdown {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .pricing-promotion-countdown > div,
  .pricing-promotion-countdown > div:first-child,
  .pricing-promotion-countdown > div:last-child {
    padding: 0 6px;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, .14);
    border-radius: 0;
    background: transparent;
  }

  .pricing-promotion-countdown > div:first-child {
    padding-left: 0;
  }

  .pricing-promotion-countdown > div:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .pricing-promotion-countdown strong {
    font-size: 25px;
  }

  .pricing-promotion-countdown span {
    font-size: 8px;
  }

  .pricing-promotion-footer {
    padding-top: 14px;
  }

  .pricing-promotion-action {
    min-height: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pricing-promotion-dialog,
  .pricing-promotion-dialog::backdrop {
    animation: none;
  }

  .pricing-promotion-close,
  .pricing-promotion-action,
  .pricing-promotion-action b,
  .pricing-promotion-deadline > img {
    transition: none;
  }

  .pricing-promotion-visual-top i,
  .pricing-promotion-kicker i,
  .pricing-promotion-kicker::after {
    animation: none;
  }
}
