/* inter-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('/typo3conf/ext/pixelonpoint/Resources/Public/Fonts/inter-v20-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* inter-700 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    src: url('/typo3conf/ext/pixelonpoint/Resources/Public/Fonts/inter-v20-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }

/* poppins-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('/typo3conf/ext/pixelonpoint/Resources/Public/Fonts/poppins-v23-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* poppins-700 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: url('/typo3conf/ext/pixelonpoint/Resources/Public/Fonts/poppins-v23-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }

*{
    padding:0;
    margin: 0;
    box-sizing: border-box;
}

body{
    background-color: #222;
    color: #fff;
    font-family: 'Inter', Arial, sans-serif;
    position: relative;
    overflow-x: clip;
}



  h1, h2, h3, .headline {
    font-family: 'Poppins', 'Inter', sans-serif;
  }

  h1 {
    font-size: clamp(2rem, 4vw, 3rem);
  }
  
  h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
  }
  
  h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
  }

  .navigation {
    position: absolute;
    width: 5rem;
    height: 5rem;
    top: 2rem;
    right: 2%;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;

    .navigation__btn {
        width: 55px;
        height: 2px;
        background-color: #fff;
        margin-block-start: -2rem;
        position: relative;
        transition: all .3s;

        &::after {
            content: '';
            position: absolute;
            top: 10px; 
            left: 0;
            width: 45px;
            height: 2px;
            background-color: #fff;
            transition: all .3s;
        }

        &.active {
            background-color: transparent;

            &::after {
            top: 50%;
            left: 0;
            width: 55px;
            transform: translateY(-50%) rotate(45deg);
            margin-block-start: 1rem;
            }

            &::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            width: 55px;
            height: 2px;
            background-color: #fff;
            transform: translateY(-50%) rotate(-45deg);
            margin-block-start: 1rem;
            transition: all .3s;
            }
        }
    }

    .navigation__list {
        display: none;
        position: absolute;
        top: 7rem;
        right: -500%;
        height: 20rem;
        width: 20rem;
        list-style: none;
        transition: all .3s;
        padding: 30px;
        z-index: 10;

        li {
            margin-block-end: 1rem;
            a {
                color: #fff;
                text-decoration: none;
            }
        }
    }

    .navigation__list.active {
        right: 0;
        display: flex;
        flex-direction: column;
    }
}

.swiper {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #444;
    display: flex;
    justify-content: center;
    align-items: center;
    a{
        text-decoration: none;
        color: #fff;
    }
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }



  .heighlight{
      color: #7ED0EC;
  }
  .rocket{
      filter: brightness(0) saturate(100%) invert(77%) sepia(15%) saturate(1186%) hue-rotate(158deg) brightness(102%) contrast(85%); 
      height: 25rem;
  }
  .highlight{
      color: #7ED0EC;
  }
    .hero{
        height: 60vh;
  
        .hero__left{
            .subheadline{
                font-size: 2rem;
            }
            .headline{
                font-size: 4rem;
                margin-block: 2rem;
            }   
            .credo{
                font-size: 1.5rem;
            }

            .contact__block{
                
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: 1fr;
                grid-column-gap: 32px;
                grid-row-gap: 0px;

                .button__contact{
                    display: inline-flex;
                    justify-content: center;
                    align-items: center;
                    background-color: #7ED0EC;
                    padding: 7px 33px;
                    border-radius: 15px;
                    text-decoration: none;
                    color: #000;
                    transition: all .2s;
                    font-size: 1.3rem;
                    grid-area: 1 / 1 / 2 / 2; 
                }

                .button__tel{
                    position: relative;
                    display: inline-flex;               
                    align-items: center;
                    justify-content: center;
                    overflow: hidden;
                    padding: 10px 22px;
                    border-radius: 16px;
                    text-decoration: none;
                    color: #fff;
                    background: linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0.06));
                    backdrop-filter: blur(14px) saturate(140%);
                    -webkit-backdrop-filter: blur(14px) saturate(140%);
                    border: 1px solid rgba(255,255,255,0.22);
                    box-shadow:
                        0 8px 24px rgba(0,0,0,0.35),      
                        inset 0 1px 0 rgba(255,255,255,0.18),   
                        inset 0 -1px 0 rgba(0,0,0,0.18); 
                    transition: all .2s;
                    font-size: 1.3rem;
                    grid-area: 1 / 2 / 2 / 2;
                    width: fit-content;
                }

                .button__tel::before{
                    content:"";
                    position:absolute;
                    inset:-1px;
                    pointer-events:none;
                    background:
                        radial-gradient(60% 40% at 0% 0%, rgba(255,255,255,0.25), rgba(255,255,255,0) 60%),
                        linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0) 40%);
                    mix-blend-mode: screen;
                    opacity:.6;
                }

                .button:hover{
                    transform: translateY(-1px);
                    box-shadow:
                        0 12px 30px rgba(0,0,0,0.45),
                        inset 0 1px 0 rgba(255,255,255,0.22),
                        inset 0 -1px 0 rgba(0,0,0,0.20);
                }
                
            }
        }
        .hero__right{
            height: 100%;
            .block{
                .block__turkis{
                    background-color: #7ED0EC;
                    width: 10rem;
                    height: 10rem;
                    position: relative;
                    rotate: 45deg;
                
                    .block__black{
                        width: 10rem;
                        height: 10rem;
                        border: 2px solid #fff;
                        position: absolute;
                        top: 2rem;
                        left: -2rem;
                        transition: all .3s;
                    }
                }
            }
        }   
    }

    @media screen and (max-width: 476px) {
        .hero{
            .hero__left{
                width: 100%;
                .contact__block{
                    grid-column-gap: 5px;
                }
            }
            .hero__right{
                display: none !important;
            }
        }
    }
    @media screen and (max-width:767px){
        .hero{
            height: 60vh;

            .hero__left{
                margin-block-start: 3rem;
                width: 100% ;
            }

            .hero__right{
                display: none !important;
                .block{
                    .block__turkis{
                        height: 8rem;
                        width: 8rem;
                        .block__black{
                            height: 8rem;
                            width: 8rem;
                            top: -2rem;
                            left: 2rem;
                        }
                    }
                }
            }  
        }
    }



  .inside{
      margin-block: 5rem;
      display: grid;
      gap: 1.25rem;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      padding: 1rem 0;

      .inside__block{
          display: flex;
          justify-content: center;
          align-items: center;
          position: relative;
          overflow: hidden;
          padding: 1.25rem 1.5rem;
          border-radius: 20px;

          background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.06));
          backdrop-filter: blur(14px) saturate(140%);
          -webkit-backdrop-filter: blur(14px) saturate(140%);
          border: 1px solid rgba(255,255,255,0.22);
          box-shadow:
          0 10px 30px rgba(0,0,0,0.35),
          inset 0 1px 0 rgba(255,255,255,0.20),
          inset 0 -1px 0 rgba(0,0,0,0.18);
          --x: 40%;
          --y: 35%;
          transition: all .25s ease;
      }

      .inside__block::before{
          content:"";
          position:absolute;
          inset:-1px;
          pointer-events:none;
          background:
          radial-gradient(120% 60% at 0% 0%, rgba(255,255,255,0.25), rgba(255,255,255,0) 60%),
          linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0) 40%);
          mix-blend-mode:screen;
          opacity:.6;
      }

      .inside__block::after{
          content:"";
          position:absolute;
          inset:-20%;
          pointer-events:none;
          background:
          radial-gradient(40% 60% at var(--x) var(--y), rgba(255,255,255,0.18), transparent 60%),
          radial-gradient(35% 55% at calc(100% - var(--x)) calc(100% - var(--y)), rgba(255,255,255,0.14), transparent 60%);
          filter: blur(18px);
          opacity:.65;
          transition: opacity .3s ease;
      }

      .inside__block:hover{
          transform: translateY(-2px) scale(1.01);
          box-shadow:
          0 14px 38px rgba(0,0,0,0.45),
          inset 0 1px 0 rgba(255,255,255,0.22),
          inset 0 -1px 0 rgba(0,0,0,0.2);
      }
      .inside__block:hover::after{ opacity:.8; }

      .inside__block--without-border{
          display:flex;
          justify-content:center;
          align-items:center;
          border-radius:20px;
          border-color:transparent;
          background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
      }

      @supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))){
          .inside__block{ background: rgba(255,255,255,0.08); }
      }
  }

  @media screen and (max-width:476px){
    .inside{
        grid-template-columns: repeat(auto-fit,minmax(200px, 1fr));
    }
  }

  .slogan{
      margin-block: 5rem;
      .slogan__left{
          display: inline-flex;
      }
  }
  @media screen and (max-width:767px){
    .slogan{
        flex-direction: column;
        gap: 2rem;

        .slogan__left{
            width: 100%;
            .rocket{
                height: 20rem;
            }
        }
        .slogan__right{
            width: 100%;
        }
    }
  }

  .service{
      margin-block: 5rem;
      .service__headline{
          margin-block-end: 1.5rem;
      }
      .service__grid{
          display: grid;
          grid-template-columns: repeat(4,1fr);
          gap: 32px;

          .service__grid-item{
              overflow: hidden;
              position: relative;
              display: inline-flex;
              flex-direction: column;
              justify-content: center;
              align-items: center;
              gap: .5rem;
              padding-block: 15px;
              background: linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0.06));
              backdrop-filter: blur(14px) saturate(140%);
              -webkit-backdrop-filter: blur(14px) saturate(140%);
              border: 1px solid rgba(255,255,255,0.22);
              border-radius: 20px;
              box-shadow:
                  0 8px 24px rgba(0,0,0,0.35),      
                  inset 0 1px 0 rgba(255,255,255,0.18),   
                  inset 0 -1px 0 rgba(0,0,0,0.18); 
                  --x: 40%;
                  --y: 35%;
              transition: all .2s;

              .service__icon{
                  width: 7rem;
                  height: auto;
              }
              p{
                  margin: 0;
              }
          }

          .service__grid-item::before{
              content:"";
              position:absolute;
              inset:-1px;
              pointer-events:none;
              background:
              radial-gradient(120% 60% at 0% 0%, rgba(255,255,255,0.25), rgba(255,255,255,0) 60%),
              linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0) 40%);
              mix-blend-mode:screen;
              opacity:.6;
          }

          .service__grid-item::after{
              content:"";
              position:absolute;
              inset:-20%;
              pointer-events:none;
              background:
              radial-gradient(40% 60% at var(--x) var(--y), rgba(255,255,255,0.18), transparent 60%),
              radial-gradient(35% 55% at calc(100% - var(--x)) calc(100% - var(--y)), rgba(255,255,255,0.14), transparent 60%);
              filter: blur(18px);
              opacity:.65;
              transition: opacity .3s ease;
          }

          .service__grid-item:hover{
              transform: translateY(-1px);
              box-shadow:
                  0 12px 30px rgba(0,0,0,0.45),
                  inset 0 1px 0 rgba(255,255,255,0.22),
                  inset 0 -1px 0 rgba(0,0,0,0.20);
          }

      
      }
  }

  @media screen and (max-width:768px){
    .service{
        .service__grid{
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        }
    }
  }

  .team{
      margin-block: 5rem;
      .swiper{
        height: fit-content;
          .swiper-slide{
              height: 450px;
              position: relative;
              display: inline-flex;  
              flex-direction: column;             
              align-items: center;
              justify-content: center;
              overflow: hidden;
              background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.06));
              backdrop-filter: blur(14px) saturate(140%);
              -webkit-backdrop-filter: blur(14px) saturate(140%);
              border-block: 1px solid rgba(255,255,255,0.22);
          }
          .swiper-slide:first-of-type{
              border-top-left-radius: 20px;
              border-bottom-left-radius: 20px;
          }
          .swiper-slide:last-of-type{
              border-top-right-radius: 20px;
              border-bottom-right-radius: 20px;
          }
          .team__img{
              height: 350px;
              width: auto;
          }

          .swiper-buttons{
            position: relative;
            height: 6rem;
            width: 50%;
            margin: 0 auto;
            .swiper-button-next:after{
                color: #7ED0EC;
            }
            .swiper-button-prev:after{
                color: #7ED0EC;
            }
          }
      }
  }

.faq {

    details {
        border: 1px solid #ddd;
        border-radius: 8px;
        margin-bottom: 1rem;
        padding: 0.5rem 1rem;
        background: #222;
        transition: all 0.3s ease;
    }
  
  

  summary {
    list-style: none;  
    cursor: pointer;
    font-weight: 600;
    position: relative;
    padding-right: 1.5rem; 
  }
  
  /* Eigener Pfeil */
  summary::after {
    content: "›";        
    position: absolute;
    right: 0;
    font-size: 1.2rem;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
  }
  
 
  details[open] summary::after {
    transform: rotate(90deg); 
  }
  
 
  details p {
    margin: 0.5rem 0 0 0;
    line-height: 1.5;
    color: #fff;
    font-size: 0.95rem;
    animation: fadeIn 0.3s ease;
  }
  
  /* Sanftes Einblenden */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-3px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  
}

