/* Feedback form styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');

body, .feedback-form-container, .feedback-form-label, .feedback-form-input, .feedback-form-textarea {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}
.feedback-form-container {
  max-width: 480px;
  margin: 2rem auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  padding: 2rem 2.5rem;
}
.feedback-form-container h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #222;
}
.feedback-form-group {
  margin-bottom: 1.2rem;
}
.feedback-form-label {
  font-weight: 500;
  color: #333;
  display: block;
  margin-bottom: 0.4rem;
}
.feedback-form-input,
.feedback-form-textarea {
  width: 100%;
  padding: 0.7rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 1rem;
  background: #f9fafb;
}
.feedback-form-textarea {
  resize: vertical;
}
.feedback-form-submit {
  background: #2563eb;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  padding: 0.8rem 2.2rem;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
}
.feedback-form-submit:hover {
  background: #1d4ed8;
}
/* Marketing layout styles for SaaS */

/* Marketing layout styles for SaaS */

.marketing-layout {
  min-height: 100vh;
  background: #f4f6f8;
  display: flex;
  flex-direction: column;
}
/* Home page hero and features styles for SaaS */
.home-hero {
  max-width: 700px;
  margin: 60px auto 40px auto;
  text-align: center;
  padding: 40px 24px 32px 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.home-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
  color: #1d3557;
  font-weight: 700;
}
.home-hero p {
  font-size: 1.25rem;
  color: #374151;
  margin-bottom: 32px;
}
.home-hero .cta-btn {
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 14px 36px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.home-hero .cta-btn:hover {
  background: #1d4ed8;
}
.home-features {
  max-width: 900px;
  margin: 40px auto 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.home-feature {
  background: #f9fafb;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  padding: 28px 22px 22px 22px;
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 320px;
  text-align: center;
}
.home-feature h3 {
  color: #2563eb;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.home-feature p {
  color: #374151;
  font-size: 1rem;
}

/* Plans section styles */
.home-plans {
  max-width: 900px;
  margin: 56px auto 0 auto;
}
.home-plans h2 {
  text-align: center;
  color: #1d3557;
  font-size: 2rem;
  margin-bottom: 32px;
}
.plans-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.plan-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  padding: 32px 24px;
  min-width: 220px;
  max-width: 280px;
  text-align: center;
  flex: 1 1 220px;
}
.plan-card h3 {
  color: #2563eb;
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.plan-price {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
}
.plan-period {
  font-size: 1rem;
  color: #6b7280;
  font-weight: 400;
}
.plan-limit {
  color: #374151;
  margin-bottom: 18px;
}
.plan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 18px;
  color: #374151;
}
.plan-btn {
  width: 100%;
  display: inline-block;
}

.marketing-header {
  background: #fff;
  box-shadow: 0 1px 6px rgba(0,0,0,0.04);
  padding: 18px 0 16px 0;
  text-align: right;
}

.auth-links {
  margin-right: 36px;
  font-size: 1.08rem;
}

.auth-links a,
.auth-links .logout-button {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
  margin-left: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-size: 1.08rem;
  transition: color 0.2s;
}

.auth-links a:hover,
.auth-links .logout-button:hover {
  color: #1d4ed8;
}

.logout-form {
  display: inline;
}

.marketing-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Custom styles for How It Works section */
.how-it-works-section {
  max-width: 700px;
  margin: 48px auto 48px auto;
  padding: 32px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.how-it-works-title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 24px;
  color: #223;
}

/* Stepper styles for How It Works */
.how-steps {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.how-step {
  background: #f9fafb;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
  padding: 28px 20px 20px 20px;
  flex: 1 1 200px;
  min-width: 200px;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.how-step-circle {
  width: 44px;
  height: 44px;
  background: #2563eb;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(37,99,235,0.10);
}
.how-step-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #223;
  margin-bottom: 8px;
  text-align: center;
}
.how-step-desc {
  color: #444;
  font-size: 1rem;
  text-align: center;
}
@media (max-width: 900px) {
  .how-steps {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .how-step {
    max-width: 100%;
    min-width: 0;
  }
}

