   /* about */
#about {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    text-align: right;
    padding: 30px;
    font-family: 'Heebo', sans-serif;
    color: black;
    background-image: linear-gradient(to top, rgb(255, 255, 255), rgb(238, 252, 255));
}

#about h2 {
  font-size: clamp(30px, 3vw, 32px);
  font-weight: 700;
}

#about p {
  font-weight: 300;
  font-size: clamp(16px, 3vw, 20px);
}

.about-spanA {
  color: rgb(0, 160, 184);
  font-weight: 700;
}

.fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.5s ease, transform 0.8s ease;
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}

#aboutImg {
  display: none;
}

@media (max-width: 768px) {
    #aboutImg {
         display: block;
         width: 250px;
     }
   }

#phone-frame {
  width: 300px;
  height: 600px;
  border: 10px solid #222;
  border-radius: 36px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  background: #000;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    #phone-frame {
        display: none;
     }
   }

#phone-frame.tilted {
  transform: rotate(5deg);
}

#phone-notch {
  width: 120px;
  height: 20px;
  background: #222;
  border-radius: 10px 10px 0 0;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

#phone-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

#phone-screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ------------------------------------------------------------- */
/* advantages */
#advantages {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 40px ;
    gap: clamp(50px, 8vw, 200px);
    font-family: 'Heebo', sans-serif;
    font-size: clamp(16px, 3vw, 20px);
    background-color: rgb(0, 25, 30);
    /* background-image: linear-gradient(to top, rgb(0, 108, 124), rgb(0, 25, 30)); */
    background-image: linear-gradient(to top, rgb(6, 38, 61), black);
}

#advantages h3 {
    color: white;
    font-weight: 700;
    font-size: clamp(24px, 3vw, 26px);
}

#advantages p {
    color: rgb(235, 235, 235);
    font-weight: 300;
    font-size: clamp(18px, 3vw, 18px);
}

.advantages-icons {
  width: 45px;
}

@media (max-width: 1300px) {
    .advantages-icons {
         width: 40px;
     }
}