.contact{
    margin-block-start: 3rem;
    margin-block-end: -5rem;
    padding: 3rem;
    position: relative;
    width: 50vw;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0.06));
              backdrop-filter: blur(14px) saturate(140%);
              -webkit-backdrop-filter: blur(14px) saturate(140%);
              border: 1px solid rgba(255,255,255,0.22);
              border-top-right-radius: 20px;
              border-bottom-right-radius: 20px;
              box-shadow:
                  0 8px 24px rgba(0,0,0,0.35),      
                  inset 0 1px 0 rgba(255,255,255,0.18),   
                  inset 0 -1px 0 rgba(0,0,0,0.18); 
                  --x: 40%;
                  --y: 35%;
    .powermail_legend{
        display: none;
    }

    .powermail_fieldset{
        display: flex;
        flex-direction: column;
        .row{
            flex-direction: column;
            .powermail_fieldwrap{
                width: 100%;
                margin-block-end: 1rem;
            }
        }
        .btn{
            display: inline-flex;
            justify-content: center;
            align-items: center;
            background-color: #7ED0EC;
            padding: 7px 33px;
            border-radius: 15px;
            color: #000;
            font-size: 1.3rem;
            border: none;
            margin-block-start: 1rem;
        }
    }
}

.contact::before{
    content:"";
    position:absolute;
    inset:-1px;
    pointer-events:none;
    background:
    radial-gradient(120% 60% at 0% 0%, rgba(255,255,255,0.25), rgba(255,255,255,0) 60%),
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0) 40%);
    mix-blend-mode:screen;
    opacity:.6;
}

