/* ==================================================
   RESET & VARIABLES
================================================== */

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

:root {
    --yellow: #ffb703;
    --white: #ffffff;
    --dark-overlay: rgba(0, 25, 18, 0.7);
}



/* =========================================
   GLOBAL SCALE SYSTEM
========================================= */

html {
  font-size: 16px; /* 16" */
}

@media (min-width: 1800px) {
  html {
    font-size: 18px; /* 27" */
  }
}

@media (min-width: 2400px) {
  html {
    font-size: 20px; /* 4K */
  }
}




/* ==================================================
   BASE
================================================== */

body {
    font-family: "elza-condensed", sans-serif;
    font-weight: 400;
    font-style: italic;
    color: var(--white);
    background: #ffffff;
    overflow-y: visible !important;
  overflow-x: hidden;
}

/* ===============================
   VIDEO ALPHA – DESKTOP / MOBILE
================================ */

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

/* ==================================================
   HERO SECTION
================================================== */

.hero {
    position: relative;
    overflow: hidden;
}




/* ==================================================
   NAVIGATION
================================================== */

.nav {
    position: fixed;
    z-index: 50;
    width: 100%;
    padding: clamp(20px, 3vw, 40px);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
   
 background: linear-gradient(
  to bottom,
  rgba(0, 0, 0, 0.9) 0%,
  rgba(0, 0, 0, 0.2) 70%,
  rgba(0, 0, 0, 0) 100%
);
pointer-events: none;
}
.wer-netz{
    display: flex;
    align-items: center;
    gap: 30px;
    align-items: center;
}

.wer-netz a{
    pointer-events: auto;
}

.social-instagram{

    width: clamp(19px, 1.5vw, 152px);

}

.social-youtube{

    width: clamp(19px, 2vw, 152px);

}


.guayoyo-logo {
   
    display: block;
    height: clamp(60px, 6vw, 120px);
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    padding: 10px 16px;
    background: rgba(255,255,255,0.12);
    transition: all 0.25s ease;
    clip-path: polygon(6% 0%, 100% 0%, 94% 100%, 0% 100%);
}

.logo{
    pointer-events: auto;
}

