.pricing {
  max-width: none;
  padding-left: max(28px, calc((100vw - 1164px) / 2));
  padding-right: max(28px, calc((100vw - 1164px) / 2));
  background: #050811;
  border-top: 1px solid var(--line);
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 610px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(150deg, #0d1423, #070b13);
  overflow: hidden;
}
.price-card.popular {
  border-color: #2876ff;
  background: linear-gradient(155deg, #102449, #091221);
  box-shadow: 0 24px 65px rgba(18, 97, 255, 0.18);
  transform: translateY(-12px);
}
.popular-tag {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  padding: 9px;
  text-align: center;
  background: #1765ee;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.popular .plan-name {
  margin-top: 25px;
}
.plan-name > span {
  color: #4f91ff;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}
.plan-name h3 {
  font-size: 2rem;
  margin: 14px 0 10px;
}
.plan-name p {
  min-height: 78px;
  color: var(--muted);
  font-size: 0.9rem;
}
.price {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.price small,
.price em {
  display: block;
  color: #8d9aae;
  font-size: 0.76rem;
  font-style: normal;
}
.price strong {
  display: block;
  margin: 4px 0;
  font:
    800 2.15rem Manrope,
    Inter,
    sans-serif;
  letter-spacing: -0.05em;
}
.price em {
  color: #67a9ff;
  font-weight: 700;
}
.price-card ul {
  flex: 1;
  list-style: none;
  padding: 22px 0;
  margin: 0;
}
.price-card li {
  position: relative;
  padding: 8px 0 8px 25px;
  color: #c3ccda;
  font-size: 0.87rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}
.price-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #3da1ff;
  font-weight: 800;
}
.price-card .btn {
  width: 100%;
  margin-top: 20px;
}
.price-notes {
  display: flex;
  gap: 32px;
  justify-content: space-between;
  margin-top: 24px;
  padding: 20px 2px;
  color: #748198;
  font-size: 0.78rem;
}
.price-notes p {
  margin: 0;
  max-width: 760px;
}
.price-notes b {
  color: #aeb9ca;
}
.whatsapp-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  border: 1px solid rgba(84, 171, 255, 0.25);
  border-radius: 15px;
  background: rgba(5, 9, 18, 0.58);
}
.wa-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #18a85c;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 12px 30px rgba(24, 168, 92, 0.22);
}
.whatsapp-card > p {
  margin: 18px 0 6px;
  color: #55b986;
  font-size: 0.73rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.whatsapp-card h3 {
  font-size: 1.75rem;
  margin-bottom: 12px;
}
.whatsapp-card small {
  color: #9aa7b9;
  font-size: 0.88rem;
}
.whatsapp-card .whatsapp {
  margin: 26px 0 14px;
  background: #18a85c;
  color: #fff;
}
.whatsapp-card em {
  text-align: center;
  color: #6f7d91;
  font-size: 0.72rem;
  font-style: normal;
}
.floating-wa {
  position: fixed;
  z-index: 30;
  right: 22px;
  bottom: 22px;
  padding: 13px 18px;
  border-radius: 999px;
  background: #18a85c;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.42),
    0 0 0 5px rgba(24, 168, 92, 0.12);
}
@media (max-width: 900px) {
  .price-grid {
    grid-template-columns: 1fr;
  }
  .price-card {
    min-height: auto;
  }
  .price-card.popular {
    transform: none;
  }
  .price-notes {
    display: block;
  }
  .price-notes p + p {
    margin-top: 10px;
  }
}
