/* FASTRO Page Styles */

.fastro_section {
  min-height: 100vh;
  padding-bottom: 21.5rem;
  padding-top: 0;
  background-image: url('/static/images/sub/bg_fastro_01.png');
  background-repeat: no-repeat;
  background-position: center 0%;
  background-size: 100% 100%;
  position: relative;
}

.fastro_container {
  max-width: 1362px;
  margin: 0 auto;
  
}

.fastro_header {
  margin-bottom: 80px;
}

.fastro_main_title {
  font-size: 8rem;
  font-weight: bold;
  color: #f0f0f2;
  margin-bottom: 20px;
  margin-top: 200px;
}

.fastro_sub_title {
  font-size: 2rem;
  font-weight: bold;
  background: linear-gradient(135deg, #25b9b3 0%, #009cea 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 30px;
}

.fastro_description {
  color: #9494a5;
  font-size: 1.125rem;
  line-height: 1.89;
}

.fastro_description p:last-child {
  margin-bottom: 0;
}

.fastro_features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 5.5rem;
}

.feature_card {
  position: relative;
  border-radius: 20px;
  padding: 30px 30px 90px 30px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.feature_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(51deg, #0b777b 8%, #05687d 36%, #005781 96%);
  border: 1px solid #98d7ff;
  opacity: 0.4;
  z-index: -1;
  border-radius: 20px;
}

.feature_icon {
  width: 56px;
  height: 76px;
  margin-bottom: 30px;
}

.feature_icon img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.feature_title {
  font-size: 1.625rem;
  font-weight: bold;
  color: #f0f0f2;
  margin-bottom: 30px;
}

.feature_description {
  font-size: 1rem;
  color: #b0e2fc;
  line-height: 1.625;
}

/* Workflow Section */
.fastro_workflow_section {
  position: relative;
  z-index: 0;
  padding-bottom: 21.5rem;
  padding-top: 0;
}

.workflow_container {
  max-width: 1362px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.workflow_title_badge {
  display: inline-block;
  padding: 4px 30px;
  border-radius: 26px;
  background-image: linear-gradient(to right, #25b9b4 0%, #029de8 99%);
  margin-bottom: 50px;
}

.workflow_title_badge strong {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: -2px;
  text-align: center;
  color: #f0f0f2;
  line-height: 1.53;
}

.workflow_description {
  text-align: center;
  margin-bottom: 50px;
  max-width: 986px;
}

.workflow_description p {
  font-size: 1.125rem;
  color: #9494a5;
  line-height: 1.89;
}

.workflow_description p:last-child {
  margin-bottom: 0;
}

.workflow_image_wrapper {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  line-height: 0;
}

.workflow_image_container {
  padding: 1rem;
  border-radius: 30px;
  background: linear-gradient(135deg, #25b9b4 0%, #029de8 100%);
  min-width: 786px;
  display: inline-block;
  vertical-align: top;
}

.workflow_image_inbox {
  padding : 46px 11px;
  border-radius: 20px;
  background-color: #fff;
  line-height: normal;
}

.workflow_image_container img {
  width: 100%;
  height: auto;
  display: block;
}

/* Chat Section */
.fastro_chat_section {
  min-height: 100vh;
  padding-bottom: 21.5rem;
  padding-top: 0;
  position: relative;
  overflow: visible;
}

.fastro_chat_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 125%;
  background-image: url('/static/images/sub/bg_fastro_02.png');
  background-repeat: no-repeat;
  background-position: center 9rem;
  background-size: 100% auto;
  z-index: -1;
}

.chat_container {
  max-width: 1362px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.chat_title_badge {
  display: inline-block;
  padding: 4px 30px;
  border-radius: 26px;
  background-color: #029de8;
  margin-bottom: 24px;
}

.chat_title_badge strong {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: -2px;
  text-align: center;
  color: #f0f0f2;
  line-height: 1.53;
}

.chat_main_title {
  font-size: 3.125rem;
  font-weight: bold;
  color: #f0f0f2;
  margin-bottom: 40px;
  text-align: center;
}

.chat_description {
  text-align: center;
  margin-bottom: 200px;
  max-width: 986px;
}

.chat_description p {
  font-size: 1.125rem;
  color: #9494a5;
  line-height: 1.89;
  margin-bottom: 0;
}

.chat_content {
  width: 100%;
  max-width: 1200px;
  overflow-x: auto;
}

.chat_visual {
  position: relative;
  width: 100%;
  min-width: 786px;
  margin: 0 auto;
}

.chat_visual > img {
  width: 100%;
  height: auto;
  display: block;
}

/* Viewer Section */
.fastro_viewer_section {
  min-height: 100vh;
  padding-bottom: 21.5rem;
  padding-top: 0;
  position: relative;
  overflow: visible;
}

.fastro_viewer_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 125%;
  background-image: url('/static/images/sub/bg_fastro_03.png');
  background-repeat: no-repeat;
  background-position: center 9rem;
  background-size: 100% auto;
  z-index: -1;
}

.viewer_container {
  max-width: 1362px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.viewer_title_badge {
  display: inline-block;
  padding: 4px 30px;
  border-radius: 26px;
  background-color: #21a7a2;
  margin-bottom: 24px;
}

.viewer_title_badge strong {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: -2px;
  text-align: center;
  color: #f0f0f2;
  line-height: 1.53;
}

.viewer_main_title {
  font-size: 3.125rem;
  font-weight: bold;
  color: #f0f0f2;
  margin-bottom: 40px;
  text-align: center;
}

.viewer_description {
  text-align: center;
  margin-bottom: 200px;
  max-width: 986px;
}

.viewer_description p {
  font-size: 1.125rem;
  color: #9494a5;
  line-height: 1.89;
  margin-bottom: 0;
}

.viewer_content {
  width: 100%;
  max-width: 1200px;
  overflow-x: auto;
}

.viewer_visual {
  position: relative;
  width: 100%;
  min-width: 786px;
  margin: 0 auto;
}

.viewer_visual > img {
  width: 100%;
  height: auto;
  display: block;
}

/* Alert Section */
.fastro_alert_section {
  min-height: 100vh;
  padding-bottom: 21.5rem;
  padding-top: 0;
  position: relative;
  overflow: visible;
}

.fastro_alert_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 125%;
  background-image: url('/static/images/sub/bg_fastro_02.png');
  background-repeat: no-repeat;
  background-position: center 9rem;
  background-size: 100% auto;
  z-index: -1;
}

.alert_container {
  max-width: 1362px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.alert_title_badge {
  display: inline-block;
  padding: 4px 30px;
  border-radius: 26px;
  background-color: #029de8;
  margin-bottom: 24px;
}

.alert_title_badge strong {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: -2px;
  text-align: center;
  color: #f0f0f2;
  line-height: 1.53;
}

.alert_main_title {
  font-size: 3.125rem;
  font-weight: bold;
  color: #f0f0f2;
  margin-bottom: 40px;
  text-align: center;
}

.alert_description {
  text-align: center;
  margin-bottom: 200px;
  max-width: 986px;
}

.alert_description p {
  font-size: 1.125rem;
  color: #9494a5;
  line-height: 1.89;
  margin-bottom: 0;
}

.alert_content {
  width: 100%;
  max-width: 1200px;
  overflow-x: auto;
}

.alert_visual {
  position: relative;
  width: 100%;
  min-width: 786px;
  margin: 0 auto;
}

.alert_visual > img {
  width: 100%;
  height: auto;
  display: block;
}

/* Solution Section */
.fastro_solution_section {
  min-height: 100vh;
  background-image: url('/static/images/sub/bg_fastro_04.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 150px 0;
}

.solution_container {
  max-width: 1394px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.solution_title {
  font-size: 3.125rem;
  font-weight: bold;
  color: #f0f0f2;
  font-family: 'NotoSansCJKKR', sans-serif;
  margin: 0 0 40px;
}

.solution_description {
  text-align: center;
  max-width: 986px;
  margin-bottom: 200px;
}

.solution_description p {
  font-size: 1.125rem;
  color: #9494a5;
  line-height: 1.89;
  margin-bottom: 0;
}

.solution_image_wrapper {
  width: 100%;
  overflow-x: auto;
}

.solution_image {
  width: 100%;
  min-width: 786px;
  height: auto;
  display: block;
}

/* PC Section */
.fastro_pc_section {
  min-height: 80vh;
  background-image: url('/static/images/sub/bg_fastro_05.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 100px 0;
}

.pc_container {
  max-width: 1394px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex: 1;
}

.pc_text_left {
  flex-shrink: 0;
}

.pc_subtitle {
  font-size: 1.875rem;
  font-weight: bold;
  color: #f0f0f2;
  font-family: 'NotoSansCJKKR', sans-serif;
  margin: 0 0 10px 0;
}

.pc_title {
  font-size: 3.125rem;
  font-weight: bold;
  color: #ffffff;
  font-family: 'NotoSansCJKKR', sans-serif;
  margin: 0;
}

.pc_text_right {
  text-align: right;
}

.pc_description {
  font-size: 1.25rem;
  font-weight: bold;
  color: #f0f0f2;
  font-family: 'NotoSansCJKKR', sans-serif;
  margin: 0 0 5px 0;
}

.pc_link_wrap {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  max-width:82.5rem;
}

.pc_link_wrap a {
  width: 80%;
  max-width: 12.5rem;
}

/** Register **/
.register {
  padding: 0 0;
}
.register .link_wrap {
  text-align: center;
}
.register .link_wrap a {
  width: 80%;
  max-width: 12.5rem;
}

@media (max-width: 1024px) {
  .fastro_container,
  .workflow_container,
  .chat_container,
  .viewer_container,
  .alert_container {
    padding: 0 20px;
  }

  .fastro_main_title {
    font-size: 3.5rem;
  }

  .fastro_sub_title {
    font-size: 1.8rem;
  }

  .fastro_description {
    font-size: 1rem;
  }

  .fastro_features {
    gap: 25px;
  }

  .feature_card {
    padding: 35px 25px;
  }

  .feature_title {
    font-size: 1.2rem;
  }

  .workflow_title_badge {
    padding: 4px 25px;
    margin-bottom: 40px;
  }

  .workflow_title_badge strong {
    font-size: 1.6rem;
  }

  .workflow_description {
    margin-bottom: 40px;
    max-width: 800px;
  }

  .workflow_description p {
    font-size: 1rem;
  }

  .workflow_image_container {
    padding: 0.8rem;
  }

  .workflow_image_inbox {
    padding: 35px 10px;
  }

  .chat_title_badge {
    padding: 4px 25px;
    margin-bottom: 24px;
  }

  .chat_title_badge strong {
    font-size: 1.6rem;
  }

  .chat_main_title {
    font-size: 2.5rem;
  }

  .chat_description {
    margin-bottom: 50px;
  }

  .chat_description p {
    font-size: 1rem;
  }

  .viewer_main_title,
  .alert_main_title {
    font-size: 2.5rem;
  }

  .viewer_title_badge,
  .alert_title_badge {
    padding: 4px 25px;
    margin-bottom: 24px;
  }

  .viewer_title_badge strong,
  .alert_title_badge strong {
    font-size: 1.6rem;
  }

  .viewer_description,
  .alert_description,
  .solution_description {
    margin-bottom: 50px;
  }

  .viewer_description p,
  .alert_description p,
  .solution_description p {
    font-size: 1rem;
  }

  .fastro_solution_section {
    min-height: 80vh;
  }

  .solution_container {
    padding: 0 20px;
  }

  .solution_title {
    font-size: 2.5rem;
  }

  .fastro_pc_section {
    min-height: 80vh;
  }

  .pc_container {
    padding: 0 20px;
  }

  .pc_subtitle {
    font-size: 1.6rem;
  }

  .pc_title {
    font-size: 2.5rem;
  }

  .pc_description {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .fastro_section {
    padding: 60px 0;
  }

  .fastro_container {
    padding: 0 20px;
  }

  .fastro_header {
    margin-bottom: 50px;
  }

  .fastro_main_title {
    font-size: 2.8rem;
  }

  .fastro_sub_title {
    font-size: 1.5rem;
  }

  .fastro_description {
    font-size: 0.95rem;
  }

  .fastro_features {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .feature_card {
    padding: 30px 25px;
  }

  .feature_icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .feature_title {
    font-size: 1.15rem;
  }

  .feature_description {
    font-size: 0.95rem;
  }

  .fastro_workflow_section {
    padding: 60px 0;
  }

  .workflow_title_badge {
    padding: 4px 25px;
    margin-bottom: 35px;
  }

  .workflow_title_badge strong {
    font-size: 1.4rem;
  }

  .workflow_description {
    margin-bottom: 35px;
    max-width: 700px;
  }

  .workflow_description p {
    font-size: 0.95rem;
  }

  .workflow_image_container {
    padding: 0.7rem;
  }

  .workflow_image_inbox {
    padding: 30px 8px;
  }

  .fastro_chat_section {
    padding: 60px 0;
  }

  .chat_container {
    padding: 0 20px;
  }

  .chat_title_badge {
    padding: 4px 25px;
    margin-bottom: 24px;
  }

  .chat_title_badge strong {
    font-size: 1.4rem;
  }

  .chat_main_title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .chat_description {
    margin-bottom: 40px;
  }

  .chat_description p {
    font-size: 0.95rem;
  }

  .chat_visual > img {
    max-width: 900px;
  }

  .fastro_viewer_section,
  .fastro_alert_section {
    padding: 60px 0;
  }

  .viewer_title_badge,
  .alert_title_badge {
    padding: 4px 25px;
    margin-bottom: 24px;
  }

  .viewer_title_badge strong,
  .alert_title_badge strong {
    font-size: 1.4rem;
  }

  .viewer_main_title,
  .alert_main_title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .viewer_description,
  .alert_description,
  .solution_description {
    margin-bottom: 40px;
  }

  .viewer_description p,
  .alert_description p,
  .solution_description p {
    font-size: 0.95rem;
  }

  .viewer_container,
  .alert_container {
    padding: 0 20px;
  }

  .fastro_solution_section {
    min-height: 60vh;
    padding: 100px 0;
  }

  .solution_container {
    padding: 0 15px;
  }

  .solution_title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .fastro_pc_section {
    min-height: 60vh;
    padding: 80px 0;
  }

  .pc_container {
    padding: 0 15px;
    flex-direction: column;
    gap: 40px;
    justify-content: flex-start;
  }

  .pc_text_right {
    text-align: left;
  }

  .pc_subtitle {
    font-size: 1.4rem;
  }

  .pc_title {
    font-size: 2rem;
  }

  .pc_description {
    font-size: 1rem;
  }

  .pc_link_wrap {
    bottom: 60px;
  }
}

@media (max-width: 480px) {
  .fastro_section {
    padding: 40px 0;
  }

  .fastro_container {
    padding: 0 15px;
  }

  .fastro_header {
    margin-bottom: 40px;
  }

  .fastro_main_title {
    font-size: 2.2rem;
  }

  .fastro_sub_title {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .fastro_description {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .fastro_features {
    margin-top: 30px;
    gap: 15px;
  }

  .feature_card {
    padding: 25px 20px;
  }

  .feature_icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .feature_title {
    font-size: 1.05rem;
    margin-bottom: 15px;
  }

  .feature_description {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .fastro_workflow_section {
    padding: 40px 0;
  }

  .workflow_container {
    padding: 0 20px;
  }

  .workflow_title_badge {
    padding: 3px 18px;
    margin-bottom: 25px;
  }

  .workflow_title_badge strong {
    font-size: 1.1rem;
  }

  .workflow_description {
    margin-bottom: 25px;
    max-width: 100%;
  }

  .workflow_description p {
    font-size: 0.875rem;
    line-height: 1.7;
  }

  .workflow_image_container {
    padding: 0.5rem;
  }

  .workflow_image_inbox {
    padding: 20px 5px;
  }

  .fastro_chat_section {
    padding: 40px 0;
  }

  .chat_container {
    padding: 0 20px;
  }

  .chat_title_badge {
    padding: 3px 18px;
    margin-bottom: 20px;
  }

  .chat_title_badge strong {
    font-size: 1.1rem;
  }

  .chat_main_title {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }

  .chat_description {
    margin-bottom: 30px;
  }

  .chat_description p {
    font-size: 0.875rem;
    line-height: 1.7;
  }

  .chat_visual > img {
    max-width: 100%;
  }

  .fastro_viewer_section,
  .fastro_alert_section {
    padding: 40px 0;
  }

  .viewer_container,
  .alert_container {
    padding: 0 20px;
  }

  .viewer_title_badge,
  .alert_title_badge {
    padding: 3px 18px;
    margin-bottom: 20px;
  }

  .viewer_title_badge strong,
  .alert_title_badge strong {
    font-size: 1.1rem;
  }

  .viewer_main_title,
  .alert_main_title {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }

  .viewer_description,
  .alert_description,
  .solution_description {
    margin-bottom: 30px;
  }

  .viewer_description p,
  .alert_description p,
  .solution_description p {
    font-size: 0.875rem;
    line-height: 1.7;
  }

  .fastro_solution_section {
    min-height: auto;
    padding: 60px 0;
  }

  .solution_container {
    padding: 0 20px;
  }

  .solution_title {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 25px;
  }

  .fastro_pc_section {
    min-height: auto;
    padding: 60px 0;
  }

  .pc_container {
    padding: 0 20px;
    gap: 30px;
  }

  .pc_subtitle {
    font-size: 1.1rem;
  }

  .pc_title {
    font-size: 1.5rem;
  }

  .pc_description {
    font-size: 0.875rem;
    line-height: 1.6;
  }

  .pc_link_wrap {
    bottom: 40px;
  }
}
