
.logo-carousel {
  overflow: hidden;
  width: 100%;
  margin-top: 40px;
}

.logo-track {
  display: flex;
  gap: 80px;
  animation: slide 15s linear infinite;
}

.logo-track img {
  height: 50px;
  opacity: 0.8;
  transition: 0.2s;
}

.logo-track img:hover {
  opacity: 1;
}

@keyframes slide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* --- GLOBAL LAYOUT FIX --- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Jede Section hat automatisch Abstand */
.section {
  padding: 100px 0;
  position: relative;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #f5f7fb;
  color: #222;
  line-height: 1.6;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(20px);
  z-index: 99;
  border-bottom: 1px solid rgba(255,255,255,0.4);
}

.navbar .logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #175cff;
}
.navbar .logo a {
  text-decoration: none;
  color: #175cff;
}

.navbar nav a {
  margin-left: 25px;
  font-size: 1rem;
  text-decoration: none;
  color: #333;
  transition: 0.2s;
}

.navbar nav a:hover {
  color: #175cff;
}

/* HERO */
.hero {
  margin-top: 120px;
  padding: 60px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-content {
  max-width: 550px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.85;
}

.hero-buttons {
  margin-top: 30px;
}

.btn {
  padding: 14px 26px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: 0.3s;
}

.primary {
  background: linear-gradient(135deg, #175cff, #4f8bff);
  color: #fff;
}

.secondary {
  border: 2px solid #175cff;
  color: #175cff;
}

.special {
  background: linear-gradient(135deg, #f5f7fb,#175cff, #f5f7fb);
  color: #fff;
}

.primary:hover {
  opacity: 0.9;
}

.secondary:hover {
  background: #175cff;
  color: #fff;
}

.hero-image {
  width: 430px;
  height: 330px;
  background: linear-gradient(145deg, #d2dffe, #ebf1ff);
  border-radius: 30px;
  box-shadow: 0 22px 40px rgba(0,0,0,0.08);
}

/* GENERIC SECTION FIX */
.page-section {
  padding: 80px 60px;
}

/* SECTION TITLES */
.page-section h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
}

.section-sub {
  font-size: 1.1rem;
  opacity: 0.8;
  margin-bottom: 40px;
}

/* FEATURE CARDS (YOUR ORIGINAL STYLE) */
.feature-grid {
  display: flex;
  gap: 25px;
}

.card {
  background: #ffffff;
  padding: 35px;
  border-radius: 22px;
  flex: 1;
  box-shadow: 0 14px 30px rgba(0,0,0,0.05);
  transition: 0.2s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.icon {
  font-size: 2.4rem;
  margin-bottom: 15px;
}

/* SERVICES LIST */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.service-item {
  background: #ffffff;
  padding: 25px 35px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}


/* TEAM GRID */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 25px;
}

.team-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  text-align: center;
}

.avatarbsp {
  width: 90px;
  height: 90px;
  background: #dce6ff;
  border-radius: 50%;
  margin: 0 auto 15px;
}

.avatar img{
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 15px;
}

/* CONTACT */
.contact-section {
  padding: 80px 60px;
  text-align: center;
  background: #175cff;
  color: white;
}

.big {
  display: inline-block;
  margin-top: 25px;
}

/* FOOTER */
footer {
  padding: 30px;
  text-align: center;
  background: #eef2ff;
  color: #555;
}

/* LEGAL PAGES */
.legal-wrapper {
  margin: 120px auto;
  max-width: 800px;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* Kundenbewertungen */
/* Testimonials Section */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  background: #dce6ff;
  border-radius: 50%;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 15px;
}

.testimonial-name {
  font-size: 1.1rem;
  font-weight: 600;
}

.testimonial-role {
  font-size: 0.9rem;
  opacity: 0.7;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  border-radius: 15px;
  margin-top: 50px;
}
.input-field {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  border-radius: 15px;
  border-color: #4f8bff;
}
.input-button {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  border-radius: 15px;
  border-color: #4f8bff;
  background-color: #ffffff;
  padding: 10px;
}