/* Stage Section */
.stage {
  width: 100vw;
  min-height: 100vh;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  box-sizing: border-box;
}

.stage-content {
  max-width: 600px;
  width: 100%;
  text-align: center;
}

.stage-image {
  margin-bottom: 30px;
}

.stage-img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.stage-title {
  color: #000000;
  font-family: 'TT Fors Trial Light', Arial, sans-serif;
  font-weight: 300;
  font-size: 11.7vw;
  line-height: 1.32;
  text-align: left;
  margin: 0 0 40px 0;
  width: 100%;
  letter-spacing: 0.01em;
}

.stage-text {
  margin-bottom: 40px;
}

.stage-paragraph {
  color: #000000;
  font-family: 'TT Fors Trial Regular', Arial, sans-serif;
  font-weight: 400;
  font-size: 4.8vw;
  line-height: 1.54;
  text-align: left;
  margin: 0 0 20px 0;
  letter-spacing: 0.01em;
  width: 100%;
  word-break: break-word;
  white-space: normal;
  text-align: left;
  position: relative;
  padding-left: 20px;
}

.stage-paragraph strong {
  font-weight: 600;
}

.stage-paragraph:before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: #000000;
  font-weight: 400;
  font-size: 2em;
  line-height: 0.5;
}

.bullet {
  display: none;
}

.stage-button {
  display: flex;
  justify-content: flex-start;
  margin-top: 30px;
}

.stage-btn {
  background: #ff9900;
  color: #000000;
  border: none;
  padding: 15px 30px;
  font-family: 'TT Fors Trial Regular', Arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  cursor: pointer;
  border-radius: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.stage-btn:hover {
  background: #e68a00;
  color: #000000;
}

.stage-btn-img {
  max-width: 80%;
  height: auto;
  cursor: pointer;
}

@media (min-width: 600px) {
  .stage-title {
    font-size: 155px;
  }
  .stage-paragraph {
    font-size: 24px;
  }
  .stage-btn {
    font-size: 35px;
    padding: 18px 35px;
  }
}

@media (min-width: 1024px) {
  .stage {
    margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  .stage-content {
    max-width: 800px;
    width: 100%;
    margin: 100px 0 0 0;
    text-align: left;
  }
  .stage-image {
    margin-bottom: 40px;
  }
  .stage-img {
    max-width: 100%;
    height: auto;
  }
  .stage-title {
    font-size: 72px;
    font-weight: 300;
    text-align: left;
    line-height: 1.2;
  }
  .stage-paragraph {
    font-size: 18px;
    font-weight: 400;
    text-align: left;
    line-height: 1.5;
    margin-bottom: 20px;
    padding-left: 25px;
  }
  .stage-paragraph:before {
    left: 0;
    top: 0;
    font-size: 2em;
    line-height: 0.5;
  }
  .stage-paragraph br {
    display: none;
  }
  .stage-button {
    justify-content: flex-start;
    margin-left: 0;
  }
  .stage-btn {
    font-size: 18px;
    padding: 15px 30px;
  }
  .stage-btn-img {
    margin: 0 auto;
    max-width: 630px;
  }
} 