@charset "UTF-8";

#sub {
  .sub_tit {
    height: calc(100vw / 16 * 9 / 2);
    background-size: cover;
    background-position: bottom center;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;


    >div {
      h1 {
        color: var(--fff);
        font-size: 10rem;
      }
      H2{
        color: var(--fff);
        font-size: 3rem;
        letter-spacing: .5rem;
        margin-top: -1rem;
      }

      p {
        color: var(--fff);
        letter-spacing: 2rem;
        font-weight: 300;
        text-transform: uppercase;
      }
    }

  }

  .content_wrap {
    padding: 13rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
  }
}

@media (max-width: 1024px) {
  #sub {
    .sub_tit {
      height: 50rem;

      >div {
        margin-top: 2rem;

        h1 {
          font-size: 5rem;
        }
        h2{
          font-size:2rem;
        }

        p {
          margin-top: 0;
          letter-spacing: .5rem;
        }
      }
    }

    .content_wrap {
      padding: 6rem 3rem;
    }
  }
}

@media (max-width: 768px) {
  #sub {
    .sub_tit {
      height: 30rem;
    }
  }
}


/*paging*/
.paging {
  text-align: center;
  font-family: 'Roboto';
  margin-top: 8rem;
  margin-bottom: 4rem;







  li {
    display: inline-block;
    width: 4rem;
    height: 4rem;
    line-height: 4rem;
    vertical-align: top;
    border-radius: 10rem;


    a {
      display: block;
      font-size: 2rem;

      &:before {
        font-family: "icon_font";
        font-size: 14px;
        position: relative;
        display: inherit;
      }
    }

    &:hover,
    &.active {
      background: var(--222);
      color: var(--fff);

      a {
        color: var(--fff);
      }
    }
  }
}

.paging li:first-child a:before {
  content: '\E838\E838';
}

.paging li:nth-child(2) a:before {
  content: '\E838';
}

.paging li:nth-last-child(2) a:before {
  content: '\E837';
}

.paging li:last-child a:before {
  content: '\E837\E837';
}



/*list_search*/
.list_search {
  margin-top: 5rem;
  position: relative;
  z-index: 1;
  padding: 0 2rem;
  display: flex;
  justify-content: center;

  .select {
    &::after {
      height: 57px;
      line-height: 57px;
    }

    select {
      /* border-radius: 100px 0 0 100px; */
      border-right: 0;
      padding: 5px 1px 5px 20px;
      height: 57px;
    }
  }

  >input[type="text"] {
    border-right: 0;
    height: 25px;
    padding: 15px 10px;
    /* max-width: 50%; */
  }

  >input[type="submit"] {
    background: #a5a5a5;
    border: 1px solid #a5a5a5;
    color: #fff;
    padding: 15px 35px;
    height: 57px;
    /* margin-left: -6px; */
    cursor: pointer;
    margin-top: 0;
    /* border-radius: 0 100px 100px 0; */
    font-size: 20px;
  }

  button {
    float: right;
    background: #422311;
    border: 1px solid #422311;
    color: #fff;
    padding: 15px 30px;
    font-weight: 500;
    cursor: pointer;
    position: absolute;
    right: 20px;
    font-size: 18px;
    border-radius: 100px;
  }
}

@media (max-width: 768px) {
  .list_search {
    display: none;
  }
}


