/* Bewerbungsservice Landing Page Styles */
/* Extends LearnAndEarn base styles (style.css) */

/* Navigation */
.service-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  margin-bottom: 20px;
}

.nav-logo {
  font-size: 1.5em;
  font-weight: 700;
  color: #667eea;
  text-decoration: none;
}

.service-nav .nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
}

.service-nav .nav-link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.service-nav .nav-link:hover {
  color: #667eea;
}

.cta-small {
  background: #667eea;
  color: white !important;
  padding: 8px 20px;
  border-radius: 6px;
}

.cta-small:hover {
  background: #5a67d8;
}

/* Hero Section Enhancement */
.bewerbung-hero {
  position: relative;
  overflow: hidden;
}

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

.hero-subtitle {
  font-size: 1.3em;
  opacity: 0.9;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.hero-stats-light {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 25px 40px;
  border-radius: 16px;
  display: inline-flex;
  margin: 0 auto 40px;
}

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

.stat-number {
  display: block;
  font-size: 2.2em;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.stat-label {
  font-size: 0.95em;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

/* Problem Section */
.problem-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.problem-section h2 {
  text-align: center;
  font-size: 2.2em;
  margin-bottom: 50px;
  color: #333;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.problem-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  border-left: 4px solid #dc3545;
}

.problem-icon {
  font-size: 3em;
  margin-bottom: 15px;
}

.problem-card h3 {
  color: #333;
  margin-bottom: 12px;
}

.problem-card p {
  color: #666;
  line-height: 1.6;
}

/* Solution Section */
.solution-section {
  padding: 80px 20px;
  background: white;
}

.solution-section h2 {
  text-align: center;
  font-size: 2.2em;
  margin-bottom: 15px;
  color: #333;
}

.section-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.15em;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.solution-card {
  background: #f8f9fa;
  padding: 35px;
  border-radius: 16px;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.solution-card.highlight-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.solution-card.highlight-card h3,
.solution-card.highlight-card p,
.solution-card.highlight-card li {
  color: white;
}

.card-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #28a745;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8em;
  font-weight: 600;
}

.solution-icon {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.solution-card h3 {
  font-size: 1.3em;
  margin-bottom: 12px;
  color: #333;
}

.solution-card p {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
}

.email-example {
  background: rgba(255,255,255,0.2);
  padding: 12px 20px;
  border-radius: 8px;
  font-family: monospace;
  font-size: 0.95em;
  margin: 15px 0;
  text-align: center;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
}

.feature-list li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: #555;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: 700;
}

.highlight-card .feature-list li::before {
  color: #90EE90;
}

.feature-link {
  display: inline-block;
  margin-top: 15px;
  color: #667eea;
  font-weight: 600;
  text-decoration: none;
}

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

/* Demo Section */
.demo-section {
  padding: 80px 20px;
  background: #f0f2f5;
}

.demo-section h2 {
  text-align: center;
  font-size: 2.2em;
  margin-bottom: 15px;
}

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

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

.demo-tab {
  padding: 12px 25px;
  border: 2px solid #ddd;
  background: white;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.demo-tab:hover {
  border-color: #667eea;
}

.demo-tab.active {
  background: #667eea;
  color: white;
  border-color: #667eea;
}

.demo-panel {
  display: none;
}

.demo-panel.active {
  display: grid;
  grid-template-columns: 1.5fr 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: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

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

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

.mockup-dot.red { background: #ff5f57; }
.mockup-dot.yellow { background: #febc2e; }
.mockup-dot.green { background: #28c840; }

.mockup-title {
  margin-left: 15px;
  font-weight: 600;
  color: #666;
}

.mockup-body {
  padding: 25px;
}

/* Mockup - Search */
.mockup-search {
  margin-bottom: 25px;
}

.search-row {
  display: flex;
  gap: 15px;
  align-items: flex-end;
}

.search-field {
  flex: 1;
}

.search-field label {
  display: block;
  font-size: 0.85em;
  color: #666;
  margin-bottom: 5px;
}

.mock-select, .mock-input {
  width: 100%;
  padding: 10px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 0.95em;
}

.mock-search-btn {
  background: #667eea;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.mockup-results {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.result-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #667eea;
}

.result-company {
  font-weight: 600;
  color: #333;
}

.result-info {
  font-size: 0.85em;
  color: #666;
}

.result-action {
  background: white;
  border: 2px solid #28a745;
  color: #28a745;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.85em;
  cursor: pointer;
  transition: all 0.2s;
}

.result-action:hover {
  background: #28a745;
  color: white;
}

/* Mockup - Favorites */
.favorites-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.favorite-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 2px solid transparent;
}

.favorite-item.selected {
  border-color: #667eea;
  background: #f0f4ff;
}

.fav-checkbox {
  width: 24px;
  height: 24px;
  border: 2px solid #ddd;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
}

.fav-checkbox.checked {
  background: #667eea;
  border-color: #667eea;
  color: white;
}

.fav-info {
  flex: 1;
}

.fav-company {
  font-weight: 600;
  color: #333;
}

.fav-detail {
  font-size: 0.85em;
  color: #666;
}

.fav-status {
  font-size: 0.8em;
  padding: 4px 12px;
  border-radius: 20px;
}

.fav-status.saved {
  background: #e0e0e0;
  color: #666;
}

.fav-status.ready {
  background: #28a745;
  color: white;
}

.favorites-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.action-btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.action-btn.secondary {
  background: white;
  border: 2px solid #ddd;
  color: #666;
}

.action-btn.primary {
  background: #28a745;
  border: none;
  color: white;
}

/* Mockup - Apply */
.apply-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.apply-recipient {
  padding: 12px 15px;
  background: #e3f2fd;
  border-radius: 6px;
  color: #1976d2;
}

.apply-options h4 {
  margin-bottom: 15px;
  color: #333;
}

.option-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.option-card {
  padding: 20px;
  background: #f8f9fa;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}

.option-card:hover {
  border-color: #667eea;
}

.option-card.selected {
  border-color: #667eea;
  background: #f0f4ff;
}

.option-icon {
  font-size: 2em;
  margin-bottom: 8px;
}

.option-name {
  font-weight: 600;
  font-size: 0.9em;
  margin-bottom: 5px;
}

.option-price {
  color: #28a745;
  font-weight: 700;
}

.apply-summary {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: #666;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 2px solid #ddd;
  font-weight: 700;
  font-size: 1.1em;
}

.checkout-btn {
  background: #28a745;
  color: white;
  border: none;
  padding: 15px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
}

/* Mockup - Tracking */
.tracking-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.tracking-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
}

.tracking-item.highlight {
  background: #e8f5e9;
  border: 2px solid #28a745;
}

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

.tracking-status.sent {
  background: #e3f2fd;
  color: #1976d2;
}

.tracking-status.replied {
  background: #28a745;
  color: white;
}

.tracking-info {
  flex: 1;
}

.tracking-company {
  font-weight: 600;
  color: #333;
}

.tracking-date {
  font-size: 0.85em;
  color: #666;
}

.tracking-action {
  color: #666;
  font-size: 0.9em;
}

.view-btn {
  background: #667eea;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.tracking-stats {
  display: flex;
  justify-content: space-around;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
}

.tracking-stats .stat-item {
  text-align: center;
}

.tracking-stats .stat-value {
  display: block;
  font-size: 1.8em;
  font-weight: 700;
  color: #667eea;
}

.tracking-stats .stat-name {
  font-size: 0.85em;
  color: #666;
}

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

.demo-description h3 {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: #333;
}

.demo-description p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.demo-description li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  color: #555;
}

.demo-description li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: 700;
  font-size: 1.1em;
}

/* Pricing Section */
.pricing-section {
  padding: 80px 20px;
  background: white;
}

.pricing-section h2 {
  text-align: center;
  font-size: 2.2em;
  margin-bottom: 15px;
}

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

.pricing-card {
  background: #f8f9fa;
  padding: 35px;
  border-radius: 16px;
  text-align: center;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pricing-card.popular {
  border-color: #667eea;
  transform: scale(1.02);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.85em;
  font-weight: 600;
}

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

.pricing-card h3 {
  font-size: 1.3em;
  margin-bottom: 20px;
  color: #333;
}

.pricing-price {
  margin-bottom: 25px;
}

.price-amount {
  font-size: 2.5em;
  font-weight: 700;
  color: #667eea;
}

.price-unit {
  display: block;
  font-size: 0.9em;
  color: #666;
}

.pricing-features {
  list-style: none;
  padding: 0;
  text-align: left;
}

.pricing-features li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  color: #555;
  border-bottom: 1px solid #eee;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: 700;
}

.pricing-note {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  background: #e3f2fd;
  border-radius: 10px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Trust Section */
.trust-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.trust-section h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 40px;
}

.trust-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

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

.trust-number {
  display: block;
  font-size: 3em;
  font-weight: 700;
}

.trust-label {
  font-size: 1em;
  opacity: 0.9;
}

/* Final CTA */
.final-cta {
  padding: 80px 20px;
  text-align: center;
  background: #f8f9fa;
}

.final-cta h2 {
  font-size: 2.2em;
  margin-bottom: 15px;
  color: #333;
}

.final-cta p {
  font-size: 1.2em;
  color: #666;
  margin-bottom: 30px;
}

/* Footer */
.service-footer {
  background: #222;
  color: #ccc;
  padding: 60px 20px 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 40px;
}

.footer-section h4 {
  color: white;
  margin-bottom: 15px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section li {
  margin-bottom: 10px;
}

.footer-section a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-section a:hover {
  color: #667eea;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  font-size: 0.9em;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .service-nav {
    flex-direction: column;
    gap: 15px;
  }

  .service-nav .nav-links {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .stat-number {
    font-size: 1.8em;
  }

  .demo-panel.active {
    grid-template-columns: 1fr;
  }

  .search-row {
    flex-direction: column;
  }

  .option-cards {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    gap: 30px;
  }

  .trust-number {
    font-size: 2em;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* notranslate class for Google Translate compatibility */
.notranslate {
  /* Keep brand names and email examples untranslated */
}
