.pricing-main { padding: 2.5rem 1rem 6rem 1rem; background: var(--bg); min-height: 70vh; }
.pricing-section { max-width: 1100px; margin: 0 auto; padding: 0 1rem; }
.pricing-header { text-align: center; margin-bottom: 1.5rem; }
.pricing-header h1 { margin: 0; color: var(--text); }
.pricing-sub { color: var(--muted-text); margin-top: 0.5rem; }

/* Free message styling */
.free-message {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.free-message h1 {
  color: var(--text);
  font-size: 2.5rem;
  margin: 0 0 1rem 0;
  font-weight: 700;
}

.free-message p {
  color: var(--muted-text);
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 0;
}

.free-message .coming-soon {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
  font-style: italic;
}

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
@media (min-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(4, 1fr); }
}
.price-card { background: var(--card-bg); border: 1px solid var(--input-border); border-radius: 14px; box-shadow: 0 2px 12px var(--border); padding: 1.25rem; display: flex; flex-direction: column; align-items: stretch; }
.price-card h3 { color: var(--text); margin: 0 0 0.5rem 0; text-align: center; }
.price-row { display: flex; align-items: baseline; justify-content: center; gap: 0.25rem; margin-bottom: 0.75rem; }
.price { font-size: 2rem; color: var(--text); font-weight: 800; }
.per { color: var(--muted-text); }
.features { list-style: none; padding: 0; margin: 0.5rem 0 1rem 0; color: var(--muted-text); display: grid; gap: 0.35rem; }

.choose-btn { background: linear-gradient(90deg, var(--header-bg) 0%, var(--primary) 100%); color: #fff; border: none; padding: 0.7rem 1rem; border-radius: 8px; font-weight: 700; cursor: pointer; margin-top: auto; }
.choose-btn:hover { background: linear-gradient(90deg, var(--primary) 0%, var(--header-bg) 100%); }

.price-card.featured { border-color: var(--primary); box-shadow: 0 4px 16px rgba(46,139,87,0.18); grid-column: 1 / -1; justify-self: center; width: 100%; max-width: 400px; }

.pricing-note { text-align: center; color: var(--muted-text); margin-top: 1rem; }

@media (max-width: 800px) {
  .pricing-section { padding: 0; }
  
  .free-message {
    padding: 3rem 1rem;
  }
  
  .free-message h1 {
    font-size: 2rem;
  }
  
  .free-message p {
    font-size: 1.1rem;
  }
}