.contact::after{
    content:"";
    position:absolute;
    inset:-20%;
    pointer-events:none;
    background:
    radial-gradient(40% 60% at var(--x) var(--y), rgba(255,255,255,0.18), transparent 60%),
    radial-gradient(35% 55% at calc(100% - var(--x)) calc(100% - var(--y)), rgba(255,255,255,0.14), transparent 60%);
    filter: blur(18px);
    opacity:.65;
    transition: opacity .3s ease;
}

@media screen and (max-width:768px){
    .contact{
        margin-block: 3rem;
        width: 100%;
        border-radius: 20px;
    }
}

.footer{
    display: flex;
    justify-content: end;
    align-items: center;
    height: 5rem;
    border-block-start: 2px solid white;
    padding: 3rem;
    .footer-bottom{
        .legal-links{
            margin: 0;
            list-style: none;
            a{
                text-decoration: none;
                color: #fff;
            }
        }
    }
}

.WaaS{
    margin-block: 5rem;
}

.WaaS__options{
    margin-block: 5rem;

    .WaaS__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .WaaS__card {
        width: 100%;
        padding: 2rem;
        .price {
            font-size: 2rem;
            font-weight: 700;
            color: #7ED0EC;
            text-align: center;
            margin-top: auto;
            margin-bottom: 1rem;
        }
        .price::after {
            content: " / Monat";
            font-size: 0.9rem;
            font-weight: 400;
            color: #fff;
        }
    }
    .WaaS__card.popular {
        position: relative;
        box-shadow: 0 10px 25px rgba(126, 208, 236, 0.4);
        transform: scale(1.03);
        z-index: 1;
    }
}

