/* ListingForge Landing Page Styles */

:root {
  --bg-primary: #36393f;
  --bg-secondary: #40444b;
  --bg-tertiary: #2f3136;
  --accent: #FA4603;
  --accent-hover: #e03e02;
  --text-primary: #ffffff;
  --text-secondary: #b9bbbe;
  --text-muted: #72767d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
  padding: 80px 20px;
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--accent);
  color: white;
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
}

.btn-large {
  padding: 18px 48px;
  font-size: 1.25rem;
}

/* Problem Section */
.problem {
  background-color: var(--bg-secondary);
  padding: 80px 20px;
  text-align: center;
}

.problem h2 {
  font-size: 2rem;
  margin-bottom: 24px;
  color: var(--accent);
}

.problem p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 20px;
}

.problem-cta {
  font-size: 1.25rem;
  color: var(--text-primary) !important;
  font-weight: 600;
}

/* How It Works */
.how-it-works {
  padding: 80px 20px;
  text-align: center;
}

.how-it-works h2 {
  font-size: 2rem;
  margin-bottom: 48px;
}

.steps {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  background-color: var(--bg-secondary);
  padding: 32px;
  border-radius: 12px;
  text-align: left;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--accent);
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 20px;
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.step p {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* What You Get */
.what-you-get {
  background-color: var(--bg-secondary);
  padding: 80px 20px;
  text-align: center;
}

.what-you-get h2 {
  font-size: 2rem;
  margin-bottom: 32px;
}

.features-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 32px;
  max-width: 800px;
  margin: 0 auto;
}

.features-list li {
  font-size: 1.1rem;
  color: var(--text-secondary);
  padding: 8px 16px;
  background-color: var(--bg-tertiary);
  border-radius: 20px;
}

.features-list li::before {
  content: "✓ ";
  color: var(--accent);
  margin-right: 4px;
}

/* Who It's For */
.who-its-for {
  padding: 80px 20px;
  text-align: center;
}

.who-its-for h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}

.who-its-for p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* CTA Section */
.cta {
  background-color: var(--bg-tertiary);
  padding: 80px 20px;
  text-align: center;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.cta p {
  font-size: 1.25rem;
  margin-bottom: 32px;
  color: var(--accent);
  font-weight: 600;
}

/* About Section */
.about {
  background-color: var(--bg-secondary);
  padding: 60px 20px;
  text-align: center;
}

.about p {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 24px;
  line-height: 1.8;
}

.about-link {
  color: var(--accent);
  text-decoration: none;
  font-size: 1.1rem;
}

.about-link:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background-color: var(--bg-tertiary);
  padding: 32px 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .steps {
    flex-direction: column;
    align-items: center;
  }
  
  .step {
    max-width: 100%;
  }
  
  .features-list {
    flex-direction: column;
    align-items: center;
  }
}