/* ═══════════════════════════════════════════════════
   LEISTUNGEN PAGE — Modern Redesign
══════════════════════════════════════════════════ */

/* Hero Section */
.leistungen-hero {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  padding: 100px 20px 80px;
  position: relative;
  overflow: hidden;
}

.leistungen-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 70%);
  animation: pulse-slow 4s ease-in-out infinite;
}

@keyframes pulse-slow {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.leistungen-hero__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.leistungen-hero__label {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(16,185,129,0.15);
  color: var(--accent-2);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.leistungen-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.1;
}

.leistungen-hero__subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 40px;
}

.leistungen-hero__stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.hero-stat__number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-2);
  font-family: 'Space Grotesk', sans-serif;
}

.hero-stat__label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-top: 5px;
}

/* Service Cards Container */
.services-container {
  max-width: 1200px;
  margin: -60px auto 80px;
  padding: 0 20px;
  position: relative;
  z-index: 3;
}

/* Service Card */
.service-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  margin-bottom: 40px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* Service Card Header */
.service-card__header {
  background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 25px;
  border-bottom: 3px solid var(--accent);
}

.service-card__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent) 0%, #1E40AF 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(37,99,235,0.3);
}

.service-card__icon svg {
  width: 40px;
  height: 40px;
  stroke: #fff;
}

.service-card__header-text h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

.service-card__header-text p {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* Service Card Body */
.service-card__body {
  padding: 40px;
}

.service-card__intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 35px;
  padding: 20px;
  background: #F8FAFC;
  border-left: 4px solid var(--accent-2);
  border-radius: 8px;
}

/* Features Grid */
.features-section {
  margin-bottom: 40px;
}

.features-section h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.features-section h3::before {
  content: '✨';
  font-size: 1.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.feature-item {
  padding: 20px;
  background: #F8FAFC;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.3s;
}

.feature-item:hover {
  border-color: var(--accent);
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.feature-item__title {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  font-size: 1rem;
}

.feature-item__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Pricing Cards */
.pricing-section h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-section h3::before {
  content: '💰';
  font-size: 1.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 30px;
}

.pricing-card {
  background: #fff;
  border: 2px solid #E2E8F0;
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.pricing-card:hover::before {
  transform: scaleX(1);
}

.pricing-card:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.pricing-card--highlight {
  background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
  border-color: var(--accent);
  border-width: 3px;
}

.pricing-card--highlight::after {
  content: '⭐ Beliebt';
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent);
  color: #fff;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
}

.pricing-card__label {
  font-weight: 700;
  color: var(--dark);
  font-size: 1.05rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.pricing-card__price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 8px;
}

.pricing-card__price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Service Note */
.service-note {
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  border-left: 4px solid #F59E0B;
  padding: 20px;
  border-radius: 12px;
  margin: 30px 0;
}

.service-note strong {
  display: block;
  margin-bottom: 8px;
  color: #92400E;
  font-size: 1.05rem;
}

.service-note p {
  color: #78350F;
  line-height: 1.6;
  margin: 0;
}

/* Pricing Note */
.pricing-note {
  background: #F8FAFC;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
  border: 1px solid #E2E8F0;
  margin-top: 20px;
}

/* CTA Section */
.leistungen-cta {
  background: linear-gradient(135deg, var(--dark) 0%, #1E293B 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.leistungen-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(16,185,129,0.1) 0%, transparent 50%);
  animation: rotate-slow 20s linear infinite;
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.leistungen-cta__content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.leistungen-cta h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}

.leistungen-cta p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 35px;
  line-height: 1.7;
}

.leistungen-cta__buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 16px 40px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.cta-btn--primary {
  background: var(--accent-2);
  color: #fff;
}

.cta-btn--primary:hover {
  background: #059669;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(16,185,129,0.4);
}

.cta-btn--secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
}

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

/* Responsive */
@media (max-width: 768px) {
  .leistungen-hero {
    padding: 80px 20px 60px;
  }
  
  .leistungen-hero h1 {
    font-size: 2.2rem;
  }
  
  .leistungen-hero__stats {
    gap: 25px;
  }
  
  .services-container {
    margin-top: -40px;
  }
  
  .service-card__header {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  
  .service-card__icon {
    width: 70px;
    height: 70px;
  }
  
  .service-card__body {
    padding: 25px 20px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .leistungen-cta h2 {
    font-size: 2rem;
  }
  
  .leistungen-cta__buttons {
    flex-direction: column;
  }
  
  .cta-btn {
    width: 100%;
  }
}
