/* Extracted from lohnbuero-alternative.php. Edit here, not in PHP. */

/* ===== lba- prefix: Lohnbüro-Alternative ===== */

/* Hero */
.lba-hero {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  padding: 80px 0 60px;
}
.lba-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.lba-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #dbeafe;
  color: #1d4ed8;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.lba-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #1f2937;
  line-height: 1.2;
  margin-bottom: 16px;
}
.lba-hero h1 span {
  color: #2563eb;
}
.lba-hero-sub {
  font-size: 1.1rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 32px;
}
.lba-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.lba-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.lba-hero-svg-wrap {
  width: 100%;
  max-width: 420px;
}

/* Trust Bar */
.lba-trust {
  background: #1e3a5f;
  padding: 28px 0;
}
.lba-trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.lba-trust-item {
  text-align: center;
  color: #fff;
}
.lba-trust-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #93c5fd;
  line-height: 1.1;
}
.lba-trust-label {
  font-size: 0.8rem;
  color: #cbd5e1;
  margin-top: 2px;
}

/* Section generic */
.lba-section {
  padding: 80px 0;
}
.lba-section--gray {
  background: #f8fafc;
}
.lba-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.lba-section-label {
  display: inline-block;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.lba-section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 12px;
}
.lba-section-sub {
  font-size: 1rem;
  color: #6b7280;
  max-width: 600px;
}

/* Price comparison table */
.lba-compare {
  width: 100%;
  border-collapse: collapse;
  margin-top: 36px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.lba-compare thead th {
  padding: 18px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: left;
}
.lba-compare thead th:first-child {
  background: #f8fafc;
  color: #374151;
}
.lba-compare thead th:nth-child(2) {
  background: #fef3c7;
  color: #92400e;
}
.lba-compare thead th:nth-child(3) {
  background: #2563eb;
  color: #fff;
  text-align: center;
}
.lba-compare tbody tr {
  border-top: 1px solid #e5e7eb;
}
.lba-compare tbody tr:hover {
  background: #f9fafb;
}
.lba-compare tbody td {
  padding: 14px 20px;
  font-size: 0.9rem;
  color: #374151;
  vertical-align: middle;
}
.lba-compare tbody td:first-child {
  font-weight: 600;
  color: #1f2937;
}
.lba-compare tbody td:nth-child(3) {
  text-align: center;
}
.lba-check { color: #10b981; font-weight: 700; }
.lba-x { color: #ef4444; font-weight: 700; }
.lba-neutral { color: #f59e0b; font-weight: 600; }
.lba-compare tfoot td {
  padding: 14px 20px;
  font-size: 0.85rem;
  color: #6b7280;
  font-style: italic;
  background: #f8fafc;
  border-top: 2px solid #e5e7eb;
}

/* Why cards */
.lba-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.lba-why-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 28px 24px;
  transition: box-shadow 0.2s;
}
.lba-why-card:hover {
  box-shadow: 0 4px 20px rgba(37,99,235,0.1);
}
.lba-why-icon {
  width: 48px;
  height: 48px;
  background: #eff6ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.4rem;
}
.lba-why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}
.lba-why-card p {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.6;
}

/* Diff / USP list */
.lba-diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}
.lba-diff-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.lba-diff-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: #2563eb;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}
.lba-diff-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 4px;
}
.lba-diff-text p {
  font-size: 0.88rem;
  color: #6b7280;
  line-height: 1.5;
}

/* Steps */
.lba-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
  counter-reset: lba-step;
}
.lba-step {
  position: relative;
  padding-left: 0;
}
.lba-step-num {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.lba-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}
.lba-step p {
  font-size: 0.88rem;
  color: #6b7280;
  line-height: 1.6;
}

/* FAQ */
.lba-faq-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lba-faq-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
}
.lba-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1f2937;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 12px;
}
.lba-faq-question:hover { background: #f9fafb; }
.lba-faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: #eff6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #2563eb;
  transition: transform 0.2s;
}
.lba-faq-item.open .lba-faq-icon { transform: rotate(45deg); }
.lba-faq-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.7;
}
.lba-faq-item.open .lba-faq-answer { display: block; }

/* CTA block */
.lba-cta {
  background: linear-gradient(135deg, #1e3a5f, #2563eb);
  padding: 72px 0;
  text-align: center;
}
.lba-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.lba-cta p {
  font-size: 1rem;
  color: #bfdbfe;
  margin-bottom: 32px;
}
.lba-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 900px) {
  .lba-why-grid { grid-template-columns: 1fr 1fr; }
  .lba-steps { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 768px) {
  .lba-hero-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .lba-hero-visual { display: none; }
  .lba-trust-inner { gap: 28px; }
  .lba-why-grid { grid-template-columns: 1fr; }
  .lba-diff-grid { grid-template-columns: 1fr; }
  .lba-compare thead th, .lba-compare tbody td { padding: 10px 12px; font-size: 0.82rem; }
}
