.pricing {
  padding: 60px 20px;
}

.pricing .container {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing h2 {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 16px;
  color: white;
}

.pricing .section-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-bottom: 48px;
}

/* Mobile first - single column */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 400px;
  margin: 0 auto;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  transition: transform 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.05);
}

.pricing-card.popular {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 32px;
}

.pricing-header h3 {
  font-size: 24px;
  font-weight: 600;
  color: white;
  margin: 0 0 24px 0;
}

.price {
  margin-bottom: 16px;
}

.price .amount {
  font-size: 36px;
  font-weight: 700;
  color: white;
}

.price .period {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
}

.pricing-header p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.pricing-features li {
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 1.4;
}

.pricing-features li::before {
  content: "✓";
  margin-right: 12px;
  color: rgb(79, 70, 229);
  font-weight: bold;
}

.pricing-features li.disabled {
  color: rgba(255, 255, 255, 0.4);
}

.pricing-features li.disabled::before {
  content: "×";
  color: rgba(255, 255, 255, 0.4);
}

.pricing-cta {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.get-started {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.get-started:hover {
  background: rgba(255, 255, 255, 0.15);
}

.start-trial {
  background: rgb(79, 70, 229);
  color: white;
}

.start-trial:hover {
  background: rgb(67, 56, 202);
}

.pricing-note {
  text-align: center;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.pricing-note a {
  color: rgb(79, 70, 229);
  text-decoration: none;
}

.pricing-note a:hover {
  text-decoration: underline;
}

/* Tablet (768px and up) */
@media (min-width: 768px) {
  .pricing {
    padding: 80px 40px;
  }

  .pricing h2 {
    font-size: 36px;
  }

  .pricing .section-subtitle {
    font-size: 18px;
    margin-bottom: 60px;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    gap: 30px;
  }

  .pricing-card {
    padding: 36px;
  }

  .price .amount {
    font-size: 42px;
  }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
  .pricing {
    padding: 100px 40px;
  }

  .pricing h2 {
    font-size: 40px;
  }

  .pricing .section-subtitle {
    font-size: 20px;
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1140px;
    gap: 32px;
  }

  .pricing-card {
    padding: 40px;
  }

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

  .price .period {
    font-size: 16px;
  }

  .pricing-features li {
    font-size: 15px;
  }
} 