/* ========== Basis-Styles ========== */
body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--lighter);
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--darker);
}

/* ========== Header ========== */
header {
  background: linear-gradient(135deg, var(--primary), #4aa8b5);
  color: var(--white);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 2.5rem;
  transition: var(--transition);
}

nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: var(--transition);
}

nav a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

nav a:hover:after {
  width: 100%;
}

.phone-link {
  background: var(--white);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: var(--rounded-full);
  font-weight: 600;
  transition: var(--transition);
}

.phone-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ========== Hero-Section ========== */
.ueber-hero {
  position: relative;
  padding: 8rem 0 6rem;
  background: linear-gradient(135deg, var(--lighter), var(--white));
  overflow: hidden;
  text-align: center;
}

.ueber-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, var(--primary-light) 0%, rgba(255,255,255,0) 70%);
  z-index: 0;
}

.ueber-hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, var(--primary), var(--dark-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}

.ueber-hero h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  border-radius: 2px;
}

.ueber-hero p {
  font-size: 1.25rem;
  color: var(--dark-light);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ========== Content Sections ========== */
.ueber-section {
  padding: 6rem 0;
  position: relative;
}

.ueber-section:nth-child(odd) {
  background: var(--white);
}

.ueber-section:nth-child(even) {
  background: var(--light);
}

.ueber-section .container {
  max-width: 900px;
}

.ueber-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.ueber-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  border-radius: 2px;
}

.ueber-section p {
  font-size: 1.125rem;
  color: var(--dark-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.highlight-text {
  color: var(--primary);
  font-weight: 600;
}

/* ========== Highlight Box ========== */
.highlight-box {
  background: var(--primary-lighter);
  border-left: 4px solid var(--primary);
  padding: 2rem;
  margin: 2.5rem 0;
  border-radius: 0 var(--rounded-md) var(--rounded-md) 0;
  position: relative;
  overflow: hidden;
}

.highlight-box p {
  margin: 0;
  font-size: 1.125rem;
  color: var(--dark);
  position: relative;
  z-index: 1;
}

.highlight-box strong {
  color: var(--primary);
}

/* ========== Blockquote ========== */
blockquote {
  font-style: italic;
  font-size: 1.25rem;
  color: var(--dark);
  padding: 2rem;
  margin: 2.5rem 0;
  position: relative;
  border-radius: var(--rounded-md);
  background: var(--light);
}

blockquote::before {
  content: '"';
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  font-size: 5rem;
  color: var(--primary-light);
  font-family: serif;
  line-height: 1;
  z-index: 0;
}

blockquote p {
  position: relative;
  z-index: 1;
  margin: 0;
}

/* ========== Listen ========== */
.values-list,
.features-list {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0;
}

.values-list li,
.features-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  color: var(--dark-light);
  line-height: 1.6;
}

.values-list li::before,
.features-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 1rem;
  height: 1rem;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%235cb8c2"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>') no-repeat center;
}

.values-list li strong,
.features-list li strong {
  color: var(--dark);
}

/* ========== CTA Section ========== */
.cta-section {
  background: linear-gradient(135deg, var(--primary), #4aa8b5);
  color: var(--white);
  text-align: center;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, var(--secondary-light) 0%, rgba(255,255,255,0) 70%);
  z-index: 0;
}

.cta-section h2 {
  color: var(--white);
  position: relative;
  z-index: 1;
}

.cta-section p {
  color: rgba(255,255,255,0.9);
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 3rem 0;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.closing-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  position: relative;
  z-index: 1;
  margin-top: 2rem;
}

/* ========== Buttons ========== */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--primary);
  padding: 0.875rem 2rem;
  border-radius: var(--rounded-full);
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  background: var(--primary);
  color: var(--white);
}

.cta-button.secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  box-shadow: none;
}

.cta-button.secondary:hover {
  background: rgba(255,255,255,0.1);
}

/* ========== Responsive Design ========== */
@media (max-width: 1024px) {
  .ueber-hero h1 {
    font-size: 2.5rem;
  }
  
  .ueber-section {
    padding: 4rem 0;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .ueber-hero {
    padding: 6rem 0 4rem;
  }
  
  .ueber-hero h1 {
    font-size: 2rem;
  }
  
  .ueber-hero p {
    font-size: 1.1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-button {
    width: 100%;
    max-width: 300px;
  }

  .container {
    padding: 0;
  }
}

@media (max-width: 480px) {
  .ueber-hero h1 {
    font-size: 1.8rem;
  }
  
  .ueber-section h2 {
    font-size: 1.5rem;
  }
  
  .highlight-box {
    padding: 1.5rem;
  }
}

/* ========== Team Section ========== */
.team-section {
  padding: 6rem 0;
  background: var(--white);
  position: relative;
}

.team-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  font-size: 1.125rem;
  color: var(--dark-light);
  line-height: 1.8;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.team-member {
  background: var(--lighter);
  border-radius: var(--rounded-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.member-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.team-member:hover .member-image img {
  transform: scale(1.05);
}

.member-info {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.member-info h3 {
  margin: 0 0 0.5rem;
  color: var(--darker);
  font-size: 1.5rem;
}

.member-role {
  color: var(--primary);
  font-weight: 600;
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.member-age {
  color: var(--dark-light);
  margin: 0 0 1.5rem;
  font-size: 0.9rem;
}

.member-description {
  color: var(--dark-light);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

/* ========== Responsive Anpassungen ========== */
@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .member-image {
    height: 250px;
  }
  
  .member-info {
    padding: 1.5rem;
  }
}