/*news*/
.news {
  .sub_tit {
    background-image: url('../sub/images/new_tit.jpg');
  }

  .content_wrap {
    .list {
      display: flex;
      flex-direction: column;
      gap: 10rem;
      align-items: center;

      li {
        display: flex;
        justify-content: space-between;
        flex-direction: row-reverse;
        gap: 5rem;
        align-items: flex-start;
        width: 100%;

        >div {
          flex: 1;

          p {
            margin: 0;
          }
        }



        img {
          /* max-width: 600px; */
        }

        h4 {
          height: auto;
          padding-bottom: 2rem;
          position: relative;
          font-size: 3rem;
          padding-top: 5rem;





          &:before {
            content: '';
            width: 110%;
            display: block;
            height: 3px;
            background: #d3b188;
            margin-bottom: 30px;
            margin-right: -100px;
            background: linear-gradient(to right, #88664c 0%, #a98061 50%, #fed590 100%);
            background: var(--444);
            position: absolute;
            top: 3rem;
          }
        }

        h3 {
          font-size: 3rem;
        }

        p {
          font-size: 2rem;
          line-height: 1.6em;
          color: var(--666);
          display: -webkit-box;
          -webkit-line-clamp: 5;
          -webkit-box-orient: vertical;
          overflow: hidden;
          text-overflow: ellipsis;
        }

        a.go_btn {
          background: var(--222);
          color: var(--fff);
          padding: .5em 2em;
          font-size: 2rem;
          display: inline-block;
          margin-top: 5rem;
        }

        &:nth-child(2n) {
          flex-direction: row;

          h4 {
            &:before {
              /* margin-left: -100px; */
              margin-right: 0;
              right: 0;
            }
          }
        }
      }
    }
  }
}

@media (max-width: 1024px) {
  .news {
    .content_wrap {

      .list {
        li {
          display: flex;
          flex-direction: column;
          gap: 3rem;


          img {
            max-width: 100%;
            width: 100%;
          }

          h4 {
            padding-bottom: 0;
            font-size: 2.4rem;
            padding-top: 0;


            &:before {
              display: none;
            }

            &:after {
              content: '';
              width: auto;
              display: block;
              height: 3px;
              background: #d3b188;
              margin-bottom: 1em;
              margin-right: 0;
              margin-top: 1em;
              background: linear-gradient(to right, #88664c 0%, #a98061 50%, #fed590 100%);
              background: var(--aaa);
            }
          }

          &:nth-child(2n) {
            display: flex;
            flex-direction: column;

          }

          a.go_btn {
            margin-top: 3rem;
            display: block;
            text-align: center;
            font-size: 1.25em;
            padding: 1em 2em;
          }
        }
      }
    }
  }
}

/*shop*/
.shop {
  .sub_tit {
    background-image: url('../sub/images/shop_tit.jpg');
  }

  .content_wrap {
    text-align: center;

    h2 {
      font-size: 6rem;
      margin-bottom: 5rem;

      &:after {
        content: '';
        width: .2rem;
        height: 8rem;
        background: var(--222);
        display: block;
        margin: 0 auto;
        margin-top: 5rem;
      }
    }

    h3 {
      font-size: 2.6rem;
      font-weight: 400;
      line-height: 1.6;
    }

    ul {
      display: flex;
      margin-top: 8rem;
      gap: 3rem;

      li {
        .imgWrap {
          overflow: hidden;
          position: relative;

          &:before {
            content: '';
            display: block;
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(35deg, rgba(0, 0, 0, 0.00) 16.64%, rgba(0, 0, 0, 0.6) 120%);
            z-index: 1;
          }


          img {
            transition: all 0.4s ease-in-out;
            display: block;
          }

          p {
            position: absolute;
            right: 3rem;
            top: 3rem;
            /* transform: translate(-50%, 0%); */
            font-size: 3rem;
            color: var(--fff);
            text-align: right;
            z-index: 2;
            margin: 0;
            font-weight: 600;
          }

        }

        h4 {
          font-size: 3rem;
          margin-top: 2rem;



          span {
            font-size: .75em;
            display: block;
            font-weight: 400;
          }
        }

        &:hover {
          img {
            transform: scale(1.2);
          }
        }

      }
    }
  }
}

@media (max-width: 1024px) {
  .shop {
    .content_wrap {
      h2 {
        font-size: 4rem;
        margin-bottom: 3rem;

        &:after {
          margin-top: 2rem;
        }
      }

      h3 {
        font-size: 2rem;
      }

    }
  }
}

@media (max-width: 768px) {
  .shop {
    .content_wrap {
      ul {
        display: flex;
        flex-direction: column;
        gap: 8rem;
      }
    }
  }
}


/*location*/
.location {
  .sub_tit {
    background-image: url('../sub/images/location_tit.jpg');
  }

  .content_wrap {
    text-align: center;

    section {

      >h2 {
        font-size: 6rem;
        margin-bottom: 5rem;

        &:after {
          content: '';
          width: .2rem;
          height: 8rem;
          background: var(--222);
          display: block;
          margin: 0 auto;
          margin-top: 5rem;
        }
      }

      >h3 {
        font-size: 2.6rem;
        font-weight: 400;
        line-height: 1.6;
        /* margin-bottom: 10rem; */
      }

      >div {
        display: flex;
        text-align: left;
        /* gap: 5rem; */
        margin-top: 10rem;
        border-top: 1px solid var(--aaa);
        padding-top: 10rem;
        flex-direction: column-reverse;




        >ul.owl-carousel {
          width: 100%;







          .owl-stage-outer {
            .item {
              img {
                width: 100%;
              }
            }
          }
        }

        >div {
          flex: 1;
          display: flex;
          flex-direction: column;
          justify-content: space-around;
          background: var(--bg);
          padding: 5rem;
          position: relative;




          h4 {
            font-size: 4.2rem;
            font-weight: 700;
          }

          h5 {
            font-size: 2.4rem;
            margin-top: 1rem;
          }

          p {
            font-size: 2rem;
            font-weight: 300;
            color: var(--666);
            line-height: 1.4;
            margin-top: 3rem;
          }

          h6 {
            font-family: "Italianno", cursive;
            font-weight: 300;
            font-size: 10rem;
            opacity: .1;
            position: absolute;
            right: 5rem;
            top: 2rem;
          }

          .my-custom-dots {
            display: flex;
            gap: .8rem;
            justify-content: flex-end;




            .owl-dot {
              border: 0;
              padding: 0;
              margin: 0;

              span {
                display: block;
                width: 1rem;
                height: 1rem;
                background: var(--aaa);
                /* border-radius: 10rem; */
                -webkit-transition: all 0.3s;
                -moz-transition: all 0.3s;
                -ms-transition: all 0.3s;
                -o-transition: all 0.3s;
                transition: all 0.3s;
                cursor: pointer;
                border-radius: 10rem;
              }

              &.active {
                span {
                  width: 5rem;
                  background: var(--444);
                }

              }
            }
          }

          .custom-nav {
            display: none;
          }

        }

        &:nth-child(2n) {
          /* display: flex; */
          /* flex-direction: row-reverse; */
        }
      }
    }


  }
}

@media (max-width: 1024px) {
  .location {
    .content_wrap {
      section {

        h2 {
          font-size: 4rem;
          margin-bottom: 3rem;

          &:after {
            margin-top: 2rem;
          }
        }

        h3 {
          font-size: 2rem;
        }
      }

    }
  }
}

@media (max-width: 768px) {
  .location {
    .content_wrap {
      section {
        >div {
          flex-direction: column;
          margin-top: 5rem;
          padding-top: 5rem;

          >ul.owl-carousel {
            width: 100%;

          }

          >div {
            padding: 3rem;

            h6 {
              right: auto;
              /* top: 0rem; */
              position: relative;
              font-size: 5rem;
            }
          }

          &:nth-child(2n) {
            flex-direction: column;
          }
        }
      }

    }
  }
}


/*about*/
.about {
  .sub_tit {
    background-image: url('../sub/images/about_tit.jpg');
  }

  .content_wrap {
    text-align: center;

    section {

      >h2 {
        font-size: 6rem;
        margin-bottom: 5rem;

        &:after {
          content: '';
          width: .2rem;
          height: 8rem;
          background: var(--222);
          display: block;
          margin: 0 auto;
          margin-top: 5rem;
        }
      }

      >h3 {
        font-size: 2.6rem;
        font-weight: 400;
        line-height: 1.6;
        /* margin-bottom: 10rem; */
      }


    }


  }
}

@media (max-width: 1024px) {
  .about {
    .content_wrap {
      section {

        h2 {
          font-size: 4rem;
          margin-bottom: 3rem;

          &:after {
            margin-top: 2rem;
          }
        }

        h3 {
          font-size: 2rem;
        }
      }

    }
  }
}

@media (max-width: 768px) {
  .about {
    .content_wrap {
      section {
        >div {
          flex-direction: column;
          margin-top: 5rem;
          padding-top: 5rem;


        }
      }

    }
  }
}


/* ===== 회사소개 추가 섹션 ===== */
.about_story_wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 20px 80px;
}

/* 브랜드 스토리 */
.about_story_section {
  text-align: center;
  padding: 60px 0 50px;
  border-bottom: 1px solid #e8e0d5;
  margin-bottom: 60px;
}

.about_label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #c9a96e;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.about_story_title {
  font-size: 3.2rem;
  font-weight: 300;
  color: #1a1a1a;
  line-height: 1.6;
  margin-bottom: 30px;
}

