body, html {
    margin: 0;
    padding: 0;
    width: 100%; /* statt 100vw */
    min-height: 100vh;
    font-family: "Satoshi", Arial, sans-serif;
    color: #111827;
    background-color: #e0f7fa;
}

html {
    box-sizing: border-box;
    overflow-x: hidden;
    scroll-behavior: smooth;

}

@font-face {
  font-family: "Satoshi"; /* Name für die Nutzung in CSS */
  src: url("/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Light.woff2") format("woff2"),
       url("/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Light.woff") format("woff");
  font-weight: 300;      /* optional: normal, bold etc. */
  font-style: normal;       /* optional: normal, italic etc. */
}

@font-face {
  font-family: "Satoshi"; /* Name für die Nutzung in CSS */
  src: url("/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Regular.woff2") format("woff2"),
       url("/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Regular.woff") format("woff");
  font-weight: 400;      /* optional: normal, bold etc. */
  font-style: normal;       /* optional: normal, italic etc. */
}

@font-face {
  font-family: "Satoshi"; /* Name für die Nutzung in CSS */
  src: url("/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Bold.woff2") format("woff2"),
       url("/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Bold.woff") format("woff");
  font-weight: 700;      /* optional: normal, bold etc. */
  font-style: normal;       /* optional: normal, italic etc. */
}



h1 {
  font-weight: 700; /* Bold */
}


*, *::before, *::after {
    box-sizing: inherit;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 24px;
    background: rgba(255,255,255,0.88);
    position: fixed;
    width: 60%;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    border-radius: 32px 48px 36px 40px / 40px 32px 48px 36px;
    box-shadow: 0 8px 32px rgba(96,165,250,0.18), 0 1.5px 6px rgba(0,0,0,0.08);
    border: 2px solid #b3e5fc;
    backdrop-filter: blur(2px);
}

.logo {
    padding: 0px 0px;
    height: 80px;
    display: inline-block;
}

nav {
    margin-left: auto;
    text-decoration: none !important;
}

nav ul {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    margin-right: 50px;
    padding: 0;
    text-decoration: none !important;
}

nav a {
    color: #222;
    font-weight: 800;
    font-size: 1rem;
    transition: transform 0.15s, color 0.2s;
    display: inline-block;
    text-decoration: none !important;
}

nav a:hover {
    color: #60a5fa;
}

nav a:active {
    transform: scale(1.15);
}

.hero {
    position: relative;
    width: 100%; /* statt 100vw */
    height: 100vh;
    background: #60A5FA;
}

#iceCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* statt 100vw */
    height: 100vh;
    display: block;
    z-index: 0;
}

#iceBottom {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%; /* statt 100vw */
    height: 220px; /* Höher, damit die Zacke weiter nach oben ragen */
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #111827;
    text-align: center;
    padding: 20px 24px;
    border-radius: 12px;
    top: 45vh;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 10px;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}
.hero-content p {
    font-size: 2rem;
    font-weight: 500;
}

.hero-content button {
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 12px 16px;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.3s;
}

.hero-content button a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    background: #007bff;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s;
}

.btn:hover {
    background: #0056b3;
}



.features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
    padding: 64px 32px;
}

.feature {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    color: #007bff;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.feature p {
    font-size: 1rem;
    color: #666;
}

.cta {
    text-align: center;
    padding: 64px 32px;
    background: #f8f9fa;
    border-radius: 12px;
    margin: 32px 0;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.cta p {
    font-size: 1.125rem;
    margin-bottom: 24px;
}

footer {
    background: #222;
    color: #fff;
    padding: 32px 0;
    text-align: center;
}

footer a {
    color: #007bff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.Vorstellung {
    margin-top: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    
}

.Vorstellung-text {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 80%;
    gap: 70px;
}

.Vorstellung-text1 {
    width: 27%
}

.Vorstellung-text2 {
    width: 50%;
    padding: 12px 32px;
    background: rgba(255,255,255,0.88) !important;
    backdrop-filter: blur(2px);
    border-radius: 24px;
    box-shadow: 0 1.5px 6px rgba(0,0,0,0.08);
    color: #222 !important;
    font-size: 1.25rem;
    font-weight: 400; /* oder 400, 300 je nach gewünschtem Gewicht */
    border: 2px solid #b3e5fc !important;
}

.Vorstellung-text2:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.35), 0 1.5px 6px rgba(0,0,0,0.2);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 32px;
    padding-right: 32px;
    box-sizing: border-box;
}

.container-text {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 32px;
    padding-right: 32px;
    box-sizing: border-box;
}

.text-block {
    display: flex;
}

.text-block-icon1 {
    height: 50px;
    margin-right: -10px;
    margin-top: 18px;
    }

