.hero-section {
  position: relative;
  background: #F2F2F2;
  padding: 80px 40px 122px 40px;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-content div {
  flex: 1;
}

.hero-text {
  margin-top: 46px;
}

.hero-text h1 {
  font-size: 46px;
  font-weight: 500;
  line-height: 1.2;
  color: #002644;
  margin-bottom: 20px;
}

.hero-text h1 span {
  display: block;
}

.hero-subtext {
  font-size: 16px;
  color: #707070;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 500px;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.hero-buttons button {
  height: 54px;
  width: 200px;
}

.btn-primary {
  background: #30C5FF;
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-size: 24px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: #28b0e6;
  transform: translateY(-2px);
}

.btn-secondary {
  background: white;
  color: #002644;
  border: 1px solid #000000;
  border-radius: var(--border-radius);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-secondary:hover {
  color: #30C5FF;
  border: 1px solid #30C5FF;
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  width: 100%;
}

.hero-video {
  width: 100%;
  height: auto;
  display: block;
}

.category-buttons {
  display: flex;
  justify-content: center;
  gap: 31px;
  flex-wrap: wrap;
  margin: 0 auto;
  transform: translateY(-28px);
  z-index: 2;
  position: relative;
}

.category-btn {
  background: white;
  color: #002644;
  border: 1px solid #002644;
  padding: 15px 43px;
  border-radius: var(--border-radius);
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  min-width: 200px;
  height: 57px;
}

.category-btn:hover {
  border-color: #30C5FF;
  color: #30C5FF;
}

.workflow-section {
  background: #ffffff;
  padding: 16px 40px;
  text-align: center;
  position: relative;
  margin-bottom: 40px;
  z-index: 0;

  .bg-rings {
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    display: flex;
    justify-content: center;

    .ring {
      height: 1378px;
      width: 1378px;
      border-radius: 50%;
      position: absolute;
      border: 220px solid #f7f7f7;

      &:first-child {
        margin-right: 1100px;
        top: -270px;
      }
      &:last-child {
        margin-left: 1620px;
        top: -160px;
        border: 150px solid #fdfdfd;
        height: 800px;
        width: 800px;
      }
    }
  }

  /* Ensure content is above bg-rings */

  & > *:not(.bg-rings) {
    position: relative;
    z-index: 1;
  }
}

.workflow-section img {
  width: -webkit-fill-available;
  max-width: 966px;
  height: auto;
}

.workflow-section h2 {
  font-size: 40px;
  font-weight: 500;
  color: #002644;
  margin-bottom: 12px;
}

.workflow-section .highlight {
  color: #30C5FF;
}

.reshaping-section {
  background: #004E89;
  padding: 120px 40px;
  color: white;
  text-align: left;
  height: 723px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.reshaping-content {
  margin: 0 auto;
}

.reshaping-section h2 {
  font-size: 60px;
  font-weight: 500;
  line-height: 1.3;
  max-width: 600px;
  color: #30C5FF;
}

.reshaping-section h2 span {
  color: #ffffff;
}

.sales-section {
  background: white;
  padding: 63px 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.sales-section h2 {
  font-size: 40px;
  font-weight: 500;
  color: #002644;
  line-height: 50px;
}

.sales-section .highlight {
  color: #30C5FF;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
    gap: 40px;
  }

  .hero-text {
    margin-top: 20px;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .category-buttons {
    gap: 15px;
    padding: 0 20px;
  }

  .category-btn {
    min-width: 180px;
    font-size: 18px;
  }

  .workflow-section {
    padding: 40px 30px;
  }

  .workflow-section h2 {
    font-size: 32px;
  }

  .reshaping-section {
    height: auto;
    padding: 80px 30px;
  }

  .reshaping-section h2 {
    font-size: 40px;
  }

  .sales-section {
    padding: 50px 30px;
  }

  .sales-section h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 30px 20px 80px 20px;
    min-height: auto;
  }

  .hero-content {
    flex-direction: column-reverse;
  }

  .hero-text {
    margin-top: 0;
  }

  .hero-text h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-subtext {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons button {
    width: 100%;
    height: 48px;
    font-size: 16px;
  }

  .btn-primary {
    font-size: 18px;
  }

  .category-buttons {
    flex-direction: column;
    padding: 0 20px;
    gap: 12px;
    transform: translateY(-20px);
  }

  .category-btn {
    width: 100%;
    min-width: 100%;
    font-size: 16px;
    padding: 12px 20px;
    height: 50px;
  }

  .workflow-section {
    padding: 30px 20px;
    margin-bottom: 30px;
  }

  .workflow-section h2 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 8px;
  }

  .workflow-image {
    margin: 20px auto;
  }

  .reshaping-section {
    padding: 60px 20px;
    height: auto;
  }

  .reshaping-content div {
    width: 100% !important;
  }

  .reshaping-section h2 {
    font-size: 32px;
    max-width: 100%;
  }

  .sales-section {
    padding: 40px 20px;
  }

  .sales-section h2 {
    font-size: 24px;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 24px;
  }

  .hero-subtext {
    font-size: 13px;
  }

  .workflow-section h2 {
    font-size: 20px;
  }

  .reshaping-section h2 {
    font-size: 28px;
  }

  .sales-section h2 {
    font-size: 20px;
    line-height: 1.5;
  }

  .category-btn {
    font-size: 15px;
  }
}
