body.fees-page .pricing-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  perspective: 1000px;
  width: 100%;
  box-sizing: border-box;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  margin: 30px 0 60px
}

body.fees-page h2 {
  margin: 30px 0
}

body.fees-page .pricing-card .order-btn {
  position: static;
  left: auto;
  bottom: auto;
  transform: none;
  width: 100%
}

body.fees-page .pricing-card {
  position: relative;
  background: var(--glass);
  border-radius: 20px;
  padding: 50px 30px 28px;
  width: 370px;
  min-height: 300px;
  text-align: center;
  color: #a0f0f0;
  box-shadow: 0 0 10px rgba(0, 191, 255, .42);
  transform-style: preserve-3d;
  transition: transform .4s, box-shadow .4s;
  overflow: hidden;
  transform: scale(1) rotateX(0) rotateY(0)
}

body.fees-page .pricing-card h3 {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #0ff;
  text-shadow: 0 0 10px #0ff;
  position: relative;
  z-index: 1
}

body.fees-page .pricing-card p {
  font-size: 1em;
  margin-bottom: 25px;
  line-height: 1.4;
  color: #a0f0f0;
  text-align: justify;
  position: relative;
  z-index: 1
}

body.fees-page .pricing-card .price {
  display: block;
  font-size: 1.6em;
  margin-bottom: 40px;
  color: #0ff;
  position: relative;
  z-index: 1
}

body.fees-page .pricing-card:hover {
  transform: rotateY(5deg) rotateX(3deg) scale(1.03);
  box-shadow: 0 0 25px #0ff, 0 0 15px #0ff
}

.pulse {
  color: #0ff;
  font-weight: 700;
  animation: 1.5s infinite pulse
}

@keyframes pulse {

  0%,
  100% {
    text-shadow: 0 0 0 rgba(46, 204, 113, .7);
    transform: scale(1)
  }

  50% {
    text-shadow: 0 0 10px rgba(46, 204, 113, .9);
    transform: scale(1.08)
  }
}

body.fees-page .pricing-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min(100%, 370px);
  min-height: 520px;
  padding: 34px 28px 28px;
  text-align: left
}

body.fees-page .pricing-card h3 {
  margin-bottom: 12px;
  text-align: left
}

body.fees-page .pricing-card .pricing-card-intro {
  margin-bottom: 16px;
  text-align: left
}

body.fees-page .pricing-card .pricing-features {
  margin: 0 0 18px;
  width: 100%;
  text-align: left;
  line-height: 1.5
}

body.fees-page .pricing-card .pricing-features.card-list {
  margin: 12px 0 18px;
  max-width: none;
}

body.fees-page .pricing-card .pricing-features.card-list li:hover {
  transform: none;
}

body.fees-page .pricing-card .pricing-features li {
  margin-bottom: 10px
}

body.fees-page .pricing-card .pricing-card-fit {
  margin-bottom: 18px;
  text-align: left
}

body.fees-page .pricing-card .price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: auto;
  margin-bottom: 18px;
  font-size: 1.45em
}

body.fees-page .pricing-card .price-prefix {
  font-size: .68em;
  font-weight: 700;
  opacity: .82
}

body.fees-page .pricing-card .order-btn {
  position: static;
  left: auto;
  bottom: auto;
  transform: none;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  color: var(--accent);
  background: rgba(0, 255, 255, 0.10);
  border: 1px solid var(--accent);
  border-radius: 999px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  letter-spacing: .02em;
  box-shadow: 0 0 14px rgba(0, 255, 255, 0.18), inset 0 0 6px rgba(0, 255, 255, 0.08);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  transition: background-color .25s ease, box-shadow .25s ease, transform .25s ease, border-color .25s ease
}

body.fees-page .pricing-card .order-btn:hover {
  background: rgba(0, 255, 255, 0.18);
  box-shadow: 0 0 22px rgba(0, 255, 255, 0.30), 0 0 40px rgba(0, 255, 255, 0.14), inset 0 0 10px rgba(0, 255, 255, 0.18);
  transform: translateY(-2px)
}

body.fees-page .pricing-card .order-btn:active {
  transform: translateY(1px) scale(0.97);
  box-shadow: 0 0 8px var(--accent), inset 0 0 12px rgba(0, 255, 255, 0.30);
  background: rgba(0, 255, 255, 0.22)
}

body.fees-page .pricing-info {
  width: min(100%, var(--page-max-width));
  margin: 0 auto 30px;
  text-align: center
}

body.fees-page .pricing-info>* {
  margin-left: auto;
  margin-right: auto
}

body.fees-page .pricing-info h2 {
  width: min(100%, 980px);
  margin: 0 auto 16px;
  text-align: center
}