.text-block-icon2 {
    height: 50px;
    margin-right: -8px;
    margin-top: 18px;
    }
    
.text-block-icon3 {
    height: 50px;
    margin-right: 2px;
    margin-top: 18px;
    }

.text-block-icon4 {
    height: 50px;
    margin-right: -8px;
    margin-top: 14px;
    }

.text-buttons-full {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px; /* Abstand zwischen Animation und Text */
}

.text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 600px; /* optional: Textblock begrenzen */
}

.text-content h1 {
    text-align: left;
    width: 100%;
}

.text-buttons-flex{
    margin-top: 100px; /* Platz für den fixierten Header */
    margin-bottom: 150px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    justify-items: stretch;
    align-items: stretch;
}

.text-buttons-flex > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
}

.text-buttons-flex > div button,
.button-row button {
    display: inline-block;
    background-color: #60A5FA;
    border-radius: 20px;
    border-style: none;
    color: white;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 16px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.15s;
}

.text-buttons-flex > div button:active,
.button-row button:active {
    transform: scale(1.08); /* Button wird beim Klick leicht größer */
}

.text-buttons-flex > div button:last-child {
    margin-right: 0;
}

.button-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.Dienstleistungen2 {
  width: 100%;
}

.dienstleistungen-row {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  justify-content: center;
  padding-top: 15px;
  padding-bottom: 200px;
}

.dienstleistungen-card {
  background: rgba(255,255,255,0.88) !important; /* dunkel und leicht durchsichtig */
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 1.5px 6px rgba(0,0,0,0.08);
  width: 350px;
  height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 16px;
  color: #222 !important;
  border: 2px solid #b3e5fc !important;
  backdrop-filter: blur(2px);
  transition: box-shadow 0.2s;
}

.dienstleistungen-card:first-child lottie-player {
  width: 90px !important;
  height: 120px !important;
  margin-bottom: 0 !important;
  margin-top: -15px !important;
}

.dienstleistungen-card:hover {
  box-shadow: 0 4px 24px rgba(96,165,250,0.18);
}

.dienstleistungen-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  margin: 0;
}

.dienstleistungen-card h2 {
  font-size: 1.15rem;
  margin: 0;
  font-weight: 600;
}

.dienstleistungen-card ul {
  text-align: left;
  padding-left: 30px;
  width: 300px;
 
}

.dienstleistungen-card {
  display: flex;
  flex-direction: column;
  align-items: center; /* sorgt für vertikale Zentrierung aller Inhalte */
  justify-content: flex-start;
  text-align: center;
}

.dienstleistungen-card lottie-player {
  margin-bottom: 12px;
  margin-top: 0px;
  display: block;
}

.dienstleistungen-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 32px;
  color: #000000; /* oder deine Wunschfarbe */
  letter-spacing: 1px;
  padding-top: 100px;
}

.ablauf-section {
  width: 100%;
  margin: 64px auto 0 auto;
  padding: 0 16px;
}

.ablauf-title {
  text-align: center;
  font-size: 3.0rem;
  font-weight: bold;
  margin-bottom: 50px;
  color: #e0f7fa; /* oder deine Wunschfarbe */
  letter-spacing: 1px;
}

.ablauf-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.ablauf-card {
  position: relative;
  background: rgba(255,255,255,0.88) !important;
  border: 2px solid #b3e5fc !important;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 1.5px 6px rgba(0,0,0,0.08);
  color: #222 !important;
  backdrop-filter: blur(2px);
  width: 220px;
  height: auto; 
  min-height: 320px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 32px 24px 24px 24px;
  font-size: 1rem;
  transition: box-shadow 0.2s;
}

.ablauf-card:hover {
  box-shadow: 0 12px 36px rgba(96,165,250,0.18);
}