.about_story_title strong {
  font-weight: 700;
}

.about_story_text p {
  font-size: 2rem;
  color: #555;
  line-height: 2;
  margin-bottom: 16px;
}

.about_story_text p strong {
  color: #1a1a1a;
  font-weight: 600;
}

/* 핵심 약속 */
.about_promise_title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 0.04em;
}

.about_promise_grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.about_promise_item {
  flex: 1;
  min-width: 260px;
  padding: 36px 28px;
  background: #f9f7f4;
  border-radius: 12px;
  border-left: 4px solid #c9a96e;
  text-align: left;
}

.promise_number {
  font-size: 4rem;
  font-weight: 800;
  color: #e8e0d5;
  line-height: 1;
  margin-bottom: 14px;
  font-family: Georgia, serif;
}

.about_promise_item h4 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.about_promise_item p {
  font-size: 1.8rem;
  color: #666;
  line-height: 1.5;
}

/* 숫자로 보는 편집스토리 */
.about_numbers_wrap {
  background: #1a1a1a;
  border-radius: 16px;
  padding: 50px 40px;
}

.about_numbers_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.about_number_item {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 20px;
}

.about_number_divider {
  width: 1px;
  height: 60px;
  background: #333;
}

.num_value {
  display: block;
  font-size: 4.4rem;
  font-weight: 700;
  color: #c9a96e;
  line-height: 1.2;
  margin-bottom: 10px;
}

