/* ========================== */
/* DATTLE - DOMAINSEITE STIL  */
/* ========================== */

 /* Grundlegendes Zentrieren */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 6rem 1rem;
  background: linear-gradient(to bottom right, #DBEEFE, #EFF8FF);
  text-align: center;
}
.hero-inner {
  max-width: 800px;
  margin: 0 auto;
}
.hero-inner h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #1C4587;
}
.hero-inner p {
  font-size: 1.2rem;
  color: #1C4587;
  margin-bottom: 2rem;
}
.hero-deco-left,
.hero-deco-right {
  position: absolute;
  top: 20%;
  width: 150px;
  height: 150px;
  background: rgba(57,154,248,0.1);
  border-radius: 50%;
  z-index: 0;
}
.hero-deco-left {
  left: 5%;
}
.hero-deco-right {
  right: 5%;
}

/* Features Section */
.features-section {
  background: #ffffff;
  padding: 6rem 0;
  text-align: center;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 3rem;
}
.feature-item {
  flex: 1 1 220px;
  max-width: 250px;
  background: #F9FBFF;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(28,69,135,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(28,69,135,0.15);
}
.icon-circle {
  width: 70px;
  height: 70px;
  background: #399AF8;
  color: #ffffff;
  font-size: 2rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Timeline Section */
.timeline-section {
  background: #EFF8FF;
  padding: 6rem 1rem;
}
.timeline-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

/* Timeline Layout */
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 800px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30px;
  width: 2px;
  background: #DBEEFE;
  z-index: 0;
}

/* Einzelne Schritte */
.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  gap: 1rem;
  padding-left: 70px;
}
.circle {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: #399AF8;
  color: #ffffff;
  font-weight: bold;
  border-radius: 50%;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(57,154,248,0.5);
  transition: box-shadow 0.3s ease;
}
.circle.aos-animate {
  animation: pulseGlow 1s ease-out forwards;
}

.timeline-step .content {
  background: #ffffff;
  padding: 1.2rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(28,69,135,0.08);
  width: 100%;
}
.timeline-step h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #1C4587;
}
.timeline-step p {
  font-size: 1.05rem;
  color: #1C4587;
  margin: 0;
}

/* Pulsanimation */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(57,154,248,0.5);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(57,154,248,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(57,154,248,0);
  }
}

/* FAQ Bereich */
.faq-section {
  background: linear-gradient(to right, #DBEEFE, #EFF8FF);
  padding: 6rem 1rem;
  text-align: center;
}

.faq-grid {
  max-width: 800px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(28,69,135,0.1);
  transition: box-shadow 0.3s ease;
}

.faq-item.open {
  box-shadow: 0 6px 18px rgba(28,69,135,0.15);
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 1.5rem 1rem;
  font-size: 1.2rem;
  font-weight: bold;
  color: #1C4587;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question i {
  font-size: 1.2rem;
  color: #399AF8;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: #F9FBFF;
  padding: 0 1rem;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 1rem;
}


/* CTA Section */
.cta-section {
  background: linear-gradient(to right, #399AF8, #2A7BC8);
  color: #ffffff;
  padding: 6rem 1rem;
  text-align: center;
}
.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.btn-primary {
  background: #ffffff;
  color: #399AF8;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}
.btn-primary:hover {
  background: #DBEEFE;
  color: #2A7BC8;
}


/* Hero IT-Consulting neu */
.hero-consulting {
  background: linear-gradient(to bottom right, #2A7BC8, #399AF8);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #ffffff;
  padding: 8rem 1rem 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Optional: zusätzliche dekorative Halbkreise */
.hero-consulting::before,
.hero-consulting::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  z-index: 0;
}
.hero-consulting::before {
  top: -100px;
  left: -100px;
}
.hero-consulting::after {
  bottom: -100px;
  right: -100px;
}

.hero-consulting .container {
  position: relative;
  z-index: 1;
}

.hero-consulting h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-consulting p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  color: #e6f0ff;
}


/* Carousel Section angepasst */
.carousel-section {
  background: #ffffff;
  padding: 6rem 1rem;
  text-align: center;
}
.carousel-section .swiper-container {
  max-width: 1000px;
  margin: 2rem auto 0;
}
.carousel-section img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 6px 18px rgba(28,69,135,0.15);
  transition: transform 0.3s ease;
}
.carousel-section img:hover {
  transform: scale(1.02);
}
.swiper-slide {
  background: none;
}

.design-options-section {
  padding: 6rem 1rem;
  background: #F9FBFF;
  text-align: center;
}
.design-options-section h2 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
}
.design-interaction {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.options-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.options-list button {
  background: #ffffff;
  border: 2px solid #399AF8;
  color: #399AF8;
  border-radius: 50px;
  padding: 0.6rem 1.4rem;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.options-list button:hover {
  background: #399AF8;
  color: #fff;
}
.options-description p {
  font-size: 1.1rem;
  color: #1C4587;
  max-width: 600px;
  margin: 0 auto;
  transition: opacity 0.3s ease;
}

.explain-section {
  padding: 6rem 1rem;
  background: #F9FBFF;
}
.explain-wrapper {
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.explain-text {
  flex: 1 1 45%;
}
.explain-text h2 {
  font-size: 2.2rem;
  color: #1C4587;
  margin-bottom: 1rem;
}
.explain-text p {
  font-size: 1.1rem;
  color: #1C4587;
}

.explain-image {
  flex: 1 1 45%;
  position: relative;
  cursor: pointer;
  border-radius: 1rem;
  overflow: hidden;
}
.explain-image img {
  width: 100%;
  display: block;
  border-radius: 1rem;
  transition: filter 0.4s ease;
}
.explain-image .plus-sign {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #399AF8;
  color: white;
  font-size: 1.5rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.explain-image .overlay-text {
  position: absolute;
  inset: 0;
  background: rgba(28,69,135,0.9);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.explain-image.active img {
  filter: blur(4px) brightness(0.6);
}
.explain-image.active .overlay-text {
  opacity: 1;
  pointer-events: auto;
}
.close-overlay {
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
}

/* Mobile: Stack untereinander */
@media (max-width: 768px) {
  .explain-wrapper {
    flex-direction: column;
  }
  .explain-text, .explain-image {
    flex: 1 1 100%;
  }
}

/* Layout für explain-wrapper */
.explain-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.explain-text, .explain-image {
  flex: 1 1 45%;
}

/* Standard: Bild rechts, Text links */
.explain-wrapper {
  flex-direction: row;
}

/* Mit .reverse-Klasse: Bild links, Text rechts */
.explain-wrapper.reverse {
  flex-direction: row-reverse;
}

/* Responsiv: auf kleinen Bildschirmen übereinander */
@media (max-width: 768px) {
  .explain-wrapper,
  .explain-wrapper.reverse {
    flex-direction: column;
  }
}

.stats-section {
  background: #DBEEFE;
  padding: 4rem 1.5rem;
  text-align: center;
}

.stats-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #1C4587;
}

.stats-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stats-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(28, 69, 135, 0.1);
  transition: transform 0.3s;
}

.stats-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(28, 69, 135, 0.15);
}

.stats-card i {
  font-size: 2rem;
  color: #399AF8;
  margin-bottom: 1rem;
}

.stats-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1C4587;
  margin-bottom: 0.5rem;
}