.ablauf-num {
  position: absolute;
  top: 18px;
  left: 18px;
  background: #60a5fa;
  color: #fff;
  font-weight: bold;
  font-size: 1.3rem;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.ablauf-card h3 {
  margin-top: 48px;
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.ablauf-card p {
  margin: 0;
  font-size: 1rem;
  opacity: 0.9;
}

.ablauf-versetzt {
  margin-top: 48px; /* Versetzt die Card nach unten */
}

@media (max-width: 600px) {
    
  .ablauf-section {
    width: 100vw !important;
    left: 0 !important;
    transform: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 !important;
    overflow-x: hidden !important;
  }

  .ablauf-row {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 18px !important;
    padding-bottom: 24px !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
    width: 100vw !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }

  .ablauf-card {
    min-width: 65vw !important;
    max-width: 65vw !important;
    scroll-snap-align: center !important;
    margin-right: 0 !important;
    height: auto !important;
  }

  .ablauf-row::-webkit-scrollbar {
    display: none !important; /* Chrome, Safari, Edge */
    width: 0 !important;
    background: transparent !important;
  }

  
    .ablauf-card h3 {
    margin-top: 28px;
    font-size: 1rem;
  }

  .ablauf-arrow {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #60a5fa;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
  }
  .ablauf-arrow-left {
    left: 8px;
  }
  .ablauf-arrow-right {
    right: 8px;
  }
}

/* Pfeile nur auf Handy anzeigen */
@media (min-width: 601px) {
  .ablauf-arrow {
    display: none !important;
  }
}


@media (max-width: 900px) {
  .ablauf-row {
    gap: 24px;
  }
  .ablauf-card {
    width: 48vw;
    height: 220px;
    font-size: 0.95rem;
    padding: 24px 12px 16px 12px;
  }
  .ablauf-card h3 {
    margin-top: 36px;
    font-size: 1rem;
  }
  .ablauf-num {
    top: 12px;
    left: 12px;
    width: 28px;
    height: 28px;
    font-size: 1.1rem;
  }
  .ablauf-versetzt {
    margin-top: 24px;
  }
}

@media (max-width: 600px) {
  
  


  .ablauf-num {
    top: 8px;
    left: 8px;
    width: 36px !important;
    height: 36px !important;
    font-size: 1.5rem !important;
  }
  .ablauf-versetzt {
    margin-top: 12px;
  }
}


.river-section {
    width: 100%;
    height: 260px;
    position: relative;
    background: linear-gradient(90deg, #60A5FA 70%, #3B82F6 100%);
    overflow: hidden;
    z-index: 1;
}

#iceRiver {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 260px;
    display: block;
    background: transparent;
    z-index: 2;
}

#iceRiverTop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 3;
    pointer-events: none;
}

#iceRiverBottom {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 3;
    pointer-events: none;
}

.Garantien {
    width: 100%;
    max-width: none; /* Container ist jetzt ganz breit */
    margin: 0;
    padding-left: 0;
    padding-right: 0;
    padding-top: 150px;
    box-sizing: border-box;
}