.num_value em {
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 400;
}

.num_label {
  display: block;
  font-size: 2rem;
  color: #aaa;
  letter-spacing: 0.04em;
}

/* 반응형 */
@media (max-width: 768px) {
  .about_story_title {
    /* font-size: 1.3rem; */
  }

  .about_promise_grid {
    flex-direction: column;
  }

  .about_promise_item {
    min-width: unset;
  }

  .about_numbers_inner {
    flex-direction: column;
  }

  .about_number_divider {
    width: 60px;
    height: 1px;
  }

  .about_numbers_wrap {
    padding: 30px 20px;
  }
}


/*consulting*/
.consulting {
  .sub_tit {
    background-image: url('../sub/images/consulting_tit.jpg');
  }

  .content_wrap {
    text-align: center;

    section {

      >h2 {
        font-size: 6rem;
        margin-bottom: 5rem;

        &:after {
          content: '';
          width: .2rem;
          height: 8rem;
          background: var(--222);
          display: block;
          margin: 0 auto;
          margin-top: 5rem;
        }
      }

      >h3 {
        font-size: 2.6rem;
        font-weight: 400;
        line-height: 1.6;
      }

      /* board_write form */
      .board_write {
        margin-top: 10rem;

        dl {
          display: flex;
          border-top: 2px solid var(--222);
          flex-wrap: wrap;



          >div {
            display: flex;
            width: 50%;
            justify-content: space-between;
          }

          dt {
            padding: 1.8rem 1rem 1.8rem 0;
            font-weight: 600;
            font-size: 1.6rem;
            border-bottom: 1px solid #e0e0e0;
            display: flex;
            align-items: center;
            background: #f9f9f9;
            padding-left: 1.5rem;
            flex-direction: column;
            justify-content: center;
            width: 14rem;
            -moz-box-sizing: border-box;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
          }

          dd {
            padding: 1.5rem;
            border-bottom: 1px solid #e0e0e0;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: .8rem;
            width: calc(100% - 14rem);
            -moz-box-sizing: border-box;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;



            &.full {







              textarea,
              input[type="text"],
              input[type="password"] {
                width: 100%;
              }
            }

            input[type="tel"],
            input[type="text"],
            input[type="password"] {
              -moz-box-sizing: border-box;
              -webkit-box-sizing: border-box;
              box-sizing: border-box;
              height: 5rem;
            }

            &.radio-group {
              align-items: center;
              gap: 1rem 3rem;
              padding: 2rem 1rem;
              display: flex;
            }

            &.phone {
              gap: .5rem;
              align-items: center;
              display: flex;
              justify-content: space-between;


              input[type="tel"] {
                width: auto;
                min-width: 0;
                width: calc(33% - 1.5rem);
                max-width: 100%;
              }
            }

            &.e-mail {
              justify-content: space-between;



              input[type="text"] {
                width: calc(100% - 18.1rem);
              }

              &.self {
                input[type="text"] {
                  width: calc(50% - 9.5rem);
                }
              }

            }
          }
        }
      }

      .radio-label {
        display: flex;
        align-items: center;
        gap: .5rem;
        font-size: 1.6rem;
        cursor: pointer;
        flex-wrap: wrap;


        input[type="radio"],
        input[type="checkbox"] {
          display: inline-block !important;
          width: 1.8rem;
          height: 1.8rem;
          cursor: pointer;
          flex-shrink: 0;
          accent-color: var(--333);
        }

        .desc {
          color: var(--666);
          font-weight: 400;
        }

        .sub-input {
          display: inline-flex;
          align-items: center;
          gap: .5rem;
          font-size: 1.4rem;
          color: var(--666);

          input[type="text"] {
            /* height: 3.2rem; */
            /* font-size: 1.4rem; */
            padding: 0 1rem;
            width: 20rem !important;
          }
        }
      }

      .btn_wrap {
        margin-top: 6rem;
        display: flex;
        justify-content: center;
        gap: 1rem;

        .btn {
          font-size: 2.4rem;
          color: var(--000);
          display: inline-block;
          border: 1px solid var(--000);
          padding: 1rem 2rem;
          transition: all 0.3s;



          &:hover {
            background: var(--000);
            color: var(--fff);
          }
        }
      }
    }


  }
}

