.plan {
  border-radius: 16px;
  box-shadow: 0 30px 30px -25px rgba(0, 217, 255, 0.3);
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  max-width: 370px;
  flex: 1;
  min-width: 280px;
  transition: all 0.3s ease;
}

.plan:hover {
  transform: translateY(-5px);
  box-shadow: 0 40px 40px -25px rgba(0, 217, 255, 0.4);
}

.plan-section h1 {
  text-align: center;
  margin: 0rem 0;
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--text-white);
}

.plan-section p {
  text-align: center;
  margin: 0 0 1rem 0;
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: 400;
}

.plan-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 40px 0;
}

.plan strong {
  font-weight: 600;
  color: #00d9ff;
}

.plan .inner {
  align-items: center;
  padding: 20px;
  padding-top: 70px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.plan .pricing {
  position: absolute;
  top: 0;
  right: 0;
  background: #ffffff;
  border-radius: 99em 0 0 99em;
  display: flex;
  align-items: center;
  padding: 0.625em 0.75em;
  font-size: 1.25rem;
  font-weight: 600;
  color: #000000
}

.plan .pricing small {
  color: #000000;
  font-size: 0.75em;
  margin-left: 0.25em;
}

.plan .title {
  font-weight: 600;
  font-size: 1.25rem;
  color: #00d9ff;
}

.plan .title + * {
  margin-top: 0.75rem;
}

.plan .info + * {
  margin-top: 1rem;
}

.plan .features {
  display: flex;
  flex-direction: column;
}

.plan .features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.plan .features li + * {
  margin-top: 0.75rem;
}

.plan .features .icon {
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #00d9ff;
  border-radius: 0;
  width: auto;
  height: auto;
  margin-right: 8px;
}

.plan .features .icon svg {
  width: 16px;
  height: 16px;
}

.plan .features + * {
  margin-top: 1.25rem;
}

.plan .action {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding-top: 20px;
}

.plan .button {
  color: var(--text-white);
  text-decoration: none;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: bold;
  text-transform: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  border-radius: 25px;
  background: linear-gradient(var(--dark-bg), var(--dark-bg)) padding-box,
    var(--gradient-accent) border-box;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 192px;
  min-width: 192px;
  max-width: 192px;
  height: 49px;
  margin: 0 auto;
  font-family: 'Sora', sans-serif;
}

.plan .button:hover, .plan .button:focus {
  background: var(--accent-cyan);
  color: var(--primary-purple);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 217, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .plan-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
  }
  
  .plan {
    max-width: 100%;
    min-width: auto;
    width: 100%;
  }
}