.Garantien > div {
    width: 100%;           /* Card nutzt volle Breite */
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    border-radius: 24px;
    background: rgba(255,255,255,0.88) !important;
    backdrop-filter: blur(8px);
    box-shadow: 0 1.5px 6px rgba(0,0,0,0.08);
    padding: 10px 20px;
    margin-bottom: 18px;
    text-align: center;
    color: #222 !important;
    border: 2px solid #b3e5fc !important;
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.Garantien h1 {
    text-align: center;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 18px; /* Etwas mehr Abstand zur Card */
}

.Garantien h2 {
    text-align: center;
    width: 100%;
    margin-top: 0px;
    margin-bottom: 0px; /* Etwas mehr Abstand zur Card */
}

.Garantien > p {
    font-weight: 600;      /* Dickere Schrift */
    margin-top: 0;
    margin-bottom: 32px;
    text-align: center;
}

.Garantien > div:last-child {
    margin-bottom: 0;
}

.formular-titel {
    width: 100%;
    text-align: center;
    margin-bottom: 0px;
    margin-top: 180px
}

.Formularbereich {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 48px;
    margin-top: 40px;
    flex-wrap: nowrap; /* verhindert das Untereinander-Rutschen */
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.Formularbereich .contact-form p {
    font-size: 0.85rem;
    color: #222 !important;
    margin-top: 12px;
    
}



.contact-form {
    background: rgba(255,255,255,0.88) !important;
    backdrop-filter: blur(8px);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28), 0 4px 16px rgba(0,0,0,0.18) !important;
    color: #222 !important;
    padding: 32px 28px;
    max-width: 550px;      /* gleiche max-width wie das iframe */
    width: 100%;
    min-width: 550px;      /* gleiche min-width wie das iframe */
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    box-sizing: border-box;
    height: 600px;         /* gleiche Höhe wie das iframe */
}



  



.contact-form input,
.contact-form textarea {
    width: 100%;
    background: rgba(255,255,255,0.88) !important;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #b3e0f2;
    font-size: 1rem;
    margin-bottom: 8px;
    box-sizing: border-box;
    color: #222 !important;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #222 !important;
}

.contact-form button {
    background-color: #60A5FA;
    border-radius: 20px;
    border-style: none;
    color: white;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 16px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.15s;
    margin-top: 12px;
    display: inline-block;
}

.contact-form button:active {
    transform: scale(1.08);
}

.contact-message-field {
    width: 100%;
    min-height: 120px;
    background: #e0e0e0;
    border-radius: 12px;
    border: 1px solid #b3e0f2;
    font-size: 1rem;
    color: #666;
    padding: 16px;
    margin-bottom: 8px;;
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    
}


.main-footer {
    background: #60A5FA;
    color: #fff;
    padding: 45x 32px 32px 32px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 0;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 160px;
}

.footer-logo-col {
    align-items: flex-start;
    gap: 2px;
    margin-left: 20px;
}

.footer-logo {
    width: 140px;
    height: auto;
    
}

.footer-follow {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-follow span {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-social {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    text-decoration: none;
    transition: background 0.2s;
}

.footer-social:hover {
    background: rgba(255,255,255,0.35);
}

.footer-links a,
.footer-legal a,
.footer-col.footer-Dienstleistungen a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: transform 0.2s, font-size 0.2s;
}

.footer-links a:hover,
.footer-legal a:hover,
.footer-col.footer-Dienstleistungen a:hover {
    transform: scale(1.15);
    text-decoration: none;
}

.footer-contact {
    gap: 8px;
    font-size: 1rem;
}



.footer-title {
    font-weight: 400;
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.footer-uebergang {
    display: block;
    width: 100%;
    height: 80px;
    margin-top: 130px;
    margin-bottom: -20px;
    padding: 0;
    object-fit: cover;
    rotate: 180deg;
}

.footer-col.footer-Dienstleistungen {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 160px;
    color: #fff;
}

.footer-col.footer-Dienstleistungen a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;

}



.footer-socials img {
    width: 32px;
    height: 32px;
    margin: 0 6px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    object-fit: cover;
}

/* Beispiel: Instagram-Icon */
.footer-socials a[title="Instagram"] img {
    
}

/* Beispiel: LinkedIn-Icon */
.footer-socials a[title="LinkedIn"] img {
    
}

/* Beispiel: TikTok-Icon */
.footer-socials a[title="TikTok"] img {
   
}

/* Beispiel: Facebook-Icon */
.footer-socials a[title="Facebook"] img {
    
}

/* Hover-Effekt für alle */
.footer-socials img:hover {
    transform: scale(1.15) rotate(-8deg);

}

.hero-small {
    width: 100%;
    min-height: 40vh;
    background: #60A5FA; /* Nur eine Farbe, kein Verlauf */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#heroSmallIceCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-small-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 32px;
}

#heroSmallIceBottom {
    display: block;
    width: 100%;
    height: 60px;
    position: relative;
    z-index: 2;
    pointer-events: none;
    margin-bottom: -4px; /* Optional: für nahtlosen Übergang */
}

.Überschrift-Ablauf {
    text-align: center;
    margin-top: 100px;
    margin-bottom: 50px;
}

.QandA {
    max-width: 1200px;
    margin: 20px auto;
    margin-bottom: 200px;
    padding: 0 16px;
}

.accordion-item {
    margin-bottom: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.88) !important;
    backdrop-filter: blur(2px);
    border: 2px solid #b3e5fc !important;
    overflow: hidden;
}

.accordion-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-size: 1.15rem;
    font-weight: 700;
    color: #222 !important;
    padding: 22px 28px;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s;
    border-radius: 18px;
}

.accordion-question:hover {
    
}

.accordion-answer {
    max-height: 0;
    overflow: hidden;
    background: rgba(255,255,255,0.88) !important;
    color: #222 !important;
    font-size: 1rem;
    padding: 0 28px;
    transition: max-height 0.35s cubic-bezier(.4,0,.2,1), padding 0.2s;
}

.accordion-item.active .accordion-answer {
    max-height: 300px;
    padding: 18px 28px;
}



.timeline {
  position: relative;
  width: 100%;   /* Container behält volle Breite */
}

/* zentrale Linie */
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;                  /* mittig */
  transform: translateX(-50%);
  width: 3px;
  background: #333;
  z-index: 0;                 /* unter Events */
}

/* Punkt am Anfang */
.timeline::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: #333;
  border-radius: 50%;
  z-index: 1;                 /* über der Linie */
}

/* Punkt am Ende */
.timeline-end {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: #333;
  border-radius: 50%;
  z-index: 1;
}
/* Startpunkt */
.start {
  text-align: center;
  font-weight: bold;
  margin-bottom: 40px;
}

/* Endpunkt */
.end {
  text-align: center;
  font-weight: bold;
  margin-top: 40px;
}

/* Events */
.event {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  box-sizing: border-box;
}

/* Linie vom Strich zur Box */
.event::before {
  content: "";
  position: absolute;
  top: 50px;
  width: 60px;
  height: 3px;
  background: #333;
}