.process{
    margin-block: 5rem;
}

.liquidlook{
    position: relative;
      overflow: hidden;
      padding: 1.25rem 1.5rem;
      border-radius: 20px;

      background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.06));
      backdrop-filter: blur(14px) saturate(140%);
      -webkit-backdrop-filter: blur(14px) saturate(140%);
      border: 1px solid rgba(255,255,255,0.22);
      box-shadow:
      0 10px 30px rgba(0,0,0,0.35),
      inset 0 1px 0 rgba(255,255,255,0.20),
      inset 0 -1px 0 rgba(0,0,0,0.18);
      --x: 40%;
      --y: 35%;
      transition: all .25s ease;
}

.liquidlook::before{
    content:"";
      position:absolute;
      inset:-1px;
      pointer-events:none;
      background:
      radial-gradient(120% 60% at 0% 0%, rgba(255,255,255,0.25), rgba(255,255,255,0) 60%),
      linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0) 40%);
      mix-blend-mode:screen;
      opacity:.6;
}
.liquidlook::after{
    content:"";
      position:absolute;
      inset:-20%;
      pointer-events:none;
      background:
      radial-gradient(40% 60% at var(--x) var(--y), rgba(255,255,255,0.18), transparent 60%),
      radial-gradient(35% 55% at calc(100% - var(--x)) calc(100% - var(--y)), rgba(255,255,255,0.14), transparent 60%);
      filter: blur(18px);
      opacity:.65;
      transition: opacity .3s ease;
}