@media (max-width: 1024px) {
  .consulting {
    .content_wrap {
      section {

        h2 {
          font-size: 3rem;
          margin-bottom: 3rem;


          &:after {
            margin-top: 2rem;
          }
        }

        h3 {
          font-size: 2rem;
        }
      }

    }
  }
}



@media (max-width: 768px) {
  .consulting {
    .content_wrap {
      section {
        .board_write {
          dl {
            >div {
              width: 100%;
              display: flex;
              flex-direction: column;
            }

            dt {
              width: 100%;
              align-items: flex-start;
            }

            dd {
              padding: 1.5rem 0;
              gap: .2rem;
              width: calc(100%);

              &.full {
                width: 100%;
              }

              &.e-mail {
                width: 100%;

                input[type="text"] {
                  width: calc(100% - 15rem);
                }

                .select {
                  width: 13rem;

                  &::after {
                    margin-left: -3rem;
                  }

                  select {
                    width: 100%;

                  }
                }

                &.self {
                  input[type="text"] {
                    width: calc(50% - 8rem);
                  }
                }
              }
            }
          }
        }

        .radio-label {
          .sub-input {
            input[type="text"] {}
          }
        }
      }

    }
  }
}


.consulting_intro {
  /* background: #f9f7f4; */
  /* padding: 80px 0 60px; */
  /* text-align: center; */
  /* margin-bottom: 10rem; */
}

.consulting_intro_inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.consulting_badge {
  display: inline-block;
  background: #c9a96e;
  color: #fff;
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 7px 22px;
  border-radius: 30px;
  margin-bottom: 24px;
}

.consulting_main_title {
  font-size: 4rem;
  font-weight: 300;
  color: #1a1a1a;
  line-height: 1.5;
  margin-bottom: 20px;
}

.consulting_main_title strong {
  font-weight: 700;
  color: #1a1a1a;
}

.consulting_sub_desc {
  font-size: 2rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 60px;
}

.consulting_sub_desc strong {
  color: #c9a96e;
  font-weight: 600;
}