/* Linke Boxen */
.event.left {
  left: 0;
  display: flex;
;
  justify-content: flex-start;
  text-align: right;
  padding-right: 90px;
}
.event.left::before {
  right: 0;
}

/* Rechte Boxen */
.event.right {
  left: 50%;
    text-align: left;
    padding-left: 90px;;
}
.event.right::before {
  left: 0;
}

/* Box-Design */
.content {
  max-width: 400px;     /* begrenzt die Textbox */
  padding: 0px 20px;   /* Innenabstand */
  border-radius: 10px;  /* runde Ecken */
}

.event.left > .content h1 {
    padding: 0;
}

.event.left .content {
  margin-left: auto;    /* schiebt Box an die Linie */
}

.event.right .content {
  margin-right: auto;   /* schiebt Box an die Linie */
}

.start {
  text-align: center;
  margin-top: 100px;
  margin-bottom: 50px;
  font-size: 1.5rem;
    font-weight: 900;
}

.end-text-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.end-text {
    text-align: center;
    margin-top: 0px;
    margin-bottom: 20px;
    font-size: 1rem;
    font-weight: 700;

}

.end-text p {
    font-size: 1rem;
    font-weight: 500;
    width: 300px;
    margin-top: 40px
}

.Frage_Antworten {
   display: flex;
   justify-content: center;
   align-items: center;
   margin-top: 150px;
   margin-bottom: 0px;
}

.kontakt-container{
    margin-top: 150px
}

.number {
    padding-left: 50px;
}

.E-mail {
    padding-left: 62px;
}

.kontakt-form { 
    margin-top: 70px;
    margin-bottom: 100px
}

.individuelle_Webentwicklung_überschrift {
    text-align: center;
    margin-top: 100px;
    margin-bottom: 50px;
    font-size: 1.5rem;
    font-weight: 700;
}

.indi_text {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(55, 71, 79, 0.7); /* leicht durchsichtig */
    backdrop-filter: blur(8px);
    border-radius: 24px;
    box-shadow: 0 1.5px 6px rgba(0,0,0,0.08);
    padding: 12px 32px;
    margin-top: 100px;
    gap:100px;
    margin-bottom: 100px;
    font-size: 1.25rem;
    font-weight: 400; /* oder 400, 300 je nach gewünschtem Gewicht */
    border: 1px solid rgba(255,255,255,0.1);
    color: #ffffff;
}


.vorteile-card {
    background: rgba(55, 71, 79, 0.7); /* leicht durchsichtig */
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 1.5px 6px rgba(0,0,0,0.08);
    padding: 0px 48px;
    max-width: 1200px;
    margin: 0 auto;
    color: #ffffff;
    border: 1px solid #e0e0e0;
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    justify-content: center;
    box-sizing: border-box;
}

.vorteile-card h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    margin-top: 40px;
    color: #ffffff;
}

.vorteile-card h4 {
    font-size: 1.rem;
    font-weight: 500;
    margin-bottom: 16px;
    color: #ffffff;
}

.vorteile-card p {
    font-size: 1rem;
    color: #ffffff;
    margin: 0;
    padding-left: 20px;
}

.Vorteil-subheadline {
    font-size: 1.5rem;
    font-weight: 900;
    padding-left: 0px;
}

.vorteile-list {
    padding: 0;
    margin: 0 0 40px 0;
    display: flex;
    flex-direction: column;
}

.Vorteile {
    margin-bottom: 70px
}



.Paket-card {
    background: rgba(55, 71, 79, 0.7); /* leicht durchsichtig */
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 1.5px 6px rgba(0,0,0,0.08);
    padding: 0px 48px 20px 48px;
    max-width: 1200px;
    margin: 0 auto;
    color: #ffffff;
    border: 1px solid #e0e0e0;
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    justify-content: center;
    box-sizing: border-box;
}

.Paket-list {
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
}

.Paket-list span {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.Paket {
    margin-bottom: 10px
}

.Paket-card h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0px;
    margin-top: 20px;
    color: #ffffff;
}

.Paket-card h3 {
    margin: 0;
}

.Paket-card p {
    font-size: 1rem;
    color: #ffffff;
    margin: 0;
    padding-left: 20px;
}

.Impressum {
    margin-top: 150px;
    margin-bottom: 150px;
    width: 100%;
    
}

.Datenschutz {
    margin-top: 150px;
    margin-bottom: 150px;
    width: 100%;
}


.ablauf-top, .ablauf-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  height: 80px;
  pointer-events: none;
  z-index: 1;
}

.ablauf-top {
  top: 0;
}

.ablauf-bottom {
  bottom: 0;
}

.ablauf-title, .ablauf-row {
  position: relative;
  z-index: 2;
}

