/* PROSEO Public CSS */
.proseo-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 40px 20px;
}

.proseo-pricing-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
}

.proseo-pricing-card.highlighted {
    border-color: #2271b1;
    transform: scale(1.05);
}

.price {
    font-size: 48px;
    font-weight: bold;
    color: #2271b1;
}

.proseo-btn {
    display: inline-block;
    border: none;
    cursor: pointer;
    background: #2271b1;
    color: #fff;
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
}

.proseo-btn.secondary {
    background: #444;
}

.proseo-zta textarea,
.proseo-imggen textarea,
.proseo-niche-finder-form input,
.proseo-niche-finder-form textarea {
    width: 100%;
    max-width: 100%;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px;
    margin: 8px 0 12px;
    box-sizing: border-box;
}

.proseo-generated-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid #eee;
}

/* Chatbot */
.proseo-chatbot { max-width: 720px; }
.proseo-chat-log {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px;
  min-height: 180px;
  max-height: 420px;
  overflow: auto;
  background: #fff;
}
.proseo-chat-msg { margin: 0 0 10px 0; line-height: 1.4; }
.proseo-chat-form textarea { width: 100%; }
.proseo-chat-actions { display: flex; gap: 8px; margin-top: 8px; }
.proseo-chat-status { margin-top: 8px; }
