/* ============================================
   LearnAndEarn Arbeitgeber Landing Page
   ============================================ */

/* Top Bar */
.arbeitgeber-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.arbeitgeber-top-bar .top-bar-logo a {
  font-size: 1.5em;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
}

.arbeitgeber-top-bar .top-bar-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.arbeitgeber-top-bar .top-bar-link {
  color: #4b5563;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.arbeitgeber-top-bar .top-bar-link:hover {
  color: #2563eb;
}

.arbeitgeber-top-bar .top-bar-cta {
  background: #2563eb;
  color: white !important;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.2s;
}

.arbeitgeber-top-bar .top-bar-cta:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

/* ============================================
   Hero Section
   ============================================ */
.arbeitgeber-hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #0ea5e9 100%);
  padding: 80px 30px 100px;
  text-align: center;
  color: white;
}

.arbeitgeber-hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9em;
  font-weight: 600;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
}

.arbeitgeber-hero h1 {
  font-size: 3em;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.arbeitgeber-hero h1 .highlight {
  color: #fbbf24;
  position: relative;
}

.arbeitgeber-hero-subtitle {
  font-size: 1.3em;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Problem Card */
.arbeitgeber-hero-problem {
  max-width: 700px;
  margin: 0 auto 40px;
}

.problem-card {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 12px;
  padding: 20px 25px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  text-align: left;
  backdrop-filter: blur(10px);
}

.problem-icon {
  font-size: 1.5em;
  flex-shrink: 0;
}

.problem-text {
  line-height: 1.6;
  font-size: 1.05em;
}

.problem-text strong {
  color: #fca5a5;
}

/* Hero CTA */
.arbeitgeber-hero-cta {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.cta-button {
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.05em;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}

.cta-primary {
  background: #fbbf24;
  color: #1e3a8a;
}

.cta-primary:hover {
  background: #f59e0b;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
}

.cta-secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.cta-large {
  padding: 16px 40px;
  font-size: 1.1em;
}

/* ============================================
   Value Proposition Section
   ============================================ */
.arbeitgeber-value {
  padding: 80px 30px;
  background: #f8fafc;
}

.arbeitgeber-value h2 {
  text-align: center;
  font-size: 2.2em;
  color: #1e3a8a;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  color: #64748b;
  font-size: 1.1em;
  margin-bottom: 50px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.value-icon {
  font-size: 2.5em;
  margin-bottom: 15px;
}

.value-card h3 {
  color: #1e3a8a;
  margin: 0 0 12px 0;
  font-size: 1.2em;
}

.value-card p {
  color: #64748b;
  line-height: 1.6;
  margin: 0 0 15px 0;
}

.value-metric {
  background: #eff6ff;
  border-radius: 8px;
  padding: 10px 15px;
  text-align: center;
}

.metric-example {
  color: #2563eb;
  font-weight: 700;
  font-size: 1.1em;
}

/* ============================================
   Demo Section
   ============================================ */
.demo-section {
  padding: 80px 30px;
  background: white;
}

.demo-section h2 {
  text-align: center;
  font-size: 2.2em;
  color: #1e3a8a;
  margin-bottom: 10px;
}

.demo-container {
  max-width: 1100px;
  margin: 50px auto 0;
}

.demo-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.demo-tab {
  padding: 12px 24px;
  border: 2px solid #e2e8f0;
  background: white;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  color: #64748b;
}

.demo-tab:hover {
  border-color: #2563eb;
  color: #2563eb;
}

.demo-tab.active {
  background: #2563eb;
  border-color: #2563eb;
  color: white;
}

.demo-panel {
  display: none;
}

.demo-panel.active {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: start;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mockup Styles */
.demo-mockup {
  background: #1e293b;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.mockup-header {
  background: #334155;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mockup-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.mockup-dot.red { background: #ef4444; }
.mockup-dot.yellow { background: #fbbf24; }
.mockup-dot.green { background: #22c55e; }

.mockup-title {
  color: #94a3b8;
  font-size: 0.85em;
  margin-left: 10px;
}

.mockup-body {
  padding: 20px;
  background: #f8fafc;
}

/* Employee Overview Mockup */
.employee-overview {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.employee-card {
  background: white;
  border-radius: 10px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid #e2e8f0;
}

.employee-card.warning {
  border-color: #fbbf24;
  background: #fffbeb;
}

.employee-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #2563eb;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9em;
}

.employee-info {
  flex: 1;
}

.employee-name {
  font-weight: 600;
  color: #1e293b;
}

.employee-role {
  font-size: 0.85em;
  color: #64748b;
}

.employee-stats {
  display: flex;
  gap: 20px;
}

.mini-stat {
  text-align: center;
}

.mini-value {
  display: block;
  font-weight: 700;
  color: #1e293b;
}

.mini-stat.good .mini-value { color: #22c55e; }
.mini-stat.bad .mini-value { color: #ef4444; }
.mini-stat.warning .mini-value { color: #f59e0b; }

.mini-label {
  font-size: 0.7em;
  color: #94a3b8;
  text-transform: uppercase;
}

.employee-status {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8em;
  font-weight: 600;
}

.employee-status.active {
  background: #dcfce7;
  color: #166534;
}

.employee-status.inactive {
  background: #fef3c7;
  color: #92400e;
}

/* Activity Chart Mockup */
.activity-chart {
  background: white;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 15px;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 0.9em;
  color: #64748b;
}

.chart-total {
  font-weight: 600;
  color: #2563eb;
}

.chart-bars {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 100px;
  gap: 10px;
}

.chart-day {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.chart-day .bar {
  width: 100%;
  background: #2563eb;
  border-radius: 4px 4px 0 0;
  min-height: 10px;
  transition: height 0.5s ease;
}

.chart-day .bar.today {
  background: #22c55e;
}

.day-label {
  font-size: 0.75em;
  color: #94a3b8;
}

.activity-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.detail-item {
  background: white;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #e2e8f0;
}

.detail-icon {
  font-size: 1.3em;
  display: block;
  margin-bottom: 5px;
}

.detail-label {
  font-size: 0.75em;
  color: #64748b;
  display: block;
}

.detail-value {
  font-weight: 700;
  color: #2563eb;
  font-size: 1.2em;
}

/* Speaking Analysis Mockup */
.speaking-analysis {
  background: white;
  border-radius: 10px;
  padding: 20px;
}

.overall-score {
  text-align: center;
  margin-bottom: 25px;
}

.score-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
}

.score-value {
  font-size: 1.8em;
  font-weight: 700;
}

.score-label {
  font-size: 0.7em;
  opacity: 0.9;
}

.problem-areas h4,
.recent-sentences h4 {
  font-size: 0.9em;
  color: #64748b;
  margin: 0 0 12px 0;
}

.problem-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.problem-sound {
  width: 40px;
  font-weight: 600;
  color: #1e293b;
}

.problem-bar {
  flex: 1;
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
}

.problem-fill {
  height: 100%;
  background: #f59e0b;
  border-radius: 4px;
}

.problem-fill.good {
  background: #22c55e;
}

.problem-percent {
  width: 40px;
  text-align: right;
  font-size: 0.85em;
  color: #64748b;
}

.recent-sentences {
  margin-top: 20px;
}

.sentence-result {
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9em;
}

.sentence-result.good {
  background: #dcfce7;
  color: #166534;
}

.sentence-result.medium {
  background: #fef3c7;
  color: #92400e;
}

.result-icon {
  font-weight: 700;
}

/* Vocabulary Mockup */
.vocabulary-overview {
  background: white;
  border-radius: 10px;
  padding: 20px;
}

.vocab-stats-row {
  display: flex;
  justify-content: space-around;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e8f0;
}

.vocab-stat {
  text-align: center;
}

.vocab-number {
  display: block;
  font-size: 1.8em;
  font-weight: 700;
  color: #2563eb;
}

.vocab-label {
  font-size: 0.8em;
  color: #64748b;
}

.vocab-categories h4 {
  font-size: 0.9em;
  color: #64748b;
  margin: 0 0 15px 0;
}

.category-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding: 10px;
  border-radius: 8px;
}

.category-item.highlight {
  background: #eff6ff;
}

.category-name {
  width: 150px;
  font-size: 0.9em;
  color: #1e293b;
}

.category-bar {
  flex: 1;
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
}

.category-fill {
  height: 100%;
  background: #2563eb;
  border-radius: 4px;
}

.category-fill.technical {
  background: #8b5cf6;
}

.category-count {
  width: 40px;
  text-align: right;
  font-size: 0.85em;
  color: #64748b;
}

/* Demo Description */
.demo-description {
  padding: 20px 0;
}

.demo-description h3 {
  color: #1e293b;
  margin: 0 0 15px 0;
  font-size: 1.4em;
}

.demo-description p {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 20px;
}

.demo-description ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.demo-description li {
  padding: 8px 0 8px 25px;
  position: relative;
  color: #4b5563;
}

.demo-description li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: bold;
}

/* ============================================
   Process Timeline
   ============================================ */
.arbeitgeber-process {
  padding: 80px 30px;
  background: #f8fafc;
}

.arbeitgeber-process h2 {
  text-align: center;
  font-size: 2.2em;
  color: #1e3a8a;
  margin-bottom: 50px;
}

.process-timeline {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.process-step {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.process-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #2563eb;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3em;
  flex-shrink: 0;
}

.process-content h3 {
  margin: 0 0 8px 0;
  color: #1e3a8a;
}

.process-content p {
  margin: 0;
  color: #64748b;
  line-height: 1.6;
}

/* ============================================
   Partner Note Section
   ============================================ */
.partner-note {
  padding: 60px 30px;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
}

.partner-note-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.partner-note-icon {
  font-size: 3em;
  flex-shrink: 0;
}

.partner-note-text h3 {
  color: #166534;
  margin: 0 0 15px 0;
  font-size: 1.4em;
}

.partner-note-text p {
  color: #4b5563;
  line-height: 1.7;
  margin: 0 0 15px 0;
}

.partner-note-highlight {
  background: white;
  padding: 15px 20px;
  border-radius: 8px;
  border-left: 4px solid #22c55e;
  font-weight: 600;
  color: #166534;
}

/* ============================================
   Registration Form
   ============================================ */
.arbeitgeber-register {
  padding: 80px 30px;
  background: white;
}

.arbeitgeber-register h2 {
  text-align: center;
  font-size: 2.2em;
  color: #1e3a8a;
  margin-bottom: 10px;
}

.register-form {
  max-width: 700px;
  margin: 50px auto 0;
  background: #f8fafc;
  padding: 40px;
  border-radius: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 0;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1em;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
}

.checkbox-group {
  margin: 25px 0;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
}

.checkbox-label span {
  font-weight: normal;
}

.checkbox-label a {
  color: #2563eb;
}

.register-form .cta-button {
  width: 100%;
  border: none;
  cursor: pointer;
}

.form-note {
  text-align: center;
  color: #64748b;
  font-size: 0.9em;
  margin-top: 15px;
}

/* ============================================
   FAQ Section
   ============================================ */
.arbeitgeber-faq {
  padding: 80px 30px;
  background: #f8fafc;
}

.arbeitgeber-faq h2 {
  text-align: center;
  font-size: 2.2em;
  color: #1e3a8a;
  margin-bottom: 50px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: #1e3a8a;
  transition: background 0.2s;
}

.faq-question:hover {
  background: #f8fafc;
}

.faq-icon {
  font-size: 1.5em;
  color: #2563eb;
  font-weight: 300;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 25px 20px;
  margin: 0;
  color: #4b5563;
  line-height: 1.7;
}

.faq-item.open .faq-question {
  background: #eff6ff;
}

/* ============================================
   Footer
   ============================================ */
.arbeitgeber-footer {
  background: #1e3a8a;
  color: white;
  padding: 40px 30px;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9em;
  margin: 0;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 900px) {
  .demo-panel.active {
    grid-template-columns: 1fr;
  }

  .demo-description {
    order: -1;
  }
}

@media (max-width: 768px) {
  .arbeitgeber-top-bar {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .arbeitgeber-hero h1 {
    font-size: 2em;
  }

  .arbeitgeber-hero-subtitle {
    font-size: 1.1em;
  }

  .problem-card {
    flex-direction: column;
    text-align: center;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .register-form {
    padding: 25px;
  }

  .partner-note-content {
    flex-direction: column;
    text-align: center;
  }

  .employee-card {
    flex-wrap: wrap;
  }

  .employee-stats {
    width: 100%;
    justify-content: space-around;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e2e8f0;
  }

  .activity-details {
    grid-template-columns: 1fr;
  }

  .category-name {
    width: 100px;
    font-size: 0.8em;
  }
}

@media (max-width: 480px) {
  .arbeitgeber-hero {
    padding: 50px 20px 70px;
  }

  .arbeitgeber-hero h1 {
    font-size: 1.6em;
  }

  .demo-tabs {
    flex-direction: column;
  }

  .demo-tab {
    width: 100%;
  }

  .process-step {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .vocab-stats-row {
    flex-direction: column;
    gap: 15px;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
  }
}
