.prices {
  width: 100%;
  height: max-content;
  background: var(--color-bg-secondary);
  padding-bottom: 12em;
  border-radius: 12px;
}

.prices-header {
  position: relative;
  width: 100%;
  padding: 20em 0 10em 0;
  display: flex;
  z-index: 2;
}

.prices-col {
  padding: 1em;
}

.prices-col:nth-child(1) {
  flex: 2;
}

.prices-col:nth-child(2) {
  flex: 4;
}

.prices-col h2 {
  width: 85%;
  color: rgba(255, 255, 255, 0.125);
  transition: color 0.3s;
}

.prices-copy {
  width: 50%;
  padding: 10em 1em 2em 1em;
  text-transform: uppercase;
}

/* Pricing Cards */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2em;
}

.pricing-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 3em 2.5em;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(45, 138, 95, 0.05) 0%, rgba(26, 88, 65, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: rgba(45, 138, 95, 0.4);
  box-shadow: 0 30px 60px rgba(26, 88, 65, 0.2);
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card.featured {
  border: 2px solid #2d8a5f;
  box-shadow: 0 20px 40px rgba(26, 88, 65, 0.3);
  transform: scale(1.05);
}

.pricing-card.featured::before {
  opacity: 1;
  background: linear-gradient(135deg, rgba(45, 138, 95, 0.1) 0%, rgba(26, 88, 65, 0.1) 100%);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #0f3d2b 0%, #2d8a5f 100%);
  color: white;
  padding: 0.5em 1.2em;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 1;
}

.plan-header {
  position: relative;
  margin-bottom: 2em;
  z-index: 1;
}

.plan-header h3 {
  font-family: var(--font-secondary);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.3em;
  letter-spacing: 1px;
}

.plan-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.plan-price {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.5em;
  z-index: 1;
}

.currency {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  margin-right: 0.3em;
  margin-top: 0.5em;
}

.amount {
  font-family: var(--font-secondary);
  font-size: 56px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
}

.period {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 0.3em;
  align-self: flex-end;
  margin-bottom: 0.5em;
}

.plan-features {
  position: relative;
  list-style: none;
  margin-bottom: 2.5em;
  flex-grow: 1;
  z-index: 1;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.8em;
  padding: 0.8em 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features li ion-icon {
  font-size: 20px;
  color: #00ff88;
  flex-shrink: 0;
}

.plan-features li.disabled {
  color: rgba(255, 255, 255, 0.3);
}

.plan-features li.disabled ion-icon {
  color: rgba(255, 255, 255, 0.2);
}

.plan-button {
  position: relative;
  display: block;
  width: 100%;
  padding: 1.2em;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  text-align: center;
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  z-index: 1;
  cursor: pointer;
}

.plan-button:hover {
  background: linear-gradient(135deg, #0f3d2b 0%, #2d8a5f 100%);
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(26, 88, 65, 0.4);
  transform: translateY(-2px);
}

.pricing-card.featured .plan-button {
  background: linear-gradient(135deg, #0f3d2b 0%, #2d8a5f 100%);
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(26, 88, 65, 0.3);
}

.pricing-card.featured .plan-button:hover {
  box-shadow: 0 12px 35px rgba(26, 88, 65, 0.5);
  transform: translateY(-2px);
}

@media (max-width: 1200px) {
  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 2em;
    padding: 0 1.5em;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 900px) {
  .prices-copy {
    width: 100%;
  }

  .prices-header {
    padding: 5em 0 5em 0;
    flex-direction: column;
  }

  .prices-col h2 {
    width: 100%;
    font-size: 64px;
  }

  .prices-copy {
    padding: 5em 1em 5em 1em;
  }

  .pricing-card {
    padding: 2.5em 2em;
  }

  .plan-header h3 {
    font-size: 28px;
  }

  .amount {
    font-size: 48px;
  }
}