/* 3가지 강점 카드 */
.consulting_strength_wrap {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 70px;
}

.consulting_strength_item {
  background: #fff;
  border: 1px solid #e8e0d5;
  border-radius: 12px;
  padding: 40px 30px;
  flex: 1;
  /* min-width: 260px; */
  /* max-width: 320px; */
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
}

.consulting_strength_item:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
  transform: translateY(-4px);
}

.strength_icon {
  color: #c9a96e;
  margin-bottom: 20px;
}

.consulting_strength_item h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 14px;
}

.consulting_strength_item p {
  font-size: 1.6rem;
  color: #666;
  line-height: 1.5;
}

/* 컨설팅 프로세스 */
.consulting_process_wrap {
  background: #fff;
  border-radius: 16px;
  padding: 50px 40px;
  text-align: left;
  border: 1px solid #e8e0d5;
}

.process_title {
  font-size: 4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 40px;
  text-align: center;
  letter-spacing: 0.04em;
}

.process_steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process_step {
  display: flex;
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid #f0ebe4;
  align-items: flex-start;
}

.process_step:last-child {
  border-bottom: none;
}

.step_num {
  background: #1a1a1a;
  color: #c9a96e;
  /* font-size: 2rem; */
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 8px 16px;
  border-radius: 6px;
  white-space: nowrap;
  min-width: 80px;
  text-align: center;
  margin-top: 4px;
}

.step_content h4 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.step_content p {
  font-size: 1.8rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 12px;
}

.step_content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.step_content ul li {
  font-size: 1.6rem;
  color: #777;
  padding-left: 16px;
  position: relative;
  line-height: 1.9;
}

.step_content ul li::before {
  /* content: "–"; */
  position: absolute;
  left: 0;
  color: #c9a96e;
}

/* 반응형 */
@media (max-width: 768px) {
  .consulting_main_title {
    font-size: 1.4rem;
  }

  .consulting_strength_wrap {
    flex-direction: column;
    align-items: center;
  }

  .consulting_strength_item {
    max-width: 100%;
  }

  .consulting_process_wrap {
    padding: 30px 20px;
  }

  .process_step {
    flex-direction: column;
    gap: 14px;
  }

  .step_num {
    width: fit-content;
  }
}

/* ===== 핵심 경쟁력 섹션 ===== */
.consulting_intro {
  background: #f9f7f4;
  padding: 90px 30px 70px;
  text-align: center;
  margin-bottom: 10rem;
}

/* 수익 공식 박스 */
.profit_formula_wrap {
  background: var(--dark);
  border-radius: 20px;
  padding: 60px 50px;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.profit_formula_wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}

.profit_formula_label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
  text-align: center;
}

.profit_formula_title {
  font-size: 3rem;
  FONT-WEIGHT: 200;
  color: var(--white);
  text-align: center;
  line-height: 1.7;
  margin-bottom: 10px;
}

.profit_formula_title strong {
  font-weight: 800;
  color: var(--gold);
}