.ablauf-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;         /* verhindert Umbruch */
  gap: 32px;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  overflow-x: visible;       /* kein Scrollen */
}

.ablauf-section {
  position: relative;
  background: #60a5fa;
  overflow: hidden;
  width: 100vw;
  padding-bottom: 60px;
  padding-top: 20px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}

.ablauf-uebergang {
  display: block;
  width: 100%;
  height: 80px;
  margin-top: -20px;
  margin-bottom: 0px;
  padding: 0;
  object-fit: cover;
  rotate: 180deg;
}

.ablauf-uebergang2 {
  display: block;
    width: 100%;
    height: 80px;
    margin-top: 0px;
    margin-bottom: -20px;
    padding: 0;
    object-fit: cover;
}


@media (max-width: 900px) {
  header {
    width: 98vw;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 8px;
    border-radius: 24px;
    top: 8px;
  }
  .logo {
    height: 48px;
  }
  nav ul {
    gap: 18px;
    font-size: 1rem;
    margin-right: 0;
    flex-wrap: wrap;
  }
  .hero-content {
    max-width: 96vw;
    padding: 18px 8px;
    font-size: 2rem;
  }
  .hero-content h1 {
    font-size: 3rem;
  }
  .hero-content h2 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1.2rem;
  }
  .features {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 32px 8px;
  }
  .Vorstellung-text {
    flex-direction: column;
    gap: 24px;
    width: 100%;
    padding: 0 8px;
  }
  .Vorstellung-text1,
  .Vorstellung-text2 {
    width: 100%;
    padding: 12px 8px;
  }
  .container,
  .container-text {
    max-width: 100vw;
    padding-left: 12px;
    padding-right: 12px;
  }
  .text-buttons-flex {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
  }
  .text-buttons-full {
    flex-direction: column;
    gap: 18px;
    width: 100%;
  }
  .text-block {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .text-content {
    max-width: 96vw;
    padding: 0 8px;
  }
  .button-row {
    flex-wrap: wrap;
    gap: 10px;
  }

  .text-content button,
  .text-content .btn {
    margin-top: 6px !important;
    margin-bottom: 6px !important;
    display: block;
  }
  .button-row {
    gap: 12px !important;
  }

   .Vorstellung-text {
    align-items: center !important;
    text-align: center !important;
  }
  .Vorstellung-text1,
  .Vorstellung-text2 {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .Dienstleistungen {
    margin-top: 40px;
    margin-bottom: 40px;
    gap: 18px;
  }
  .individuelle-Webentwicklung,
  .WordPress-Website,
  .Shopify-Shops {
    flex-direction: column;
    width: 100%;
    padding: 18px 8px;
    align-items: center;
  }
  .individuelle-Webentwicklung-img,
  .WordPress-Website-bgimg,
  .Shopify-Shops-bgimg {
    width: 100px;
    height: 100px;
    margin-bottom: 12px;
  }
  .Garantien > div {
    padding: 10px 8px;
  }
  .Formularbereich {
    flex-direction: column;
    gap: 18px;
    max-width: 100vw;
    align-items: center;
  }
  .contact-form,
  .Formularbereich iframe {
    width: 96vw;
    max-width: 96vw;
    min-width: 0;
    height: auto;
    margin-bottom: 18px;
    padding: 12px 8px;
  }
  .main-footer {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 24px 8px;
    text-align: center;
  }
  .footer-col {
    width: 100%;
    min-width: 0;
    margin-bottom: 18px;
   
    gap: 10px;
    align-items: center !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  .footer-socials {
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
  }
  .footer-socials img {
    width: 24px;
    height: 24px;
  }

  .footer-logo {
    width: 140px !important; /* vorher 70px, jetzt 100% größer */
    margin: 0 auto;
    display: block;
  }

  .individuelle-Webentwicklung-img {
    display: none !important;
  }

  .individuelle-Webentwicklung-img {
    display: none !important;
  }

  .individuelle-Webentwicklung h1 {
    margin: 0 auto;
    text-align: center;
  }

  .text-block {
    flex-direction: column;
    align-items: center !important;
    text-align: center !important;
    margin-bottom: 40px;
  }

  .text-block h1,
  .text-block h2,
  .text-block h3,
  .text-block p,
  .text-block button,
  .text-block .btn,
  .text-block .button-row {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block;
  }
}

@media (max-width: 600px) {
  header {
    width: 100vw !important;
    left: 0 !important;
    transform: none !important;
    border-radius: 0 !important;
    top: 0 !important;
    position: fixed !important;
    padding: 0 12px !important;
    z-index: 1000 !important;
  }
 
  .logo {
    height: 56px;
    margin-left: 0;
    margin-right: 0;
  }
  nav ul {
    display: none;
  }

   .hamburger {
    position: fixed;
    top: 6px;
    right: 18px;
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
    background: transparent; /* Hintergrund transparent */
    border-radius: 24px;
    box-shadow: none;
    border: none;
  }
}

  .hamburger span {
  display: block;
  width: 34px;
  height: 4px;
  background: #60a5fa;
  margin: 5px 0;
  transition: 0.3s;
}

  /* Menü Overlay */
nav.mobile-open ul {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 58px;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.88);
    text-align: center;
    z-index: 9999;
    padding: 24px 0 16px 0;
    box-shadow: 0 8px 32px rgba(96,165,250,0.18);
    animation: fadeInMenu 0.3s;
}

  @keyframes fadeInMenu {
    from { opacity: 0; transform: translateY(-20px);}
    to { opacity: 1; transform: translateY(0);}
  }
  nav.mobile-open ul li {
    margin: 12px 0;
    color: #222;
  }
  nav.mobile-open ul li a {
    color: #000000;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
  }
  nav.mobile-open ul li a:hover {
    color: #000000;
  }


@media (max-width: 600px) {
  .individuelle-Webentwicklung-img {
    display: none;
  }
  .individuelle-Webentwicklung-content {
    align-items: center;
    text-align: center;
  }
  .individuelle-Webentwicklung {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 8px;
  }
}

@media (max-width: 600px) {
  .text-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    text-align: left;
    margin-bottom: 20px;
  }
 
  .text-block .text-content {
    flex: 1;
    text-align: left;
    width: 100%;
  }

  .text-block lottie-player {
    display: none !important;
  }

  .Vorstellung-text2{
    margin-bottom: 30px;
  }

  .individuelle-Webentwicklung{
    margin-top: 50px;;
  }
}

