* {
  margin: 0;
  padding: 0;
}

.layout-container {
  position: relative;
  background-color: #111; 
  color: #fff;
  min-height: 100vh;
  padding: 60px 80px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

h1 {
  /* text-align: center; */
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.3;
  /* max-width: 900px; */
  margin: 0 auto;
  background: linear-gradient(135deg, #fff 0%, #ccc 100%);
  background-clip: text;
  color: transparent;
}

.content-area {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

/* Left block */
.left-block {
  flex: 1;
  max-width: 420px;
}

.image-wrapper {
  position: relative;
  display: inline-block;
}

.main-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.badge {
  position: absolute;
  padding: 10px 14px;
  border: 1px solid gainsboro;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;

  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  text-align: center;
  line-height: 1.3;
  overflow: hidden;               
}


.badge-revenue {
  bottom: 20px;
  left: -30px;
}
.badge-revenue { 
  font-size: 1.2rem;             
}
.badge-revenue span {
  display: block;               
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.8;
}

.badge-profit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  top: 20px;
  right: -50px;
  padding: 12px 16px;            
  border-radius: 16px;           
}

/* profit badge icon */
.badge-profit img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* profit badge text */
.badge-profit p {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.badge-profit p span {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.8;
}
.badge {
  will-change: transform;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.left-image-top-background{
  position: absolute;
  top: 0;
  left: 0;
  height: 700px;
  width: 700px;

}
.right-image-bottom-background{
  position: absolute;
  bottom: -300px;
  right: 0;
  height: 700px;
  width: 700px;

}



.supporting-text p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #ccc;
}

/* Right block */
.right-block {
    padding-top: 8rem;
  flex: 1;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.intro-text p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ddd;
}

/* Responsive */
@media (max-width: 900px) {
  .content-area {
    flex-direction: column;
    align-items: center;
  }
  .right-block {
    padding-top: 1rem;

}


  .left-block, .right-block {
    max-width: 100%;
  }
  .layout-container{
     position: relative;
  background-color: #111; 
  color: #fff;
  min-height: 100vh;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  }
  .badge-profit {
  right: -10px;
          
}


}
@media (max-width: 1024px) {
  .left-image-top-background{
    height: 50vh;
    width: 50vh;
      bottom: 100px;
  left: 0;
  }
  .right-image-bottom-background {
    height: 50vh;
    width: 50vh;
    bottom: -100px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .left-image-top-background,
  .right-image-bottom-background {
    height: 40vh;
    width: 40vh;
  }
}

