.banner {
  background: #3D464F;
  height: 982px;
  position: relative;
}

.about .result-text {
  font-size: 21px !important;
  margin-top: 30px;
}
.banner.title-bg {
  background: url(../images/title_background.webp) no-repeat center center/cover, #000;
}
.banner .container {
  position: relative;
  height: 100%;
  max-width: 1185px;
}
.banner .des {
  position: absolute;
  top: 50%;
  left: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 30px;
  color: #fff;
  margin-top: -20px;
}
.banner .des h4 {
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.1em;
  opacity: 0.5;
  margin-bottom: 20px;
}
.banner .des h1 {
  font-size: 44px;
  line-height: 67px;
  letter-spacing: 0.1em;
  margin-bottom: 0;
}
.banner .des h1 .big-text {
  font-size: 60px;
  font-weight: 900;
  color: #fff;
  display: inline-block;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}
.banner .des h1 .brand-highlight {
  display: block;
  text-align: center;
  font-size: 64px;
  font-weight: 900;
  color: #E4D900;
  margin-bottom: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  background: linear-gradient(45deg, #E4D900, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(228, 217, 0, 0.5);
  animation: glow 2s ease-in-out infinite alternate;
}
.banner .des h1 .brand-highlight::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #E4D900, transparent);
  transform: translateX(-50%);
  animation: underlineExpand 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}
@keyframes glow {
  from {
    text-shadow: 0 0 20px rgba(228, 217, 0, 0.5), 0 0 30px rgba(228, 217, 0, 0.3);
  }
  to {
    text-shadow: 0 0 30px rgba(228, 217, 0, 0.8), 0 0 40px rgba(228, 217, 0, 0.5);
  }
}
@keyframes brandSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes underlineExpand {
  from {
    width: 0;
  }
  to {
    width: 80%;
  }
}

/* Catchcopy Section */
.catchcopy-section {
  background: #000;
  padding: 80px 0;
  color: #fff;
  text-align: center;
}

.catchcopy-content {
  max-width: 900px;
  margin: 0 auto;
}

.catchcopy-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: #fff;
  margin: 0;
  position: relative;
}

.catchcopy-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #E4D900, #FFD700);
  transform: translateX(-50%);
  border-radius: 2px;
}

@media (max-width: 767px) {
  .catchcopy-section {
    padding: 60px 20px;
  }
  
  .catchcopy-title {
    font-size: 24px;
    line-height: 1.3;
    padding: 0 10px;
  }
  
  .catchcopy-title::after {
    width: 60px;
    bottom: -12px;
  }
}

/* Cost Reduction Metrics Section */
.cost-reduction-metrics {
  background: #000;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cost-reduction-metrics::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(228, 217, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(228, 217, 0, 0.1) 0%, transparent 50%);
}
.metrics-title {
  font-size: 36px;
  color: #fff;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 700;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.metrics-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.metric-item {
  text-align: center;
  flex: 1;
  min-width: 250px;
  animation: fadeInUp 1s ease-out;
}
.metric-number {
  font-size: 72px;
  font-weight: 900;
  color: #E4D900;
  line-height: 1;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(228, 217, 0, 0.5);
}
.metric-number .percent,
.metric-number .times,
.metric-number .hours {
  font-size: 36px;
  font-weight: 700;
  margin-left: 5px;
}
.metric-label {
  font-size: 24px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}
.metric-desc {
  font-size: 16px;
  color: #ccc;
  line-height: 1.5;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Automation Menu Section */
.automation-menu {
  background: #E4D900;
  padding: 80px 0;
  position: relative;
}

.automation-menu .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.automation-menu-title {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 0.1em;
  position: relative;
}

.automation-menu-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  width: 80px;
  height: 3px;
  background: #000;
  transform: translateX(-50%);
  border-radius: 2px;
}

.automation-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.automation-menu-item {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.automation-menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.automation-menu-number {
  font-size: 20px;
  font-weight: 700;
  color: #E4D900;
  margin-bottom: 10px;
}

.automation-menu-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
  line-height: 1.4;
}

.automation-menu-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 767px) {
  .automation-menu {
    padding: 60px 20px;
  }

  .automation-menu-title {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .automation-menu-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .automation-menu-item {
    padding: 20px;
  }

  .automation-menu-item h3 {
    font-size: 18px;
  }
}

/* Floating CTA Button */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  opacity: 0;
  transform: translateY(100px) scale(0.8);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}

