/* Home Screen Specific Styles - Professional & Clean Design */

/* =================================================================
   DESIGN PRINCIPLE: Schlicht, professionell, maximal 3 helle Farben
   - Primärfarbe: #4a90e2 (Buttons, CTAs)
   - Akzentfarbe: #7b68ee (Headlines)  
   - Textfarbe: #20b2aa (Ausgewählte Textbereiche)
   - Minimale Animationen, keine blinky-blinky Effekte
   ================================================================= */

/* Hero Section - Clean & Professional */
.home-hero {
  text-align: center;
  padding: 4rem 0;
  margin-bottom: 3rem;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  position: relative;
}

.home-hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}


.home-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
  color: #7b68ee;
  letter-spacing: -0.01em;
  position: relative;
}

.home-hero-subtitle {
  font-size: 1rem;
  color: #e8f4fd;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  text-align: justify;
  font-weight: 400;
}

.home-hero-actions {
  margin-bottom: 2rem;
}


/* Features Section - Clean Grid */
.home-features {
  padding: 3rem 0;
  background: #000000;
}

.home-features-title {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 600;
  color: #7b68ee;
}

.home-features-subtitle {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1rem;
  color: #e8f4fd;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.home-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.home-feature-card {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.home-feature-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 25px rgba(91, 163, 245, 0.25);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.home-feature-icon {
  color: #20b2aa;
  margin-bottom: 1rem;
  width: 48px;
  height: 48px;
  margin-left: auto;
  margin-right: auto;
}

.home-feature-icon svg {
  width: 100%;
  height: 100%;
  stroke: #20b2aa;
  stroke-width: 2;
}

.home-feature-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #ffffff;
}

.home-feature-description {
  font-size: 1rem;
  color: #e8f4fd;
  line-height: 1.5;
  text-align: center;
}

/* Process Section - Clean Timeline */
.home-process-section {
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.10);
  margin: 2rem 0;
}

.home-process-title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 600;
  color: #7b68ee;
}

.home-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.home-process-step {
  text-align: center;
  padding: 1.5rem;
}

.home-process-number {
  background: linear-gradient(135deg, #5ba3f5 0%, #4a90e2 50%, #7b68ee 100%);
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.4rem;
  margin: 0 auto 1.5rem;
  box-shadow: 
    0 4px 15px rgba(91, 163, 245, 0.4),
    0 2px 8px rgba(123, 104, 238, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.home-process-number::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #5ba3f5, #7b68ee);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.home-process-step:hover .home-process-number {
  transform: scale(1.1);
  box-shadow: 
    0 6px 20px rgba(91, 163, 245, 0.5),
    0 3px 12px rgba(123, 104, 238, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.home-process-step:hover .home-process-number::before {
  opacity: 0.3;
}

.home-process-step-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #ffffff;
}

.home-process-step-description {
  font-size: 0.9rem;
  color: #e8f4fd;
  line-height: 1.5;
}

/* Benefits Section - Simple List */
.home-benefits {
  padding: 3rem 2rem;
  background: #000000;
}

.home-benefits-title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 600;
  color: #7b68ee;
}

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

.home-benefit {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.home-benefit-icon {
  color: #20b2aa;
  margin-right: 1rem;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.home-benefit-icon svg {
  width: 100%;
  height: 100%;
  stroke: #20b2aa;
  stroke-width: 2;
}

.home-benefit-text {
  font-size: 1rem;
  color: #e8f4fd;
  line-height: 1.5;
}

/* Origin Section - Clean Info Block */
.home-origin-section {
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.10);
  margin: 2rem 0;
}

.home-origin-title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 600;
  color: #7b68ee;
}

.home-origin-content {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.home-origin-text p {
  font-size: 1rem;
  color: #e8f4fd;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.home-origin-features {
  display: grid;
  gap: 1.5rem;
}

.home-origin-feature {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.home-origin-feature-icon {
  color: #20b2aa;
  margin-bottom: 0.8rem;
  width: 24px;
  height: 24px;
}

.home-origin-feature-icon svg {
  width: 100%;
  height: 100%;
  stroke: #20b2aa;
  stroke-width: 2;
}

.home-origin-feature-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.home-origin-feature-description {
  font-size: 0.9rem;
  color: #e8f4fd;
  line-height: 1.5;
}

/* Pricing Section - Clean Professional */
.home-pricing {
  margin-bottom: 3rem;
  padding: 3rem 2rem;
  background: #000000;
}

.home-pricing-title {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 600;
  color: #7b68ee;
}

.home-pricing-subtitle {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1rem;
  color: #e8f4fd;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.home-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.home-pricing-card {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  height: 100%;
  min-height: 600px;
}

.home-pricing-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 25px rgba(91, 163, 245, 0.3);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.home-pricing-card-featured {
  border-color: #5ba3f5;
  transform: scale(1.05);
}

.home-pricing-card-featured:hover {
  transform: scale(1.05) translateY(-4px);
}

.home-pricing-badge {
  background: #5ba3f5;
  color: #ffffff;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 2px 8px rgba(91, 163, 245, 0.3);
}

.home-pricing-title-card {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}

.home-pricing-price {
  margin: 1.5rem 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.3rem;
  background: rgba(91, 163, 245, 0.1);
  border-radius: 8px;
  padding: 1rem;
  border: 1px solid rgba(91, 163, 245, 0.2);
}

.home-pricing-currency {
  font-size: 1.2rem;
  font-weight: 600;
  color: #5ba3f5;
}

.home-pricing-amount {
  font-size: 2rem;
  font-weight: 700;
  color: #5ba3f5;
  letter-spacing: -1px;
}

.home-pricing-period {
  font-size: 1rem;
  font-weight: 500;
  color: #5ba3f5;
}

.home-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  flex: 1;
  text-align: left;
}

.home-pricing-features li {
  padding: 0.5rem 0;
  color: #e8f4fd;
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  text-align: left;
}

.home-pricing-features li::before {
  content: "✓";
  color: #20b2aa;
  font-weight: 600;
  margin-right: 0.75rem;
  flex-shrink: 0;
  width: 1.2rem;
  text-align: center;
}

.home-pricing-actions {
  margin-top: auto;
  padding-top: 1.5rem;
}


/* Pricing Info - Compact billing and cancellation info */
.home-pricing-info {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.home-pricing-billing-cancellation {
  font-size: 0.7rem;
  color: #b8c5d1;
  margin: 0;
  line-height: 1.2;
  text-align: center;
  font-style: italic;
}

/* About Section - Simple Info */
.home-about {
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.10);
  text-align: center;
}

.home-about-title {
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 600;
  color: #7b68ee;
}

.home-about-description {
  font-size: 1rem;
  color: #e8f4fd;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .home-hero-title {
    font-size: 2rem;
  }
  
  .home-features-title,
  .home-process-title,
  .home-benefits-title,
  .home-origin-title,
  .home-pricing-title,
  .home-about-title {
    font-size: 1.5rem;
  }
  
  .home-origin-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .home-pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .home-process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .home-pricing-card-featured {
    transform: none;
  }
}

/* Very small screens - single column for process steps */
@media (max-width: 480px) {
  .home-process-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .home-process-step {
    padding: 1rem;
  }
}