@media (max-width: 600px) {
  .river-section {
    margin-top: 0px !important;
    height: 250px !important; /* Optional: Fluss etwas niedriger auf Handy */
  }
}

@media (max-width: 600px) {
  .dienstleistung-row {
    flex-direction: column;
    gap: 18px;
    width: 100%;
    align-items: center;
  }
  .WordPress-Website,
  .Shopify-Shops {
    width: 100%;
    padding: 8px 2px;
    margin-bottom: 0;
    border-radius: 24px;
    background: rgba(55, 71, 79, 0.7);
    box-shadow: 0 1.5px 6px rgba(0,0,0,0.08);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
  }
  .WordPress-Website-bgimg,
  .Shopify-Shops-bgimg {
    display: none;
  }

  .Garantien {
    display: none !important;
  }
}

@media (max-width: 600px) {
  .main-footer {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 18px 8px;
    text-align: center;
  }
  .footer-logo {
    width: 120px; /* 50% größer als vorher */
    margin: 0 auto 8px auto;
    display: block;
  }
  .footer-logo-col {
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-left: 0;
  }
  .footer-follow {
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .footer-follow span {
    margin-bottom: 4px;
    display: block;
    text-align: center;
  }
  .footer-socials {
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 0;
    margin-bottom: 8px;
    width: 100%;
  }
  .footer-socials img {
    width: 28px;
    height: 28px;
    margin: 0 4px;
  }
  .footer-col {
    width: 100%;
    min-width: 0;
    margin-bottom: 8px;
    align-items: center;
    text-align: center;
    gap: 8px;
  }
  .footer-col.footer-Dienstleistungen {
    gap: 8px; /* Weniger Abstand, wie die anderen Spalten */
  }
  .footer-links,
  .footer-legal,
  .footer-col.footer-Dienstleistungen {
    width: 100%;
    text-align: center;
    margin-bottom: 8px;
  }
  .footer-col.footer-Dienstleistungen a,
  .footer-legal a {
    display: block;
    margin: 4px 0;
    font-size: 1rem;
  }
  .footer-legal {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 8px;
  }
  .footer-legal a {
    color: #fff;
    font-size: 1rem;
    display: block;
    margin: 4px 0;
    font-weight: 500;
  }
}

@media (max-width: 600px) {
  .main-footer {
    padding-bottom: 48px !important; /* Mehr Platz unten */
  }
  .footer-legal {
    margin-bottom: 0;
    padding-bottom: 16px; /* Extra Abstand zum unteren Rand */
  }
}

@media (max-width: 600px) {
  .text-buttons-flex {
    margin-bottom: 40px !important;
  }
}

@media (max-width: 600px) {
  .individuelle-Webentwicklung p {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (max-width: 600px) {
  .Formularbereich {
    margin-top: 0px !important;
  }
  .Garantien {
    margin-top: 0 !important;
  }

  .formular-titel {
    margin-top: 100px !important;
    margin-bottom: 0px !important;
  }
}

@media (max-width: 600px) {
  .hero-content {
    font-size: 1.3rem !important;
  }
  .hero-content h1 {
    font-size: 2.2rem !important;
  }
  .hero-content h2 {
    font-size: 1.5rem !important;
  }
  .hero-content p {
    font-size: 1.1rem !important;
  }
}

@media (max-width: 600px) {
  nav ul {
    display: none;
  }

  .logo {
    height: 56px;
  }
   
    .indi_text {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      text-align: center;
    }
    .indi_text img {
      width: 64px;
      height: auto;
      margin-bottom: 8px;
    }
  
}

@media (max-width: 600px) {
  .ablauf-timeline {
    padding: 0 4px;
  }

  
  .ablauf-uebergang2 {
    margin-top: -5px;
  }

  .timeline {
    width: 100vw;
    padding: 12px 0;
    position: relative;
  }
  .event,
  .event.left,
  .event.right {
    width: 100vw;
    left: 0 !important;
    right: 0 !important;
    justify-content: center;
    padding: 8px 0;
    position: relative;
    margin: 0 auto 12px auto;
  }

  .event .content {
    margin: 0 auto;
    max-width: 96vw;
    padding: 12px 8px;
    background: rgba(255,255,255,0.95);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  }

  .timeline::before,
  .timeline::after,
  .timeline-end {
    display: none !important; /* Strich ausblenden */
  }
  .start, .end {
    left: 0 !important;
    width: 100vw;
    text-align: center;
    margin-bottom: 8px;
  }
  .end-text-container {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0 8px;
  }
  .end-text {
    max-width: 96vw;
    margin: 0 auto;
    padding: 12px 8px;
    background: rgba(255,255,255,0.95);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  }
}

@media (max-width: 600px) {
  .event.left::before,
  .event.right::before {
    display: none !important;
  }

  .hero, #iceCanvas {
    height: 100svh !important; /* statt 100vh, verhindert das Neuladen beim Scrollen */
  }
}

@media (max-width: 900px) {
  .hero, #iceCanvas {
    height: 100svh !important; /* statt 100vh, verhindert das Neuladen beim Scrollen */
  }
}

.calendly-inline-widget,
.calendly-inline-widget iframe {
  width: 100% !important;
  min-width: 0 !important;
  height: 600px !important; /* Passe nach Bedarf an */
  min-height: 400px !important;
  max-width: 100vw;
  margin: 0 auto;
  display: block;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  padding: 0;  
}

@media (max-width: 600px) {
  .calendly-inline-widget,
  .calendly-inline-widget iframe {
    height: 600px !important; /* Passe nach Geschmack an */
    min-height: 320px !important;
    overflow: hidden !important;
    width: 100% !important;
  }

}


@media (max-width: 600px) {
  .contact-form {
    padding-left: 25px !important;
    padding-right: 25px !important;
    width: 100% !important;
    box-sizing: border-box;
  }
}

@media (max-width: 600px) {
  .footer-logo-col {
    align-items: flex-start !important;
    margin-left: 0 !important;
    width: 100%;
  }
  .footer-logo {
    margin-left: 107px !important;
    margin-right: auto !important;
    display: block;
  }
}


.footer-copyright {
  position: absolute;
  right: 24px;
  bottom: 12px;
  font-size: 0.95rem;
  color: #ffffff;
  opacity: 0.8;
  z-index: 2;
}

.main-footer {
  position: relative;
}

@media (max-width: 600px) {
  .footer-copyright {
    position: static !important;
    text-align: center !important;
    display: block;
    margin-top: 16px;
    margin-bottom: 2px;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .dienstleistungen-row {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }

 .dienstleistungen-card {
    width: 90vw;
    max-width: 400px;
    min-height: 340px; /* erhöhte Mindesthöhe für mehr Platz */
    height: auto;
    padding-bottom: 24px; /* optional, für mehr Abstand unten */
  }

  .text-content h1 {
    margin-top: 2px;
    margin-bottom: 4px;
  }

  .text-block-icon1{
    height: 80px !important;
    margin-bottom: -5px !important;
  }

  .text-block-icon2{
    height: 80px !important;
  }

  .text-block-icon3{
    height: 90px !important;
    margin-bottom: -10px !important;
  }

  .text-block-icon4{
    height: 80px !important;
  }

  
}


@media (min-width: 601px) {
  .hamburger {
    display: none !important;
  }
}


.text-block {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(.77,0,.18,1), transform 0.7s cubic-bezier(.77,0,.18,1);
}
.text-block.visible {
  opacity: 1;
  transform: translateY(0);
}