svg:not(:root) {
  margin: 0 auto;
  display: inherit;
}

.svg-white-line {
  fill: none;
  stroke: #FFFFFF;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-miterlimit: 10;
}

.fire-rocket-group {
  animation-name: rocketFlyUp;
  animation-duration: 1.5s;
  animation-timing-function: cubic-bezier(.80, .20, .70, .85);
  animation-fill-mode: forwards;
}

.fire,
.rocketship {
  animation-name: bouncingRocket;
  animation-duration: 1.8s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(.80, .80, .40, 1);
  animation-delay: 1.5s;
}

.fire {
  transform: scale(1.5);
  transform-origin: 50% 50%;
}

.cloud-right-wrapper {
  animation-name: cloudMoveLeft;
  animation-duration: 1.8s;
  animation-timing-function: cubic-bezier(.80, .80, .40, 1);
  animation-fill-mode: forwards;
}

.cloud-left-wrapper {
  animation-name: cloudMoveRight;
  animation-duration: 1.8s;
  animation-timing-function: cubic-bezier(.80, .80, .40, 1);
  animation-fill-mode: forwards;
}

.cloud-left,
.cloud-right {
  animation-name: bouncingCloud;
  animation-duration: 1.8s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(.80, .80, .40, 1);
  animation-delay: 2.2s;
}

.cloud-right {
  animation-direction: reverse;
  animation-delay: 1.2s;
  animation-duration: 2.2s;
}

.bolt-left,
.bolt-right,
.sparkle-left,
.sparkle-right {
  animation-name: sparkleScale;
  animation-iteration-count: infinite;
  animation-duration: 1.6s;
  animation-timing-function: cubic-bezier(.80, .20, .70, .85);
  animation-delay: 1.8s;
  transform: scale(0);
  transform-origin: 140px 275px;
}

.bolt-right {
  transform-origin: 230px 280px;
  animation-delay: 2.6s;
}

.sparkle-left {
  transform-origin: 100px 200px;
  animation-delay: 2.8s;
  animation-timing-function: ease;
}

.sparkle-right {
  transform-origin: 245px 250px;
  animation-delay: 2.0s;
  animation-timing-function: ease-out;
}

.line-left,
.line-mid,
.line-right {
  animation-name: drawLine;
  animation-duration: 2.5s;
  animation-iteration-count: infinite;
  animation-delay: 1.8s;
  stroke-dasharray: 65;
  stroke-dashoffset: 65;
  transform: translateY(0px);
  transform-origin: 165px 230px;
}

.line-mid {
  animation-delay: 2.8s;
}

.line-right {
  animation-delay: 2.2s;
}

@keyframes rocketFlyUp {
  from {
    transform: translateY(300px);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes bouncingRocket {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(5px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes cloudMoveLeft {
  from {
    transform: translateX(-100px);
  }

  to {
    transform: translateX(0px);
  }
}

@keyframes cloudMoveRight {
  from {
    transform: translateX(80px);
  }

  to {
    transform: translateX(0px);
  }
}

@keyframes bouncingCloud {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes sparkleScale {
  0% {
    transform: scale(0);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes drawLine {
  from {
    stroke-dashoffset: 65;
    opacity: 1;
    transform: translateY(0px);
  }

  to {
    stroke-dashoffset: 0;
    opacity: 0;
    transform: translateY(10px);
  }
}

.btn-liquid {
  display: inline-block;
  position: relative;
  width: 240px;
  height: 60px;
  border-radius: 27px;
  color: #fff;
  font: 700 14px/60px "Droid Sans", sans-serif;
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.btn-liquid .inner {
  position: relative;
  color: #fff;
  z-index: 2;
}

.btn-liquid canvas {
  background-color: transparent !important;
  position: absolute;
  top: -50px;
  right: -50px;
  bottom: -50px;
  left: -50px;
  z-index: 1;
  border-radius: 100%;
}

.vn-pricing-switch-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.vn-pricing-switch {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(21, 31, 63, 0.06);
}

.vn-pricing-switch select {
  border: 0;
  border-radius: 999px;
  min-width: 180px;
  padding: 10px 18px;
  font-weight: 700;
  background: #fff;
  color: #14213d;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.vn-pricing-switch-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #1b5e20;
  background: rgba(56, 142, 60, 0.12);
  font-weight: 700;
  font-size: 13px;
}

.pricing-card {
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.1);
  border-radius: 22px;
  height: 100%;
}

.pricing-card .header {
  padding: 28px 26px 22px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card .card-body {
  padding: 28px 26px 24px;
}

.pricing-card .version {
  margin-bottom: 18px;
}

.pricing-card .version h3 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.vn-plan-feature-list {
  margin-bottom: 24px;
  padding-left: 0;
}

.vn-plan-feature-list li {
  margin-bottom: 10px;
}

.vn-plan-feature-list p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.45;
}

.vn-plan-cta {
  margin-top: auto;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.vn-plan-price-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  margin-top: 6px;
}

.vn-plan-price-currency {
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.vn-plan-price-number {
  font-size: 48px;
  font-weight: 800;
  line-height: .95;
}

.vn-plan-price-period {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  opacity: .88;
  text-align: center;
}

.vn-plan-description {
  min-height: 72px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .9);
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}
