/* =========================
   AZH – Web Page Styles
   (spezifisch für web.html)
   ========================= */

/* ========= Hero Web ========= */
.hero-web {
  background: var(--web);
  padding: 120px 20px 80px 20px;
  text-align: center;
}

.hero-overlay {
  max-width: 860px;
  margin: 0 auto;
}

.hero-web h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 5vw, 54px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-web p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 2.4vw, 22px);
  line-height: 1.4;
  opacity: 0.95;
  color: var(--white);
  margin-bottom: 40px;
}

.hero-buttons.single {
  display: flex;
  justify-content: center;
}

/* ========= Journey Section ========= */
.journey {
  background: #fff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
}

.journey h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 600;
  margin-bottom: 60px;
  color: var(--web);
}

.journey-steps {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  position: relative;
}

.journey-steps::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: var(--brand);
  z-index: 0;
}

.journey-step {
  flex: 1;
  position: relative;
  z-index: 1;
}

.journey-step .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border: 3px solid var(--web);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--web);
  background: #fff;
}

.journey-step h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--black);
}

.journey-step p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--black);
  opacity: 0.85;
  max-width: 240px;
  margin: 0 auto;
}

/* CTA unter Journey */
.journey-cta {
  margin-top: 60px;
}

.btn-web-outline {
  padding: 12px 28px;
  border: 2px solid var(--web);
  border-radius: 8px;
  font-weight: 600;
  background: #fff;
  color: var(--black);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-web-outline:hover {
  background: var(--web);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* ========= Leistungen Section ========= */
.leistungen {
  background: #fafafa;
  padding: 100px 20px;
  text-align: center;
}

.leistungen h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 600;
  margin-bottom: 60px;
  color: var(--web);
}

.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.leistung {
  background: #fff;
  border-radius: 12px;
  padding: 40px 20px;
  box-shadow: var(--shadow-1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leistung:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.leistung .icon {
  font-size: 40px;
  color: var(--web);
  margin-bottom: 20px;
}

.leistung h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--black);
}

.leistung p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--black);
  opacity: 0.85;
}

/* CTA unter Leistungen */
.leistungen-cta {
  margin-top: 20px;
}

.leistungen-cta .btn-web-outline {
  padding: 12px 28px;
  border: 2px solid var(--web);
  border-radius: 8px;
  font-weight: 600;
  background: #fff;
  color: var(--black);
  transition: all 0.3s ease;
}

.leistungen-cta .btn-web-outline:hover {
  background: var(--web);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* ========= Responsive ========= */
@media (max-width: 1024px) {
  .journey-steps {
    flex-wrap: wrap;
    gap: 30px;
  }
}

@media (max-width: 900px) {
  .leistungen-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-web {
    padding: 100px 20px 60px 20px;
  }
  
  .hero-web h1 {
    margin-bottom: 20px;
  }
  
  .hero-web p {
    margin-bottom: 32px;
  }

  .journey-steps {
    flex-direction: column;
    align-items: center;
  }

  .journey-steps::before {
    content: none; /* Linie ausblenden in Mobile */
  }
}

/* ========= Pakete Section ========= */
.pakete {
  background: #fff;
  padding: 100px 20px;
  text-align: center;
}

.pakete h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 600;
  margin-bottom: 60px;
  color: var(--web);
}

.pakete-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.paket {
  background: #fafafa;
  border-radius: 12px;
  padding: 40px 20px;
  box-shadow: var(--shadow-1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.paket:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.paket h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--black);
}

.paket-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--black);
  opacity: 0.75;
  margin-bottom: 20px;
}

.paket ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  text-align: left;
}

.paket ul li {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  padding-left: 24px;
  position: relative;
  margin-bottom: 10px;
}

.paket ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--web);
  font-weight: bold;
}

/* Highlighted Paket */
.paket.highlight {
  background: #fff;
  border: 2px solid var(--web);
  transform: scale(1.05);
}

/* ========= Zusatzpakete Section ========= */
.addons {
  background: #fafafa;
  padding: 100px 20px;
  text-align: center;
}

.addons h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 600;
  margin-bottom: 60px;
  color: var(--web);
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.addon {
  background: #fff;
  border-radius: 12px;
  padding: 40px 20px;
  box-shadow: var(--shadow-1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.addon:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.addon .icon {
  font-size: 40px;
  color: var(--web);
  margin-bottom: 20px;
}

.addon h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--black);
}

.addon p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--black);
  opacity: 0.85;
}

/* ========= Responsive Pakete & Addons ========= */
@media (max-width: 1024px) {
  .pakete-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 900px) {
  .addons-grid {
    grid-template-columns: 1fr;
  }
}

/* ========= Warum AZH Section ========= */
.warum-azh {
  background: #fff;
  padding: 100px 20px;
  text-align: center;
}

.warum-azh h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--web);
}

.warum-azh .intro-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--black);
  opacity: 0.85;
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.usp {
  background: #fafafa;
  border-radius: 12px;
  padding: 40px 20px;
  box-shadow: var(--shadow-1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.usp:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.usp .icon {
  font-size: 36px;
  color: var(--web);
  margin-bottom: 20px;
  display: block;
}

.usp h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--black);
}

.usp p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--black);
  opacity: 0.85;
}

/* Responsive USP Grid */
@media (max-width: 900px) {
  .usp-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .usp {
    padding: 32px 20px;
  }
  
  .usp .icon {
    font-size: 32px;
    margin-bottom: 16px;
  }
  
  .usp h3 {
    font-size: 1.1rem;
  }
  
  .usp p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .usp-grid {
    gap: 24px;
  }
  
  .usp {
    padding: 24px 16px;
  }
  
  .usp .icon {
    font-size: 28px;
    margin-bottom: 12px;
  }
  
  .usp h3 {
    font-size: 1rem;
  }
  
  .usp p {
    font-size: 0.9rem;
  }
}



/* ========= CTA Section ========= */
.cta {
  background: var(--brand);
  padding: 100px 20px;
  text-align: center;
  color: var(--white);
}

.cta h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--white);
}

.cta p {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  justify-content: center;
}

.cta .btn-web {
  padding: 12px 28px;
  border: 2px solid var(--web);
  border-radius: 8px;
  font-weight: 600;
  background: var(--web);
  color: var(--white);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cta .btn-web:hover {
  background: var(--web-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* ========= Responsive CTA ========= */