.profit_formula_desc {
  font-size: 1.6rem;
  color: #aaa;
  text-align: center;
  line-height: 1.9;
  margin-bottom: 50px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.profit_formula_eq {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 40px;
}

.formula_box {
  background: #2a2a2a;
  border: 1px solid #3a3a3a;
  border-radius: 12px;
  padding: 24px 28px;
  text-align: center;
  min-width: 166px;
}

.formula_box.highlight {
  background: linear-gradient(135deg, #2a2010, #1e1a0e);
  border-color: var(--gold);
}

.formula_box .f_label {
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: #888;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.formula_box.highlight .f_label {
  color: var(--gold);
}

.formula_box .f_value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
}

.formula_box.highlight .f_value {
  font-size: 2.4rem;
  color: var(--gold);
}

.formula_op {
  font-size: 1.8rem;
  font-weight: 300;
  color: #555;
}

.formula_op.result {
  color: var(--gold);
  font-weight: 700;
}

.profit_formula_note {
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 10px;
  padding: 20px 28px;
  text-align: center;
  /* font-size: 0.9rem; */
  color: #ccc;
  line-height: 1.8;
}

.profit_formula_note strong {
  color: var(--gold);
  font-weight: 700;
}

.consulting_intro_inner {
  max-width: 1100px;
  margin: 0 auto;
}

.consulting_badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #c9a96e, #b8924f);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 8px 24px;
  border-radius: 30px;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.consulting_badge::before {
  content: '★';
  font-size: 10px;
}

.consulting_main_title {
  /* font-size: 2.4rem; */
  /* font-weight: 300; */
  /* color: var(--dark); */
  /* line-height: 1.5; */
  /* margin-bottom: 22px; */
  /* letter-spacing: -0.01em; */
}

.consulting_main_title strong {
  font-weight: 800;
  color: var(--dark);
  display: block;
}

.consulting_sub_desc {
  /* font-size: 1rem; */
  /* color: var(--mid); */
  /* line-height: 2; */
  /* margin-bottom: 70px; */
  /* max-width: 700px; */
  /* margin-left: auto; */
  /* margin-right: auto; */
}

.consulting_sub_desc strong {
  color: var(--gold);
  font-weight: 700;
}

/* 3가지 강점 카드 */
.consulting_strength_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.consulting_strength_item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 44px 32px;
  text-align: center;
  transition: box-shadow 0.35s, transform 0.35s;
  position: relative;
  overflow: hidden;
}

.consulting_strength_item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #e8d5b0);
  transform: scaleX(0);
  transition: transform 0.35s;
}

.consulting_strength_item:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
  transform: translateY(-6px);
}

.consulting_strength_item:hover::before {
  transform: scaleX(1);
}

.strength_icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #f9f2e8, #f0e6d0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  color: var(--gold);
}

.strength_icon svg {
  width: 30px;
  height: 30px;
}

.consulting_strength_item h3 {
  /* font-size: 1.1rem; */
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}

.consulting_strength_item p {
  /* font-size: 0.9rem; */
  color: #666;
  line-height: 1.85;
}

/* 컨설팅 프로세스 */
.consulting_process_wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 60px 50px;
  text-align: left;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  margin-bottom: 80px;
}

.process_title {
  /* font-size: 1.4rem; */
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 50px;
  text-align: center;
  letter-spacing: 0.04em;
}

.process_title span {
  display: inline-block;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}

.process_steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process_step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 36px;
  padding: 36px 0;
  border-bottom: 1px solid #f0ebe4;
  align-items: flex-start;
}

.process_step:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.step_num_wrap {
  text-align: center;
}

.step_num {
  background: var(--dark);
  color: var(--gold);
  /* font-size: 0.72rem; */
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 10px 0;
  border-radius: 8px;
  display: block;
  text-align: center;
  margin-bottom: 10px;
}

.step_num_line {
  width: 1px;
  height: 100%;
  background: var(--border);
  margin: 0 auto;
  min-height: 20px;
}

.step_content h4 {
  /* font-size: 1.1rem; */
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.step_content p {
  /* font-size: 0.92rem; */
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 16px;
}

.step_content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.step_content ul li {
  /* font-size: 0.82rem; */
  color: var(--mid);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 14px;
}

/* 반응형 */
@media (max-width: 900px) {
  .consulting_strength_wrap {
    grid-template-columns: 1fr;
  }

  .consulting_process_wrap {
    padding: 36px 24px;
  }

  .process_step {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 600px) {
  .consulting_intro_inner {
    padding: 0;
  }

  .consulting_intro {
    padding: 60px 20px;
    margin: -6rem -3rem;
    margin-bottom: 10rem;
  }

  .consulting_main_title {
    font-size: 1.6rem;
  }

  .board_write dl>div {
    grid-template-columns: 1fr;
  }

  .board_write dt {
    border-bottom: none;
    padding-bottom: 8px;
  }

  .profit_formula_wrap {
    padding: 5rem 3rem;
    margin-bottom: 5rem;
  }

  .profit_formula_eq {
    display: flex;
    flex-direction: column;
  }

  .consulting_strength_wrap {
    margin-bottom: 5rem;
  }

  .consulting_process_wrap {
    margin-bottom: 0;
  }
}