/* Worker Landing Page Styles */

:root {
  --primary: #0066CC;
  --primary-dark: #004C99;
  --text: #1a1a1a;
  --text-light: #666;
  --bg: #ffffff;
  --bg-alt: #f8f9fa;
  --border: #e0e0e0;
  --success: #28a745;
  --radius: 8px;
}

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

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

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

/* Typography */
h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 600;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  text-decoration: none;
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.125rem;
}

/* Header */
.header {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 100;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}

.nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav a {
  color: var(--text);
  font-weight: 500;
}

.nav a:hover {
  color: var(--primary);
  text-decoration: none;
}

/* Hero */
.hero {
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  max-width: 800px;
  margin: 0 auto 24px;
}

.hero-sub {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 32px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-note {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* Problem Section */
.problem {
  padding: 80px 0;
  background: var(--bg-alt);
}

.problem h2 {
  text-align: center;
  margin-bottom: 48px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.problem-item h3 {
  color: var(--text);
}

.problem-item p {
  color: var(--text-light);
}

/* Solution / How It Works */
.solution {
  padding: 80px 0;
}

.section-sub {
  text-align: center;
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 48px;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
}

.how-step {
  text-align: center;
}

.step-num {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 16px;
}

/* Workers Section */
.workers {
  padding: 80px 0;
  background: var(--bg-alt);
}

.workers h2 {
  text-align: center;
  margin-bottom: 48px;
}

.worker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.worker-card {
  background: var(--bg);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.worker-card h3 {
  color: var(--primary);
}

.worker-card ul {
  list-style: none;
  margin-top: 16px;
}

.worker-card li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
}

.worker-card li:last-child {
  border-bottom: none;
}

.worker-card li::before {
  content: "✓ ";
  color: var(--success);
  font-weight: 600;
}

/* Trust Section */
.trust {
  padding: 80px 0;
}

.trust h2 {
  text-align: center;
  margin-bottom: 48px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.trust-item {
  text-align: center;
}

.trust-item h3 {
  color: var(--text);
}

.trust-item p {
  color: var(--text-light);
}

/* Pricing */
.pricing {
  padding: 80px 0;
  background: var(--bg-alt);
  text-align: center;
}

.pricing-card {
  max-width: 400px;
  margin: 0 auto;
  background: var(--bg);
  padding: 48px;
  border-radius: var(--radius);
  border: 2px solid var(--primary);
}

.pricing-card h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.price {
  margin-bottom: 8px;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text);
}

.price-period {
  font-size: 1rem;
  color: var(--text-light);
}

.price-setup {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.pricing-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
}

.pricing-card li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.pricing-card li::before {
  content: "✓ ";
  color: var(--success);
  font-weight: 600;
}

.pricing-note {
  margin-top: 24px;
  font-size: 0.875rem;
  color: var(--text-light);
}

/* CTA / Demo */
.cta {
  padding: 80px 0;
  text-align: center;
}

.cta h2 {
  margin-bottom: 16px;
}

.cta > .container > p {
  color: var(--text-light);
  margin-bottom: 32px;
}

#chat-widget {
  max-width: 600px;
  margin: 0 auto;
  min-height: 400px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-placeholder {
  color: var(--text-light);
}

/* Footer */
.footer {
  padding: 48px 0 24px;
  background: var(--text);
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.footer-col .logo {
  color: white;
  margin-bottom: 8px;
}

.footer-col h4 {
  margin-bottom: 16px;
}

.footer-col p {
  margin-bottom: 8px;
  color: #ccc;
}

.footer-col a {
  color: #ccc;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 24px;
  text-align: center;
  font-size: 0.875rem;
  color: #999;
}

/* Responsive */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  
  .nav {
    display: none; /* Add mobile menu later */
  }
  
  .hero {
    padding: 48px 0;
  }
  
  .problem, .solution, .workers, .trust, .pricing, .cta {
    padding: 48px 0;
  }
}