body.fees-page .pricing-info ul {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 0
}

body.fees-page .pricing-info li {
  position: relative;
  margin-bottom: 14px;
  line-height: 1.6;
  text-align: left;
  background: var(--glass);
  border: 1px solid rgba(0, 255, 255, 0.16);
  border-radius: 14px;
  padding: 14px 16px 14px 46px;
  box-shadow: 0 0 12px rgba(0, 191, 255, .24)
}

body.fees-page .pricing-info li::before {
  content: "✔";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
  color: var(--accent);
  text-shadow: 0 0 8px var(--accent)
}

body.fees-page .pricing-mode-switcher,
body.fees-page .currency-switcher {
  width: min(100%, var(--page-max-width));
  margin: 20px auto 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center
}

body.fees-page .pricing-mode-switcher {
  margin: 10px auto 14px
}

body.fees-page .currency-switcher-label {
  display: block;
  margin: 0 0 12px;
  font-weight: 700;
  color: #0ff
}

body.fees-page .pricing-mode-note {
  width: min(100%, var(--page-text-max-width));
  margin: 14px auto 0;
  line-height: 1.6;
  text-align: center;
  opacity: .9
}

body.fees-page .pricing-mode-buttons,
body.fees-page .currency-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 0
}

body.fees-page .pricing-mode-buttons button,
body.fees-page .currency-filter-buttons button {
  margin: 0;
  padding: 10px 18px;
  font-size: .92rem;
  border: 1px solid rgba(0, 191, 255, .6);
  border-radius: 999px;
  background-color: rgba(0, 0, 0, 0);
  color: var(--accent);
  cursor: pointer;
  box-shadow: 0 0 16px rgba(0, 191, 255, .3);
  transition: background-color .25s ease, box-shadow .25s ease, transform .25s ease, border-color .25s ease, color .25s ease
}

body.fees-page .pricing-mode-buttons button.active,
body.fees-page .currency-filter-buttons button.active {
  background-color: rgba(0, 191, 255, .15);
  box-shadow: 0 0 15px rgba(0, 191, 255, .7), 0 0 20px rgba(0, 255, 255, .5);
  color: var(--accent);
  border-color: var(--accent);
  cursor: default;
  pointer-events: none
}

body.fees-page .pricing-mode-buttons button:hover:not(.active),
body.fees-page .currency-filter-buttons button:hover:not(.active) {
  background-color: rgba(0, 191, 255, .1);
  box-shadow: 0 0 8px rgba(0, 191, 255, .5), 0 0 12px rgba(0, 255, 255, .3);
  transform: translateY(-2px)
}

body.fees-page .currency-select-wrapper {
  display: none
}

body.fees-page .pricing-container {
  width: min(100%, var(--page-max-width));
  margin: 30px auto 60px;
  align-items: stretch
}

body.fees-page .pricing-card {
  justify-content: flex-start
}

body.fees-page .pricing-comparison,
body.fees-page .estimate-factors {
  width: min(100%, var(--page-max-width));
  margin: 0 auto 64px
}

body.fees-page .pricing-cta-block {
  margin-bottom: 64px
}

body.fees-page .pricing-comparison h2,
body.fees-page .estimate-factors h2,
body.fees-page .pricing-cta-block h2 {
  margin: 0 0 20px;
  text-align: center
}

body.fees-page .comparison-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px
}

body.fees-page .comparison-card,
body.fees-page .estimate-card {
  background: var(--glass);
  border-radius: 20px;
  padding: 24px 22px;
  box-shadow: 0 0 10px rgba(0, 191, 255, .42)
}

body.fees-page .comparison-card h3,
body.fees-page .estimate-card h3 {
  margin: 0 0 12px;
  color: #0ff;
  text-shadow: 0 0 10px #0ff;
  font-size: 1.12rem
}

body.fees-page .comparison-card p,
body.fees-page .estimate-card p {
  margin: 0;
  line-height: 1.6;
  text-align: left
}

body.fees-page .comparison-card .tier-label {
  display: inline-block;
  font-weight: 700;
  color: var(--accent);
  text-shadow: 0 0 8px rgba(0, 255, 255, .35);
  margin-right: 4px
}

body.fees-page .estimate-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px
}

body.fees-page .pricing-cta-block {
  text-align: center
}

/* Info Icon Animation */
@keyframes pulseIcon {

  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 2px #00ffff)
  }

  50% {
    transform: scale(1.2);
    filter: drop-shadow(0 0 12px #00ffff) drop-shadow(0 0 20px #00bfff)
  }
}

body.fees-page .brand-info-note__icon .info-icon svg {
  width: 20px;
  height: 20px;
  animation: 1.5s infinite pulseIcon;
  transform-origin: center;
}