

h3 {
  display: inline-flex;
  align-items: baseline;
}

h3 .purecounter,
h3 .plus,
h3 .backslash,
h3 .percent {
  color: #4f46e5;
  font-weight: bold;
}

/* Timeline Container */

.timeline .line {
  position: relative;
  margin: 50px auto;
  padding: 20px 0;
  width: 100%;
  max-width: 900px;
}

.timeline p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 15px;
}


.timeline .line::before {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 50%;
  width: 3px;
  background: var(--accent-color); 
  transform: translateX(-50%);
}

/* Items */
.timeline .line .timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
}

.timeline .line .timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline .line .timeline-item.right {
  left: 50%;
}

.timeline .line .timeline-item::before {
  content: "";
  position: absolute;
  top: 30px;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #ff6b6b, #ff8e53); /* Orange Punkte */
  border: 4px solid var(--surface-color);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.8);
  z-index: 1;
}

/* Punkte positionieren */
.timeline .line .timeline-item.left::before {
  right: -10px;
}

.timeline .line .timeline-item.right::before {
  left: -10px;
}


.timeline .line .timeline-content {
  background: var(--surface-color);
  padding: 20px 30px; 
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}


.timeline .line .timeline-content:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.timeline .line .timeline-content h2 {
  font-size: 24px;
  font-weight: 650; 
  margin-bottom: 15px;
  color: var(--heading-color);
}


.timeline .line .timeline-content h3 {
  font-size: 24px;
  font-weight: 650; 
  margin-bottom: 15px;
  color: var(--heading-color);
}

/* Paragraphen */
.timeline .line .timeline-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Timeline Button*/
.timeline .timeline-btn {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #8b5cf6 30%));
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 16px;
  color: var(--contrast-color);
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(54, 144, 231, 0.3);
}

.timeline .timeline-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(54, 144, 231, 0.4);
  color: var(--contrast-color);
}



/* Mobile Darstellung */
@media (max-width: 768px) {
  .timeline .line::before {
    left: 20px;
    transform: none;
  }

  .timeline .line .timeline-item {
    width: 100%;
    padding-left: 60px;  
    padding-right: 20px;
    text-align: left !important; 
  }

  .timeline .line .timeline-item.left,
  .timeline .line .timeline-item.right {
    left: 0px; 
  }

  .timeline .line .timeline-item.left::before {
    left: 11px;
  }

  .timeline .line .timeline-item.right::before {
    left: 11px;
  }
}

.impressum.section,
.impressum.section * {
  background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  opacity: 1 !important;
}

body.impressum-page main {
  min-height: calc(100vh - 150px); /* Höhe = Bildschirmhöhe - Header+Footer */
  display: block;
}

.logo-img {
  height: 36px; 
  width: auto;
  display: block;
}

.section-pattern {
  background-color: #05071e; /* dein Standard-Hintergrund */
  background-image: radial-gradient(#cccccc 0.5px, transparent 1px);
  background-size: 20px 20px; /* Abstand zwischen den Punkten */
}

.integrations{
  padding-top: 60px;
  padding-bottom: 60px;
}


.integrations .feature-content .lead {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 40px;
  line-height: 1.6;
}

.integrations .feature-block {
  margin-bottom: 80px; 
}

.integrations .feature-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.integrations .feature-showcase .grid-wrapper {
  aspect-ratio: 1.15 / 1; 
  height: 100%;
  max-width: 100%;        
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: radial-gradient(#cccccc 1px, transparent 1px);
  background-size: 40px 40px;
  background-repeat: repeat;
  padding: 1%; 
}

.integrations .feature-showcase .grid-wrapper img {
  width: 90%;  
  height: auto;
}

.integrations .feature-content {
  padding-left: 30px;
}

.integrations .feature-content h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.integrations .feature-content .lead {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 40px;
  line-height: 1.6;
}

.integrations .feature-content .feature-list {
  margin-bottom: 40px;
}

.integrations .feature-content .feature-list .feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.integrations .feature-content .feature-list .feature-item .feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 80%), color-mix(in srgb, var(--accent-color), transparent 90%));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.integrations .feature-content .feature-list .feature-item .feature-icon i {
  color: var(--accent-color);
  font-size: 24px;
}

.integrations .feature-content .feature-list .feature-item .feature-text h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.integrations .feature-content .feature-list .feature-item .feature-text p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 2rem;
}

.integrations .feature-content p{
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 2rem;
}

.integrations .feature-content .cta-wrapper {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.integrations .feature-content .cta-wrapper .btn {
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.integrations .feature-content .cta-wrapper .btn.btn-primary {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #8b5cf6 30%));
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.integrations .feature-content .cta-wrapper .btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.integrations .feature-content .cta-wrapper .btn.btn-outline {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.integrations .feature-content .cta-wrapper .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .integrations .feature-content {
    padding-left: 0;
    padding-top: 40px;
  }
}

@media (max-width: 768px) {
  .integrations .feature-card {
    padding: 30px 20px;
  }

  .integrations .feature-card .icon-wrapper {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .integrations .feature-card .icon-wrapper i {
    font-size: 30px;
  }

  .integrations .feature-card h4 {
    font-size: 20px;
  }

  .integrations .feature-card .feature-stats .stat-number {
    font-size: 28px;
  }

  .integrations .feature-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }

  .integrations .feature-content .cta-wrapper .btn {
    padding: 12px 25px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }

  .integrations .feature-showcase {
    width: 100%;
    background-image: radial-gradient(#cccccc 1px, transparent 1px);
    background-size: 40px 40px;
    background-repeat: repeat;
    padding: 20px 0;
  }

}

/* Thank You Page */
.thankyou {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--background-color) 0%,
    color-mix(in srgb, var(--accent-color), transparent 95%) 100%
  );
  padding: 55px 0;
  text-align: center;
}

.thankyou h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--default-color);
}

.thankyou p {
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}


.thankyou .hero-bg-elements {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
  pointer-events: none;
}

/* Next Steps Section */
.next-steps {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.next-steps h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--heading-color);
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* Cards übernehmen den bestehenden Feature-Style */
.next-steps .feature-card {
  background: var(--surface-color);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

.next-steps .feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.next-steps .feature-card .icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #8b5cf6 30%));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  position: relative;
}

.next-steps .feature-card .icon-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  opacity: 0.3;
  transform: scale(1.2);
  z-index: 0;
}

.next-steps .feature-card .icon-wrapper i {
  font-size: 36px;
  color: var(--contrast-color);
  z-index: 1;
}

.next-steps .feature-card h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.next-steps .feature-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.next-steps .button-wrapper {
  text-align: center;
  margin-top: 3rem;
}

.next-steps .btn.btn-primary {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #8b5cf6 30%));
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 16px;
  color: var(--contrast-color);
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(54, 144, 231, 0.3);
  align-content: center;
}

.next-steps .btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
}


.testimonials .company-badge img {
  height: 16px;      
  width: auto;        
  display: block;
}



