@keyframes floatGlow {
  from { transform: translate(0, 0); }
  to { transform: translate(60px, 40px); }
}

/* --- Container --- */
.pricing-container {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
  background: rgba(17, 24, 39, 0.85); /* dark glass effect */
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
  padding: 3rem 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-container:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(59,130,246,0.25);
}

/* --- Header --- */
.pricing-header h2 {
  font-size: 2.85rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, #60a5fa, #38bdf8, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-header .price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--highlight);
  margin: 0.5rem 0;
}

.pricing-header .price span {
  font-size: 3rem;
  color: #facc15;
}

.pricing-header .subtitle {
  font-size: 1.15rem;
  color: #9ca3af;
  margin-bottom: 2rem;
}

/* button enhancement */
.pricing-header .btn-primary {
  font-size: 1.15rem;
  padding: 1rem 2.5rem;
  border-radius: 1.25rem;
  background: linear-gradient(to right, #2563eb, #38bdf8);
  box-shadow: 0 4px 20px rgba(59,130,246,0.4);
}

.pricing-header .btn-primary:hover {
  background: linear-gradient(to right, #1d4ed8, #3b82f6);
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(59,130,246,0.6);
}

/* --- Addons Note --- */
.addons-note {
  margin-top: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(37, 99, 235, 0.15);
  border-left: 4px solid #3b82f6;
  padding: 1rem;
  border-radius: 0.75rem;
  text-align: left;
}

.addons-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.addons-note p {
  margin: 0;
  color: #e5e7eb;
  line-height: 1.5;
}

/* --- Features --- */
.pricing-features {
  margin-top: 3rem;
  text-align: left;
}

.pricing-features h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #60a5fa;
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.pricing-features h3::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #3b82f6, #60a5fa);
  border-radius: 2px;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.pricing-features li {
  position: relative;
  padding-left: 2rem;
  font-size: 1.05rem;
  color: #d1d5db;
  line-height: 1.6;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #22c55e;
  font-weight: bold;
}

/* subtle reveal animation */
.pricing-features li {
  opacity: 0;
  transform: translateY(10px);
  animation: featureFade 0.5s ease forwards;
}

.pricing-features li:nth-child(n) {
  animation-delay: calc(0.05s * var(--i, 1));
}

@keyframes featureFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .pricing-header h2 {
    font-size: 1.75rem;
  }
  .pricing-header .price span {
    font-size: 2.25rem;
  }
  .pricing-container {
    padding: 2rem 1.25rem;
  }
  .pricing-features li {
    font-size: 0.95rem;
  }
}
/* --- Marketplace Logos --- */

.hero-section {
  position: relative;
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-darker));
  color: var(--text);
  padding: 6rem 1.5rem;
  text-align: center;
  overflow: hidden;
}

/* Decorative overlay shapes */
.hero-overlay::before,
.hero-overlay::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  z-index: 0;
}

@keyframes float {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes drift {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(15px, -15px) rotate(10deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

.hero-overlay::before {
  width: 400px;
  height: 400px;
  background: var(--accent);
  top: -100px;
  left: -100px;
  animation: float 8s ease-in-out infinite;
}

.hero-overlay::after {
  width: 500px;
  height: 500px;
  background: var(--highlight);
  bottom: -150px;
  right: -150px;
  animation: drift 12s ease-in-out infinite;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0;                  /* start hidden */
  animation: fadeUp 0.5s ease-out forwards;
  animation-delay: 0.3s;       /* slight delay for smoother load */
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-title span {
  color: var(--accent);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  background: var(--accent);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

.hero-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}