.logo img {
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.cta-logo{
    display: flex;
    margin-top: -6%;
    justify-content: center;
}



/* ==================================================
   HERO CONTENT
================================================== */

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    height: 100%;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    padding: clamp(60px, 6vw, 120px) clamp(24px, 4vw, 80px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    font-weight: 900;
    font-style: italic;
    font-size: clamp(3rem, 10vw, 13rem);
    line-height: 1.02;
}

.highlight {
    color: var(--yellow);
}

.hero-content .word-slider {
    display: inline-block;
    white-space: nowrap;
    font-weight: 700;
    font-size: clamp(3rem, 10vw, 13rem);
}

.hero-content p {
    max-width: 100ch;
    font-size: clamp(1.125rem, 1.4vw, 2.375rem);
    line-height: 1.5;
    margin: 25px auto 0;
    text-align: left;
    font-style: normal;
    
}

.accent {
    color: var(--yellow);
    font-weight: 600;
}

.accent-btn {
    color: #000;
    font-weight: 600;
}








/* ================= CTA KONTAKT ================= */

.cta-kontakt {
    width: 100%;
    background: #000;
    color: #fff;
    font-family: inherit;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Schwarzer Inhalt */
.cta-inhalt {
   
        padding: 5% 12%;
    text-align: left;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-title {
    
    font-weight: 900;
    
    
    
     font-size: clamp(3rem, 8vw + 2rem, 13rem);
    line-height: 75%;
    margin-bottom: 3%
}

.cta-title span {
    color: #ffb703
}

.cta-text {
    max-width: 1900px;
     font-size: clamp(1.25rem, 1vw + 0.5rem, 2rem);
    line-height: 180%;
  

    opacity: 0.9;
    font-style: normal;
    font-weight: 400;
    width: 100%;
}

/* Button (nutzt vorhandenes Design) */
.cta-inhalt .cta-button {
    display: inline-block;
    margin-top: 10%;
}

.cta-btn{
    display: flex;
    justify-content: center;
}

/* Gelber Footer */
.cta-footer {
    background: #ffb703;
    color: #000;
    padding: 50px 80px 60px;
    text-align: center;
}

/* Logo */
.cta-logo img {
    height: clamp(60px, 6vw, 160px);
    margin-bottom: 35px;
    margin-top: -5%;
}




/* Kontaktinfos */
.cta-kontaktinfos {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-weight: 600;
    font-size: clamp(19px, 1.3vw, 52px);
}

.cta-link {
    color: #000;
    text-decoration: none;
}

.cta-link:hover {
    text-decoration: underline;
}

/* Social Icons */
.cta-social {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

.social-icon {
    width: 30px;
}


.impresum{

color: #6d06ff;
    padding: 5% 14%;
    margin-top: 8%;
}

.formaliteat{
     display: flex;
        flex-direction: column;
        position: absolute;
        left: 0;
        font-size: 15px;
        line-height: 30px;
       
        row-gap: 8px;

}

.formaliteat a{
   background: #6d06ff;
        padding: 2px 12px;
        color: #ffffff;

}
.info{
    display: flex;
    justify-content: center;
    position: relative;
    align-items: flex-end;
}













                                                            /* ==================================================
                                                            RESPONSIVE
                                                            ================================================== */

















/* ================= Iphon 16pro Max ================= */

/* ============ Home ============ */

@media (max-width: 430px) {
    
    
   .guayoyo-logo {
        height: 40px;
    }

    .nav-link {
        padding: 8px 14px;
        font-size: 10px;
    }
    
     .cta-button {
        margin-top: 50px;
    }

    .logo-carousel {
        padding: 8px 0;
    }

    .logo-track img {
        height: 25px;
    }


    .hero-content {
        padding: 40px 30px;
        top: 52%;
    }
    

    .hero-content h1 {
        font-size: 50px;
    }

       .hero-content .word-slider {
        font-size: 50px;
    }

    .hero-content p {
    
    font-size: 15px;
    font-weight: 400;
    font-style: normal;
    line-height: 2;
    max-width: 1000px;
    margin: 25px auto 0;
    text-align: left;
    
    
}

/* ==== Modal ===== */

.modal {
        width: 100%;
        height: 100%;
        clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
        display: flex;
        flex-direction: column;
        min-width: 360px;
        padding: 1rem;
    
    }

        .modal-form input{
padding: 15px;
font-size: 8%;
margin-bottom: 8px;
    }


    .modal-form textarea {

  height: 50px;
  
}

.modal-form input, .modal-form textarea{
    font-size: 8px;
    margin-bottom: 6px;
}

    
      .file-upload {
       height: 25px;
       font-size: 8px;
    
    }

.modal-content {
        width: 100%;
        padding: 10px 1px ;
    }
.modal-content h2 {
        font-size: 30px;
        margin-bottom: 3px;
        padding: 2px 18px;
    }
.modal-content p {
        font-size: 14px;
        margin-bottom: 22px;
        line-height: 15px;
        margin-top: 2px;
        padding: 2px 18px;
    }



    .option {
        min-height: 12px;
    
        padding: 3px;

    }

    .option.active{
display: flex;
    }

     .option strong {
       font-size: 10px;
       margin-top: 10px;
        
    }

    

     .option small {
       font-size: 8px;
        
    }

    .option .icon {
       font-size: 8px;
       margin-top: 0px;
        
    }

     .project-options {
       gap: 8px;
       margin-bottom: 15px;
       display: grid;
      grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
        
    }

    

      .form-submit {
       
       clip-path: polygon(3% 0%, 100% 0%, 97% 100%, 0% 100%);
       font-size: 10px;
        padding: 0.7rem; 
    }

     .modal-close {
       
       top: 18px;
       right: 18px;
       font-size: 20px;
    }





    /* ============ Meine Lesitungen ============ */

    .stage{
       
      display: flex;
      justify-content: space-between;
    }

     .stage::before{
    
      width: 100%;
      height: 100%;
        background: linear-gradient(
        to right,
        #000 0%,
        #000000 100%,
        #000000 100%,
        #fff 100% );
    }

      .video-text{
       
      padding: 30px 6vw;
      width: 100%;
      margin-top: 25%;
      
    }

     .stage .video-text p{
       
     
    font-size: 15px;
    font-weight: 400;
    font-style: normal;
    line-height: 2;
    
        
    }

     .stage .video-text h1{
       
      font-size: 60px;
      line-height: 85px;
      margin-top: -33px;
        

    }

    .video-wrapper{
       
      top: 0;
      transform: translateY(20%);
      max-width: 1300px;
      left: 10%;
      width: 100%;
    }

    .play-btn{
      left: 60%;  
      top: 30%;
      height: 90px;
      width: 90px;

    }

     .stage.playing .video-wrapper{
      
    left: -50%; 

      
    }

    .video-wrapper .close-btn{
       
      top:8px;
      right: 8px;
      font-size: 15px;
      padding: 8px 12px 8px 12px;
    }



/* ============ REALFILM =========== */

.video-gallery{
   padding: 30px 6vw;
}

 .titel-videogalerie {
       
      width: 95%;
      padding: 1% 1%;
    }

.titel-videogalerie h1{
       
      font-size: 40px;
      line-height: 32px;
    }

.titel-videogalerie .beschreibung-tiel{
       
      font-size: 15px;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5;
      width: 100%;
      margin-top: 8px;
    }


    .titel-videogalerie h2{
       
      font-size: 35px;
      line-height: 32px;
    }

    .titel-videogalerie p{
       
      font-size: 12px;
      line-height: 1.5;
      font-weight: 300;
      font-style: normal;
        width: 90%;
        margin-bottom: 5%;

    }

      .gallery-bg{
       
      margin-top: 48vh;
      transform: skewX(-10deg);
      margin-right: 65%;

    }

     .gallery-bg2{
       
      right: 30%;

    }

    .gallery-grid{
        grid-template-columns: repeat(1, 1fr);
    }

    .gallery-grid h3{
        font-size: 25px;
    }

     .gallery-grid p{
        font-size: 12px;
    }
    

    .video-modal-content {
        width: 95%;
        max-height: 80vh;
        padding: 12px;

    }
    .video-modal-text p{
        font-size: 14px;
            margin-bottom: 32px;
    opacity: 0.85;
    }

    .video-modal-text h2{
        font-size: 30px;
        margin-top: 1vh;
        margin-bottom: 16px;
    }

    .video-modal-close{
        z-index: 5;
        font-size: 28px;
    }


/* ============ REALFILM =========== */


.why-content {
    margin-left: 0;
    margin-top: 55%;
    padding: 1% 1%;
    
}

.why-content h1{
    font-size: 60px;
      line-height: 47px;
    text-align: left;
}

.why-content p{
    font-size: 15px;
    font-weight: 400;
    line-height: 2;
    font-style: normal;
    text-align: left;
    width: 100%;
}

 .why-section {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        padding: 30px 6vw;
    }


.why-animation{

    top: -2%;
    width: 100%;
        height: 80%;
        display: flex;
        align-items: flex-start;
        right: 0;
    
}

.why-animation lottie-player {
    width: 100%;
    height: 30%;

}


.angebotsphase-section{
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

.background-solid{
    height: 53%;
}


.sub-box .phase-icon {
    font-size: 36px;
    z-index: 3;
   width: 50px;
    height: 50px;
    margin-top: 4px;
    
}


.phase-box.active{
    
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.phase-buttons{
    
    height: 80px;
    gap: 10px;
}

.phase-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
}




.sub-box{
    width: 100%;
    height: 180px;
    gap: 5px;
    display: flex;
    justify-content: center;
        margin-bottom: 8px;
}

.sub-box h3{
    margin-bottom: 0px;
    font-size: 18px;
}


.sub-box p{
    font-size: 12px;
    width: 80%;

}

.sub-box .phase-icon{
    margin-bottom: 3px;
}





.meine-mission{
    
   position: relative;
}

.meine-mission-text{
        width: 100%;
    height: 100%;
    display: flex;
    z-index: 4;
    flex-direction: column;
    justify-content: center;
    padding: 1% 1%;
}

.meine-mission-content{
    
    width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
}


.meine-mission .meine-mission-content h1{
    
    font-size: 40px;
    line-height: 32px;
    padding: 1% 10%;
    margin-top: 220px;
    
}

.background-gelb{
    
    height: 80%;
}

.meine-mission .meine-mission-content p{
    
    width: 100%;
    padding: 1% 10%;

    font-size: 15px;
    font-weight: 400;
    line-height: 2;
    font-style: normal;
    text-align: left;
}


.meine-mission-animation{
    
    flex-direction: row;
       
        top: 0;
        width: 85%;
        display: flex;
       
        align-items: flex-start;
}

.meine-mission-animation .animation1{
    
    
       left: -13%;
        width: 100%;
    height: auto;
    position: absolute;
    z-index: 3;
}



.meine-mission-animation .animation2{
   position: absolute;
    width: 100%;
    height: auto;
    right: 0;
    left: 26%;
    
}




.für-wen{
     width: 100%;
  
}

.f-w-text{
    padding: 2px, 2px;
}

.f-w-inhalt {
    width: 100%;
padding: 30px 6vw;
    left: 0%;
    display: flex;
    align-items: flex-end;
    margin-bottom: 12%;
    z-index: 10;
}


.f-w-inhalt .f-w-text h1{
    font-size: 60px;
      line-height: 47px;

}

.f-w-inhalt .f-w-text p{
    font-size: 15px;
line-height: 2;
font-style: normal;
font-weight: 400;
width: 100%;

}

.video-für-wen{
    left: 0%;
    overflow: hidden;
    height: 115%;

}

.für-wen-bg{
    
    overflow: hidden;

}

.background-schwarz-gelber{
    left: 0px;
    width: 550px;
}

.video-für-wen img{
    height: auto;
    position: relative;
    left: 65%;

}






/* ============ UNBEZAHLBAR =========== */

.unbezahlbar {

    overflow: hidden;
    position: relative;
    height: 45vh;
}

.unbezahlbar-inhalt {

    padding: 5% 7%;
}

.unbezahlbar h1{

    font-size: 40px;
    line-height: 32px;

}

.unbezahlbar h3{

    font-size: 18px;
    line-height: 19px;

}

.unbezahlbar p{

    font-size: 15px;
line-height: 1.5;
font-style: normal;
font-weight: 400;
    width: 80%;

}

.background-unbezahlbar{
    left: -6%;
    
}







/* ============ KUNDENSTIMMEN =========== */


.kundenstimmen{
    position: relative;
  
}
.kunde-foto{
    width: 100px;
}
.kundenstimmen-inhalt{
    justify-content: flex-start;
}

.kundenstimmen-titel{
margin-top: 2%;
    padding: 0% 7%;
}

.kundenstimmen-titel h1{

    font-size: 45px;
    line-height: 35px;
}

.kundenstimmen-titel p{

     font-size: 15px;
line-height: 2;
font-style: normal;
font-weight: 400;
margin-top: 5px;
}

.kundenstimmen-boxs{
    flex-direction: column;
    align-items: center;
    margin-top: 10%;
}

.box{
    width: 90%;
    align-items: center;
}

.wertung{
    margin-top: 2%;
    font-size: 11px;
    line-height: 1.7;
    font-weight: 400;
}
.sternen{
    width: 50%;
    margin-top: 40px;
        margin-bottom: 2%;
}

.fliege{
    font-size: 10px;
}
.text-bild h4{
    font-size: 18px;
}
.text-bild h3{
    font-size: 14px;
}










/* ============ ABLAUF =========== */


.ablauf{
        width: 100vw;
    height: 100vh;
    background: #ffffff;
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: flex-end;
}

.ablauf-inhalt{
            align-items: center;
        display: flex;
        justify-content: flex-end;
        padding: 35px 6vw;
}


.ablauf-animation1{

          position: absolute;
        bottom: 0;
       width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        z-index: 5;
        top: 0;
       
}

.ablauf-animation1 lottie-player {
    
        height: auto;
        max-width: 2000px;
        position: absolute;
     
}

.ablauf-tex h1{
        font-size: 60px;
      line-height: 47px;
    color: #000;
    
}

.ablauf-tex{
    padding-top: 0%;
    padding-left: 1%;
    padding-right: 1%;
   
}

.ablauf-tex p{
    font-size: 15px;
    line-height: 2;
    font-weight: 400;
    font-style: normal;
    margin-top: 5px;
    width: 100%;
}


/* ================= ABLAUF REALFILM  ================= */


    /* ===== SECCIÓN GENERAL ===== */
   

.realfilm-process-section .highlight4{
  
    font-size: 50px;
    margin-top: 0;
    text-align: center;
    
}

    .realfilm-process-section {
        padding: 12px 5vw;
        overflow: hidden;
        height: auto;
    }

    /* ===== BOTONES ===== */
    .process-buttons {
        gap: 10px;
        margin-bottom: 20px;
        justify-content: center;
        row-gap: 20px;
        column-gap: 15px;
    }

    .process-btn {
        width: 40%;
        justify-content: flex-start;
      
        transform: skewX(-8deg);
    }

    .step-number {
        font-size: 14px;
        padding: 6px 8px;
    }

    .step-text {
        font-size: 10px;
        margin-right: 0;
    }

    /* ===== CONTENIDO ===== */
    .process-content {
        flex-direction: column;
        height:500px;
        gap: 30px;
    }

    /* Fondo negro */
    .background-realfilm2 {
        width: 100%;
        height: 100%;
        transform: skewX(-10deg);
       
    }

    /* ===== TEXTO ===== */
    .process-text {
    
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 25px;
        padding-bottom: 0px;
        align-items: flex-start;
        text-align: left;
        margin-left: 60px;
    }

    .process-text h1{
        width: 70%;
        
    }

    .process-title {
        font-size: 36px;
        line-height: 32px;
        padding-left: 0px;
        margin-bottom: 12px;
    }

    .process-description {
        font-size: 12px;
        line-height: 2;
        font-style: italic;
        font-weight: 600;
        padding-left: 0;
        width: 90%;
        margin-bottom: 0px;
    }

    /* ===== VIDEO ===== */


.process-section[data-type="realfilm"] .process-video {
    width: 100%;
        height: 250px;
        position: absolute;
        bottom: 0px;
        left: 22px;
        pointer-events: none;
}

.process-section[data-type="erklaervideo"] .process-video {
    width: 100%;
        height: 300px;
        position: absolute;
        bottom: 0px;
        left: 0;
        pointer-events: none;
    
}



    .lottie-container{
        width: 100%;
    height: 100%;

    }
    

    .process-video video {
        height: 100%;
    }

    /* ===== MEHR BUTTON ===== */
    .mehr {
        top: 0;
        margin-top: -5px;
    }

    .background-mehr {
        width: 140px;
        height: 36px;
    }

    .mehr-btn {
        font-size: 14px;
        margin-top: 2%;
    }

    /* ===== MEHR CONTENT ===== */
    .mehr-content.active {
        grid-template-columns: 1fr 4fr;
        gap: 25px;
        padding: 0px 18px;
        
    }

     .mehr-content {
        margin-top: 12px;
        
    }

    .mehr-block h3 {
        font-size: 24px;
    }

    .mehr-block ul {
        font-size: 14px;
    }

    .mehr-block li {
        font-size: 13px;
    }

        .mehr-block li {
        font-size: 13px;
        padding: 3px 0%;
    }




.cta-kontakt{
    overflow: hidden;
}

.cta-title{
    font-size: 60Px;
    line-height: 47px;
}

.cta-text{
    font-size: 15px;
    line-height: 2;
    font-weight: 400;
    font-style: normal;
}

    .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
    width: 150%;
    object-fit: contain;
  }


  .cta-logo img{
    margin-top: -25%;
  }

   .cta-footer {

    padding: 50px 20px 60px;
 
}

  .formaliteat{
     display: flex;
        flex-direction: column;
        position: absolute;
        left: 0;
        font-size: 15px;
        line-height: 30px;
       
        row-gap: 8px;

}

.formaliteat a{
   background: #6d06ff;
        padding: 2px 12px;
        color: #ffffff;

}
.info{
    display: flex;
    justify-content: center;
    position: relative;
    align-items: flex-end;
}

}














                                           /* ================= Iphon S ================= */
                                           

/* ============ Home ============ */

@media (max-width: 360px) {
    
    
   .guayoyo-logo {
        height: 40px;
    }

    .nav-link {
        padding: 8px 14px;
        font-size: 10px;
    }
    
     .cta-button {
        margin-top: 50px;
    }

    .logo-carousel {
        padding: 8px 0;
    }

    .logo-track img {
        height: 25px;
    }


    .hero-content {
        padding: 40px 30px;
        top: 52%;
    }
    

    .hero-content h1 {
        font-size: 50px;
    }

       .hero-content .word-slider {
        font-size: 50px;
    }

    .hero-content p {
    
    font-size: 12px;
    font-weight: 400;
    font-style: normal;
    line-height: 2;
    max-width: 1000px;
    margin: 25px auto 0;
    text-align: left;
    
    
}

/* ==== Modal ===== */

.modal {
        width: 100%;
        height: 100%;
        clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
        display: flex;
        flex-direction: column;
        min-width: 360px;
        padding: 1rem;
    
    }

        .modal-form input{
padding: 15px;
font-size: 8%;
margin-bottom: 8px;
    }


    .modal-form textarea {

  height: 50px;
  
}

.modal-form input, .modal-form textarea{
    font-size: 8px;
    margin-bottom: 6px;
}

    
      .file-upload {
       height: 25px;
       font-size: 8px;
    
    }

.modal-content {
        width: 90%;
        padding: 10px 1px ;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
.modal-content h2 {
        font-size: 22px;
        margin-bottom: 3px;
        padding: 2px 18px;
    }
.modal-content p {
        font-size: 12px;
        margin-bottom: 22px;
        line-height: 15px;
        margin-top: 2px;
        padding: 2px 18px;
    }



    .option {
        min-height: 12px;
    
        padding: 3px;

    }

    .option.active{
display: flex;
    }

     .option strong {
       font-size: 9px;
       margin-top: 10px;
        
    }

    

     .option small {
       font-size: 8px;
        
    }

    .option .icon {
       font-size: 8px;
       margin-top: 0px;
       width: 12%;
        
    }

     .project-options {
       gap: 8px;
       margin-bottom: 15px;
       display: grid;
      grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
        
    }

    

      .form-submit {
       
       clip-path: polygon(3% 0%, 100% 0%, 97% 100%, 0% 100%);
       font-size: 10px;
        padding: 0.7rem; 
    }

     .modal-close {
       
       top: 18px;
       right: 18px;
       font-size: 20px;
    }

    .form-row {
        gap: 0.4rem;
    }





    /* ============ Meine Lesitungen ============ */

    .stage{
       
      display: flex;
      justify-content: space-between;
    }

     .stage::before{
    
      width: 100%;
      height: 100%;
        background: linear-gradient(
        to right,
        #000 0%,
        #000000 100%,
        #000000 100%,
        #fff 100% );
    }

      .video-text{
       
      padding: 3px 6vw;
      width: 100%;
      margin-top: 50%;
    
    }

     .stage .video-text p{
       
     
    font-size: 12px;
    font-weight: 400;
    font-style: normal;
    line-height: 2;
    
        
    }

     .stage .video-text h1{
       
      font-size: 60px;
      line-height: 85px;
      margin-top: -33px;
        

    }

    .video-wrapper{
       
      top: 0;
      transform: translateY(20%);
      max-width: 1300px;
      left: 10%;
      width: 100%;
    }

    .play-btn{
      left: 60%;  
      top: 30%;
      height: 90px;
      width: 90px;

    }

     .stage.playing .video-wrapper{
      
    left: -50%; 

      
    }

    .video-wrapper .close-btn{
       
      top:8px;
      right: 8px;
      font-size: 15px;
      padding: 8px 12px 8px 12px;
    }



/* ============ REALFILM =========== */

.video-gallery{
   padding: 30px 6vw;
}

 .titel-videogalerie {
       
      width: 95%;
      padding: 1% 1%;
    }

.titel-videogalerie h1{
       
      font-size: 40px;
      line-height: 32px;
    }

.titel-videogalerie .beschreibung-tiel{
       
      font-size: 12px;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5;
      width: 100%;
      margin-top: 8px;
    }


    .titel-videogalerie h2{
       
      font-size: 35px;
      line-height: 32px;
    }

    .titel-videogalerie p{
       
      font-size: 11px;
      line-height: 1.5;
      font-weight: 300;
      font-style: normal;
        width: 90%;
        margin-bottom: 5%;

    }

      .gallery-bg{
       
      margin-top: 80vh;
      transform: skewX(-10deg);
      margin-right: 65%;

    }

     .gallery-bg2{
       
      right: 30%;

    }

    .gallery-grid{
        grid-template-columns: repeat(1, 1fr);
    }

    .gallery-grid h3{
        font-size: 25px;
    }

     .gallery-grid p{
        font-size: 12px;
    }
    

    .video-modal-content {
        width: 95%;
        max-height: 80vh;
        padding: 12px;

    }
    .video-modal-text p{
        font-size: 14px;
            margin-bottom: 32px;
    opacity: 0.85;
    }

    .video-modal-text h2{
        font-size: 30px;
        margin-top: 1vh;
        margin-bottom: 16px;
    }

    .video-modal-close{
        z-index: 5;
        font-size: 25px;
    }


/* ============ REALFILM =========== */


.why-content {
    margin-left: 0;
    margin-top: 55%;
    padding: 1% 1%;
    
}

.why-content h1{
    font-size: 60px;
      line-height: 47px;
    text-align: left;
}

.why-content p{
    font-size: 12px;
    font-weight: 400;
    line-height: 2;
    font-style: normal;
    text-align: left;
    width: 100%;
}

 .why-section {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        padding: 30px 6vw;
    }


.why-animation{

    top: -2%;
    width: 100%;
        height: 65%;
        display: flex;
        align-items: flex-start;
        right: 0;
    
}

.why-animation lottie-player {
    width: 100%;
    height: 30%;

}

.angebotsphase-section{
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

.background-solid{
    height: 53%;
}


.sub-box .phase-icon {
    font-size: 36px;
    z-index: 3;
   width: 50px;
    height: 50px;
    margin-top: 4px;
    
}


.phase-box.active{
    
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.phase-buttons{
    
    height: 80px;
    gap: 10px;
}

.phase-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
}




.sub-box{
    width: 100%;
    height: 180px;
    gap: 5px;
    display: flex;
    justify-content: center;
        margin-bottom: 8px;
}

.sub-box h3{
    margin-bottom: 0px;
    font-size: 18px;
}


.sub-box p{
    font-size: 10px;
    width: 80%;

}

.sub-box .phase-icon{
    margin-bottom: 3px;
}





.meine-mission{
    
   position: relative;
}

.meine-mission-text{
        width: 100%;
    height: 100%;
    display: flex;
    z-index: 4;
    flex-direction: column;
    justify-content: center;
    padding: 1% 1%;
}

.meine-mission-content{
    
    width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
}


.meine-mission .meine-mission-content h1{
    
    font-size: 40px;
    line-height: 32px;
    padding: 1% 10%;
    margin-top: 220px;
    
    
}

.background-gelb{
    
    height: 80%;
}

.meine-mission .meine-mission-content p{
    
    width: 100%;
    padding: 1% 10%;

    font-size: 12px;
    font-weight: 400;
    line-height: 2;
    font-style: normal;
    text-align: left;
    font-size: 12px;
}


.meine-mission-animation{
    
    flex-direction: row;
       
        top: 0;
        width: 80%;
        height: auto;
        display: flex;
       
        align-items: flex-end;
}

.meine-mission-animation .animation1{
    
    
       left: -33%;
        width: 100%;
    height: auto;
    position: absolute;
    z-index: 3;
}



.meine-mission-animation .animation2{
   position: absolute;
    width: 100%;
    height: auto;
    right: 0;
    left: 26%;
    
}




.für-wen{
     width: 100%;
  
}

.f-w-text{
    padding: 2px, 2px;
}

.f-w-inhalt {
    width: 100%;
padding: 30px 6vw;
    left: 0%;
    display: flex;
    align-items: flex-end;
    margin-bottom: 12%;
    z-index: 10;
}


.f-w-inhalt .f-w-text h1{
    font-size: 60px;
      line-height: 47px;

}

.f-w-inhalt .f-w-text p{
    font-size: 12px;
line-height: 2;
font-style: normal;
font-weight: 400;
width: 100%;

}

.video-für-wen{
    left: 0%;
    overflow: hidden;
    height: 115%;

}

.für-wen-bg{
    
    overflow: hidden;

}

.background-schwarz-gelber{
    left: 0px;
    width: 550px;
}

.video-für-wen img{
    height: auto;
    position: relative;
    left: 50%;

}






/* ============ UNBEZAHLBAR =========== */

.unbezahlbar {

    overflow: hidden;
    position: relative;
    height: 45vh;
}

.unbezahlbar-inhalt {

    padding: 5% 7%;
}

.unbezahlbar h1{

    font-size: 40px;
    line-height: 32px;

}

.unbezahlbar h3{

    font-size: 18px;
    line-height: 19px;

}

.unbezahlbar p{

    font-size: 12px;
line-height: 1.5;
font-style: normal;
font-weight: 400;
    width: 80%;

}

.background-unbezahlbar{
    left: -6%;
    
}







/* ============ KUNDENSTIMMEN =========== */


.kundenstimmen{
    position: relative;
  
}
.kunde-foto{
    width: 100px;
}
.kundenstimmen-inhalt{
    justify-content: flex-start;
}

.kundenstimmen-titel{
margin-top: 2%;
    padding: 0% 7%;
}

.kundenstimmen-titel h1{

    font-size: 45px;
    line-height: 35px;
}

.kundenstimmen-titel p{

     font-size: 12px;
line-height: 2;
font-style: normal;
font-weight: 400;
margin-top: 5px;
}

.kundenstimmen-boxs{
    flex-direction: column;
    align-items: center;
    margin-top: 10%;
}

.box{
    width: 90%;
    align-items: center;
}

.wertung{
    margin-top: 2%;
    font-size: 11px;
    line-height: 1.7;
    font-weight: 300;
}
.sternen{
    width: 50%;
    margin-top: 40px;
        margin-bottom: 2%;
}

.fliege{
    font-size: 10px;
}
.text-bild h4{
    font-size: 18px;
}
.text-bild h3{
    font-size: 14px;
}










/* ============ ABLAUF =========== */


.ablauf{
        width: 100vw;
    height: 100vh;
    background: #ffffff;
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
}

.ablauf-inhalt{
            align-items: center;
        display: flex;
        justify-content: flex-end;
        padding: 35px 6vw;
}


.ablauf-animation1{

          position: absolute;
        bottom: 0;
       
        width: 80%;
        display: flex;
        justify-content: center;
        z-index: 5;
        top: 0;
       
}

.ablauf-animation1 lottie-player {
    
        height: auto;
        max-width: 2000px;
        position: absolute;
     
}

.ablauf-tex h1{
        font-size: 60px;
      line-height: 47px;
    color: #000;
    
}

.ablauf-tex{
    padding-top: 0%;
    padding-left: 1%;
    padding-right: 1%;
   
}

.ablauf-tex p{
    font-size: 12px;
    line-height: 2;
    font-weight: 400;
    font-style: normal;
    margin-top: 5px;
}


/* ================= ABLAUF REALFILM  ================= */


    /* ===== SECCIÓN GENERAL ===== */
   

.realfilm-process-section .highlight4{
  
    font-size: 50px;
    margin-top: 0;
    text-align: center;
    
}

    .realfilm-process-section {
        padding: 12px 5vw;
         overflow: hidden;
        height: auto;
    }

    /* ===== BOTONES ===== */
    .process-buttons {
        gap: 10px;
        margin-bottom: 20px;
        justify-content: center;
        row-gap: 20px;
        column-gap: 15px;
    }

    .process-btn {
        width: 40%;
        justify-content: flex-start;
      
        transform: skewX(-8deg);
    }

    .step-number {
        font-size: 14px;
        padding: 6px 8px;
    }

    .step-text {
        font-size: 9px;
        margin-right: 0;
    }

    /* ===== CONTENIDO ===== */
    .process-content {
        flex-direction: column;
        height:500px;
        gap: 30px;
    }

    /* Fondo negro */
    .background-realfilm2 {
        width: 100%;
        height: 100%;
        transform: skewX(-10deg);
       
    }

    /* ===== TEXTO ===== */
    .process-text {
    
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 25px;
        padding-bottom: 0px;
        align-items: flex-start;
        text-align: left;
        margin-left: 60px;
    }

    .process-text h1{
        width: 70%;
        
    }

    .process-title {
        font-size: 36px;
        line-height: 32px;
        padding-left: 0px;
        margin-bottom: 12px;
    }

    .process-description {
        font-size: 12px;
        line-height: 2;
        font-style: italic;
        font-weight: 600;
        padding-left: 0;
        width: 90%;
        margin-bottom: 0px;
    }

    /* ===== VIDEO ===== */
    .process-video {
       
        width: 100%;
        height: 250px;
        position: absolute;
        bottom: 0px;
        left: 64px;
        pointer-events: none;
    }




    .process-section[data-type="realfilm"] .process-video {
    width: 100%;
        height: 250px;
        position: absolute;
        bottom: 0px;
        left: 22px;
        pointer-events: none;
}

.process-section[data-type="erklaervideo"] .process-video {
  width: 100%;
        height: 300px;
        position: absolute;
        bottom: 0px;
        left: 0;
        pointer-events: none;
    
}

    .lottie-container{
        width: 100%;
    height: 100%;

    }
    

    .process-video video {
        height: 100%;
    }

    /* ===== MEHR BUTTON ===== */
    .mehr {
        top: 0;
        margin-top: -5px;
    }

    .background-mehr {
        width: 140px;
        height: 36px;
    }

    .mehr-btn {
        font-size: 14px;
        margin-top: 2%;
    }

    /* ===== MEHR CONTENT ===== */
    .mehr-content.active {
        grid-template-columns: 1fr 4fr;
        gap: 25px;
        padding: 0px 18px;
        
    }

     .mehr-content {
        margin-top: 12px;
        
    }

    .mehr-block h3 {
        font-size: 24px;
    }

    .mehr-block ul {
        font-size: 14px;
    }

    .mehr-block li {
        font-size: 13px;
    }

        .mehr-block li {
        font-size: 13px;
        padding: 3px 0%;
    }




.cta-kontakt{
    overflow: hidden;
}

.cta-title{
    font-size: 60Px;
    line-height: 47px;
}

.cta-text{
    font-size: 12px;
    line-height: 2;
    font-weight: 400;
    font-style: normal;
}

    .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
    width: 150%;
    object-fit: contain;
  }


  .cta-logo img{
    margin-top: -25%;
  }

   .cta-footer {

    padding: 50px 20px 60px;
 
}

  .formaliteat{
     display: flex;
        flex-direction: column;
        position: absolute;
        left: 0;
        font-size: 15px;
        line-height: 30px;
       
        row-gap: 8px;

}

.formaliteat a{
   background: #6d06ff;
        padding: 2px 12px;
        color: #ffffff;

}
.info{
    display: flex;
    justify-content: center;
    position: relative;
    align-items: flex-end;
}

}