.floating-cta.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.floating-cta-btn {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  background: linear-gradient(135deg, #E4D900, #FFD700);
  color: #000;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(228, 217, 0, 0.3), 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.floating-cta-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 40px rgba(228, 217, 0, 0.5), 0 6px 20px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #FFD700, #E4D900);
}

.floating-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.8s ease;
}

.floating-cta-btn:hover::before {
  left: 100%;
}

.cta-text {
  margin-right: 8px;
  letter-spacing: 0.05em;
}

.cta-icon {
  font-size: 18px;
  font-weight: 900;
  transition: transform 0.3s ease;
}

.floating-cta-btn:hover .cta-icon {
  transform: translateX(4px);
}

@media (max-width: 767px) {
  .floating-cta {
    bottom: 20px;
    right: 20px;
  }
  
  .floating-cta-btn {
    padding: 14px 20px;
    font-size: 14px;
  }
  
  .cost-reduction-metrics {
    padding: 60px 20px;
  }
  .cost-reduction-metrics .container {
    padding: 0 15px;
  }
  .metrics-title {
    font-size: 24px;
    margin-bottom: 40px;
    line-height: 1.3;
    padding: 0 10px;
  }
  .metrics-grid {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
  .metric-item {
    min-width: 100%;
    max-width: 320px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(228, 217, 0, 0.3);
  }
  .metric-number {
    font-size: 56px;
    margin-bottom: 15px;
  }
  .metric-number .percent,
  .metric-number .times,
  .metric-number .hours {
    font-size: 28px;
  }
  .metric-label {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .metric-desc {
    font-size: 14px;
    line-height: 1.4;
  }
}
.banner .scroll-down {
  position: absolute;
  right: 29px;
  bottom: 0;
  font-weight: 700;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.2em;
  padding: 0 23px 88px 27px;
  background: url(../images/down.svg) no-repeat left top 4px/17px auto;
}
.banner .scroll-down:after {
  height: 100%;
  width: 2px;
  background: #E4D900;
  position: absolute;
  top: 0;
  right: 0;
  content: "";
}
.banner .scroll-down a {
  color: #fff;
}
.banner .scroll-down a:hover {
  color: #E4D900;
}

.about {
  background: #E4D900;
  padding: 140px 0 87px;
}
.about .top {
  
  padding-bottom: 52px;
  position: relative;
}

.about .top h5 {
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.3em;
  color: #000000;
  margin-bottom: 19px;
}
.about .top h2 {
  font-size: 55px;
  line-height: 67px;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  margin-bottom: 0;
}
.about .top p {
  text-align: left;
  font-size: 18px;
  line-height: 1.8;
  color: #000;
  margin-bottom: 20px;
}
.about .top p.methodology-subtitle {
  text-align: center;
}
.about .top p.company-intro {
  margin-bottom: 40px;
}

.consultant-background-title {
  font-size: 20px;
  font-weight: bold;
  color: #000;
  margin: 30px 0 15px;
  text-align: center;
}

.consultant-background {
  margin-bottom: 40px;
}

.consultant-background p {
  font-size: 16px;
  line-height: 1.8;
  color: #000;
  margin-bottom: 12px;
  text-align: left;
  position: relative;
  padding-left: 20px;
}

.consultant-background p:before {
  content: '•';
  position: absolute;
  left: 0;
  color: #E4D900;
  font-weight: bold;
}
.about .top p.main-title {
  text-align: center;
  font-size: 24px;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 30px;
  position: relative;
}
.about .top p.main-title .highlight-text {
  background: linear-gradient(135deg, #000 0%, #333 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}
.about .top p.main-title .highlight-text::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #E4D900, #FFD700);
  border-radius: 2px;
  animation: underlineGlow 2s ease-in-out infinite alternate;
}
@keyframes underlineGlow {
  from {
    box-shadow: 0 0 5px rgba(228, 217, 0, 0.5);
  }
  to {
    box-shadow: 0 0 15px rgba(228, 217, 0, 0.8);
  }
}
.about .top p.sub-title {
  text-align: center;
  font-size: 21px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 30px;
}
.about .bottom {
  padding-top: 64px;
}
.about .top-content {
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .about .top-content {
    width: 50%;
  }
}
.about .strength-title {
  font-size: 20px;
  font-weight: bold;
  color: #000;
  margin: 30px 0 10px;
  text-align: center;
}
.about .methodology-subtitle {
  font-size: 16px;
  color: #666;
  margin: 0 0 20px;
  text-align: center;
  font-style: italic;
  display: block;
  width: 100%;
}
.about .strength-items {
  margin-bottom: 30px;
}
.about .strength-item {
  margin-bottom: 25px;
  text-align: left;
}
.about .strength-item h4 {
  font-size: 20px;
  font-weight: bold;
  color: #000;
  margin-bottom: 15px;
  line-height: 1.4;
}
.about .strength-item p {
  font-size: 18px;
  line-height: 1.8;
  color: #000;
  margin-bottom: 0;
}
.about .bottom h4 {
  margin-bottom: 16px;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.3em;
  color: #FFFFFF;
}
.about .bottom p {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.3em;
  color: #000000;
  margin-bottom: 44px;
}
.about .bottom p:last-child {
  margin-bottom: 0;
}
.about .bottom p a {
  color: #000;
}
.about .bottom p a:hover {
  color: #fff;
}

.mission {
  background: #000000;
  padding: 160px 0 180px;
  color: #fff;
}
.mission h5 {
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.3em;
  margin-bottom: 88px;
}
.mission h2 {
  margin-bottom: 0;
  font-size: 55px;
  line-height: 67px;
  letter-spacing: 0.1em;
}

.function {
  color: #000;
}
.function.vision {
  background: #000;
  color: #fff;
}
.function .container {
  max-width: 1169px;
}
.function .top {
  padding: 174px 0 275px;
  position: relative;
}
.function .top .bg {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
}
.function .top .list-title .item {
  margin-bottom: 312px;
  position: relative;
}
.function .top .list-title .item:first-child {
  text-align: right;
}
.function .top .list-title .item:first-child .box {
  text-align: left;
  display: inline-block;
}
.function .top .list-title .item:last-child {
  margin-bottom: 0;
}
.function .top .list-title .item h4 {
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.3em;
  padding-bottom: 24px;
  position: relative;
  margin-bottom: 16px;
}
.function .top .list-title .item h4:after {
  background: #E4D900;
  width: 66px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
}
.function .top .list-title .item h3 {
  font-size: 40px;
  line-height: 175%;
  letter-spacing: 0.1em;
  margin-bottom: 0;
}
.function .bottom {
  padding-bottom: 125px;
}

.function {
  background-color: #000;
  padding: 80px 0 125px;
  color: #fff;
}
.function .container {
  max-width: 790px;
}
.function .list .item {
  margin-bottom: 40px;
}
.function .list .item:last-child {
  margin-bottom: 0;
}
.function .list .item .title {
  margin-bottom: 8px;
}
.function .list .item .title h3 {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  font-weight: 600;
  color: #fff;
}
.function .list .item .title h3 span {
  font-size: 20px;
  letter-spacing: 0.05em;
  color: #E4D900;
  display: inline-block;
  margin-right: 15px;
  font-weight: 700;
}
.function .list .item .title h3 br {
  display: none;
}
.function .list .item .title .tag {
  display: inline-block;
  margin-right: 8px;
  margin-bottom: 8px;
  margin-top: 8px;
}
.function .list .item .title .tag span {
  display: inline-block;
  background: #3D464F;
  border-radius: 15px;
  padding: 7px 15px;
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.1em;
  color: #FFFFFF;
}
.function .list .item .des p {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  margin-bottom: 0;
  padding-left: 35px;
  color: #ccc;
}
.function .list .item .des .btn {
  font-weight: 600;
  font-size: 12px;
  line-height: 175%;
  letter-spacing: 0.1em;
  color: #000000;
  padding: 4px 12px;
  border: 1px solid #000000;
  display: inline-block;
}
.function .list .item .des .btn:hover {
  background: #000;
  color: #fff;
}

.title-line h4 {
  padding-bottom: 24px;
  font-size: 32px;
  line-height: 20px;
  letter-spacing: 0.3em;
  position: relative;
  margin-bottom: 20px;
}

.title-section {
  margin-bottom: 60px;
}

.title-section .tagline {
  font-size: 21px;
  line-height: 1.6;
  margin-top: 10px;
}
.title-line h4:after {
  background: #E4D900;
  width: 66px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  right: 0;
  margin: 0 auto;
}

.function .title-line h4 {
  color: #fff;
}

.function .title-line h4:after {
  background: #E4D900;
}

.company {
  background: #000000;
  padding: 120px 0 110px;
  color: #fff;
}
.company .container {
  max-width: 990px;
}
.company .title {
  margin-bottom: 119px;
}
.company .title h3 {
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0.3em;
  margin: 0;
}
.company .title .line {
  display: inline-block;
  height: 80px;
  width: 2px;
  background: #E4D900;
  margin: 24px 0 20px;
}
.company .des p {
  font-size: 18px;
  line-height: 200%;
  letter-spacing: 0.1em;
  margin-bottom: 48px;
}
.company .des p small {
  font-size: 12px;
}
.company .des p:last-child {
  margin-bottom: 0;
}

.case-studies {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 50px;
  max-width: 1400px;
  margin: 60px auto 0;
  padding: 0 20px;
}

.case-study-item {
  flex: 1;
  max-width: 350px;
  text-align: center;
}

.case-study-item {
  transition: transform 0.3s ease;
}

.case-study-item:hover {
  transform: translateY(-10px);
}

.case-study-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.case-study-item h4 {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 600;
}

.case-study-item h4 span {
  color: #E4D900;
  font-weight: 700;
  margin-right: 8px;
}

.case-study-item p {
  font-size: 13px;
  line-height: 1.6;
  color: #ccc;
}

.outline {
  padding: 131px 0 137px;
  color: #000000;
}
.outline .title-line h4 {
  margin-bottom: 87px;
}
.outline .container {
  max-width: 796px;
}
.outline .box table {
  width: 100%;
  border-collapse: collapse;
}
.outline .box table tr td {
  padding: 27px 0;
  border-bottom: 1px solid #000000;
  font-weight: 500;
  font-size: 18px;
  line-height: 175%;
  letter-spacing: 0.1em;
}
.outline .box table tr td:first-child {
  font-weight: 700;
  width: 192px;
  padding-right: 20px;
}
.outline .box table tr td a {
  color: #000;
}
.outline .box table tr td a:hover {
  color: #E4D900;
}

@media (max-width: 991px) {
  .mission h2 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .banner {
    height: 100vh;
    min-height: 812px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .banner .container {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  .banner .des {
    margin-top: 0;
    position: absolute;
    top: 50%;
    left: 15px;
    right: 15px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    padding-top: 60px;
  }
  .banner .des h4 {
    margin-bottom: 13px;
  }
  .banner .des h1 {
    font-size: 22px;
    line-height: 30px;
  }
  .banner .des h1 .big-text {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  }
  .banner .des h1 .brand-highlight {
    font-size: 1.5rem;
    margin-bottom: 10px;
    letter-spacing: 0.08em;
    font-weight: 900;
    position: relative;
    background: linear-gradient(45deg, #E4D900, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(228, 217, 0, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
  }
  .banner .des h1 .brand-highlight::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #E4D900, transparent);
    transform: translateX(-50%);
    animation: underlineExpand 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
  }
  .banner .scroll-down {
    padding: 0 25px 88px 27px;
  }

  .about {
    padding: 89px 0;
  }
  .about .top {
    padding-bottom: 30px;
  }
  .about .top h5 {
    margin-bottom: 16px;
  }
  .about .top h2 {
    font-size: 35px;
    line-height: 43px;
  }

  .about .bottom {
    padding-top: 42px;
  }
  .about .bottom h4 {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 9px;
  }
  .about .bottom p {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 25px;
  }
  .about .top p {
    line-break:strict;
    word-break:break-word;
    overflow-wrap:break-word;
    word-wrap:break-word;
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 18px;
    text-align: left;
  }
  .about .top p.main-title {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 10px;
    padding: 0 !important;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .about .top p.main-title .highlight-text::after {
    height: 2px;
    bottom: -3px;
  }
  .about .top p.sub-title {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 15px;
    padding: 0;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }

  .mission {
    padding: 72px 0;
  }
  .mission h5 {
    font-size: 12px;
    line-height: 15px;
    margin-bottom: 24px;
  }
  .mission h2 {
    font-size: 30px;
    line-height: 200%;
  }

  .function {
    text-align: center;
  }
  .function .top {
    padding: 63px 0 120px;
  }
  .function .top .bg {
    display: none;
  }
  .function .top .list-title .item {
    margin-bottom: 88px;
    text-align: center !important;
  }
  .function .top .list-title .item .box {
    text-align: center !important;
  }
  .function .top .list-title .item h4 {
    font-size: 12px;
    line-height: 15px;
    padding-bottom: 16px;
    margin-bottom: 24px;
    text-align: center;
  }
  .function .top .list-title .item h4:after {
    right: 0;
    margin: 0 auto;
  }
  .function .top .list-title .item h3 {
    font-size: 25px;
    line-height: 175%;
  }
  .function .bottom {
    padding-bottom: 75px;
  }
  .function .bottom .list .item {
    margin-bottom: 67px;
  }
  .function .list .item .title {
    margin-bottom: 16px;
  }
  .function .list .item .title h3 {
    margin-bottom: 14px;
    font-size: 18px;
    line-height: 175%;
  }
  .function .list .item .title h3 span {
    display: block;
    margin: 0 0 4px;
  }
  .function .list .item .title h3 br {
    display: block;
  }
  .function .list .item .des p {
    text-align: left;
    font-size: 15px;
    line-height: 175%;
    margin-bottom: 18px;
  }

  .on-sp {
    display: block;
  }

  .on-pc {
    display: none;
  }

  .title-line h4 {
    font-size: 28px;
    line-height: 15px;
    padding-bottom: 16px;
    margin-bottom: 44px;
  }

  .company {
    padding: 88px 0 82px;
  }
  .company .title {
    margin-bottom: 88px;
  }
  .company .title h3 {
    font-size: 20px;
    line-height: 24px;
  }
  .company .des p {
    font-size: 15px;
    line-height: 200%;
    margin-bottom: 36px;
  }
  .company .des p span {
    font-size: 18px;
  }

  .case-studies {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
  }

  .case-study-item {
    max-width: 100%;
  }

  .case-study-item h4 {
    font-size: 16px;
  }

  .case-study-item p {
    font-size: 13px;
  }

  .outline {
    padding: 88px 0 92px;
  }
  .outline .title-line h4 {
    margin-bottom: 30px;
  }
  .outline .box table tr td {
    font-size: 15px;
    line-height: 18px;
    padding: 34px 0;
  }
  .outline .box table tr td:first-child {
    width: 84px;
    padding-right: 5px;
    font-size: 14px;
    line-height: 17px;
  }

  .about .bottom p {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 25px;
  }
  .about .top p {
    font-size: 15px;
    line-height: 1.8;
    padding: 18px 24px 18px 36px;
    margin-bottom: 20px;
    border-radius: 12px;
  }
  .about .top p:first-child {
    font-size: 18px;
    line-height: 1.6;
    padding: 24px 28px 24px 40px;
  }
  .about .top p:first-child::after {
    font-size: 20px;
    right: 16px;
  }
  .about .top p:nth-child(2)::after,
  .about .top p:nth-child(3)::after {
    font-size: 18px;
    right: 12px;
    top: 12px;
  }
  .about .top p:last-child {
    font-size: 17px;
    padding: 16px 24px;
  }
  .about .result-text {
    font-size: 21px !important;
  }
  .about .top p::before {
    width: 4px;
  }
  .about .top p:first-child::before {
    width: 6px;
  }

  .top-content {
    width: 100%;
    margin: 0 auto;
  }

  .about .strength-title {
    font-size: 18px;
    margin: 25px 0 20px;
  }
  .about .strength-items {
    margin-bottom: 25px;
  }
  .about .strength-item {
    margin-bottom: 20px;
  }
  .about .strength-item h4 {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.5;
  }
  .about .strength-item p {
    font-size: 15px;
    line-height: 1.75;
  }
  
  .consultant-background-title {
    font-size: 18px;
    margin: 25px 0 15px;
  }
  
  .consultant-background p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 10px;
    padding-left: 18px;
  }
}

.view-all-works {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 40px;
}

.btn-view-all {
    display: inline-block;
    background: #007bff;
    color: #fff;
    padding: 10px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.btn-view-all:hover {
    background: #0069d9;
    color: #fff;
    text-decoration: none;
}

.contact-section {
    background: #E4D900;
    padding: 80px 0;
    text-align: center;
}

.contact-section .container {
    max-width: 600px;
}

.contact-section h4 {
    font-size: 32px;
    color: #000;
    margin-bottom: 20px;
    font-weight: bold;
}

.contact-section p {
    font-size: 18px;
    color: #000;
    margin-bottom: 30px;
}

.contact-section .btn-contact {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-section .btn-contact:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-section h4 {
        font-size: 24px;
    }
    
    .contact-section p {
        font-size: 16px;
    }
    
    .contact-section .btn-contact {
        padding: 12px 30px;
        font-size: 15px;
    }
}
